Changeset 5250:abd26d96d280 for doc

Show
Ignore:
Timestamp:
2007-11-01 04:15:30 (13 months ago)
Author:
Rocco Rutte <pdmef@…>
Branch:
HEAD
Message:

Manual: Document optional SMTP support

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • doc/manual.xml.head

    r5249 r5250  
    58555855</sect1> 
    58565856 
     5857<sect1 id="smtp"> 
     5858<title>SMTP support</title> 
     5859 
     5860<para> 
     5861Besides supporting traditional mail delivery through a 
     5862sendmail-compatible program, mutt supports delivery through SMTP if it 
     5863was configured and built with <literal>--enable-smtp</literal>. 
     5864</para> 
     5865 
     5866<para> 
     5867If the configuration variable  
     5868<link linkend="smtp-url">&dollar;smtp&lowbar;url</link> is set, mutt 
     5869will contact the given SMTP server to deliver messages; if it is unset,  
     5870mutt will use the program specified by <link linkend="sendmail">&dollar;sendmail</link>. 
     5871</para> 
     5872 
     5873<para> 
     5874The built-in SMTP support supports encryption (the <literal>smtps</literal> protocol 
     5875using SSL or TLS) as well as SMTP authentication using SASL. The authentication mechanisms 
     5876for SASL are specified in <link linkend="smtp-authenticators">&dollar;smtp&lowbar;authenticators</link> 
     5877defaulting to an empty list which makes mutt try all available methods 
     5878from most-secure to least-secure. 
     5879</para> 
     5880 
     5881</sect1> 
     5882 
    58575883<sect1 id="account-hook"> 
    5858 <title>Managing multiple IMAP/POP accounts</title> 
    5859  
    5860 <para> 
    5861 If you happen to have accounts on multiple IMAP and/or POP servers, 
     5884<title>Managing multiple accounts</title> 
     5885 
     5886<para> 
     5887If you happen to have accounts on multiple IMAP, POP and/or SMTP servers, 
    58625888you may find managing all the authentication settings inconvenient and 
    5863 error-prone.  The account-hook command may help. This hook works like 
     5889error-prone. The account-hook command may help. This hook works like 
    58645890folder-hook but is invoked whenever you access a remote mailbox 
    58655891(including inside the folder browser), not just when you open the 
     
    58775903account-hook imap://host1/ 'set imap_user=me1 imap_pass=foo' 
    58785904account-hook imap://host2/ 'set tunnel="ssh host2 /usr/libexec/imapd"' 
     5905account-hook smtp://user@host3/ 'set tunnel="ssh host3 /usr/libexec/smtpd"' 
    58795906</screen> 
    58805907