From: Rocco Rutte Date: Thu, 1 Nov 2007 11:15:30 +0000 (+0100) Subject: Manual: Document optional SMTP support X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=70feb7ab3e250459f36ac7fc7f0fe432aa82657f;p=neomutt Manual: Document optional SMTP support --- diff --git a/doc/manual.xml.head b/doc/manual.xml.head index d056bcfa1..4fc8f6cf8 100644 --- a/doc/manual.xml.head +++ b/doc/manual.xml.head @@ -5854,13 +5854,39 @@ listed above). + +SMTP support + + +Besides supporting traditional mail delivery through a +sendmail-compatible program, mutt supports delivery through SMTP if it +was configured and built with --enable-smtp. + + + +If the configuration variable +$smtp_url is set, mutt +will contact the given SMTP server to deliver messages; if it is unset, +mutt will use the program specified by $sendmail. + + + +The built-in SMTP support supports encryption (the smtps protocol +using SSL or TLS) as well as SMTP authentication using SASL. The authentication mechanisms +for SASL are specified in $smtp_authenticators +defaulting to an empty list which makes mutt try all available methods +from most-secure to least-secure. + + + + -Managing multiple IMAP/POP accounts +Managing multiple accounts -If you happen to have accounts on multiple IMAP and/or POP servers, +If you happen to have accounts on multiple IMAP, POP and/or SMTP servers, you may find managing all the authentication settings inconvenient and -error-prone. The account-hook command may help. This hook works like +error-prone. The account-hook command may help. This hook works like folder-hook but is invoked whenever you access a remote mailbox (including inside the folder browser), not just when you open the mailbox. @@ -5876,6 +5902,7 @@ Some examples: account-hook . 'unset imap_user; unset imap_pass; unset tunnel' account-hook imap://host1/ 'set imap_user=me1 imap_pass=foo' account-hook imap://host2/ 'set tunnel="ssh host2 /usr/libexec/imapd"' +account-hook smtp://user@host3/ 'set tunnel="ssh host3 /usr/libexec/smtpd"'