diff options
author | Brendan Cully <brendan@kublai.com> | 2007-02-24 06:37:31 +0000 |
---|---|---|
committer | Brendan Cully <brendan@kublai.com> | 2007-02-24 06:37:31 +0000 |
commit | 4ff42217b5077e8d0f605a0b61e663a89443e60e (patch) | |
tree | c723076969a6cba57d22f705fd725ee1dcd169a6 /main.c | |
parent | 5c8b3868f8fe9d2665fa1030e8ac1b1892f56b11 (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.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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 |