summaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorBrendan Cully <brendan@kublai.com>2007-02-24 06:37:31 +0000
committerBrendan Cully <brendan@kublai.com>2007-02-24 06:37:31 +0000
commit4ff42217b5077e8d0f605a0b61e663a89443e60e (patch)
treec723076969a6cba57d22f705fd725ee1dcd169a6 /main.c
parent5c8b3868f8fe9d2665fa1030e8ac1b1892f56b11 (diff)
This patch adds ESMTP relay support to mutt.
To use, set $smtp_url to the address of your smtp relay, in the form: smtp[s]://[user[:password]@]host[:port]/ where port defaults to 25 for smtp and 465 for smtps. You can also set $smtp_authenticators to control which methods mutt will attempt to use during authentication. See $imap_authenticators for details.
Diffstat (limited to 'main.c')
-rw-r--r--main.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/main.c b/main.c
index 0ac2f001..f3589cce 100644
--- a/main.c
+++ b/main.c
@@ -257,6 +257,12 @@ static void show_version (void)
"-USE_IMAP "
#endif
+#ifdef USE_SMTP
+ "+USE_SMTP "
+#else
+ "-USE_SMTP "
+#endif
+
#ifdef USE_GSS
"+USE_GSS "
#else