Mercurial > p > roundup > code
diff doc/user_guide.txt @ 4402:abb7dbbf27ba
update mailgw docs
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Thu, 29 Jul 2010 00:40:13 +0000 |
| parents | f6468c5e1493 |
| children | 0485b47a39a8 |
line wrap: on
line diff
--- a/doc/user_guide.txt Sat Jul 24 09:44:58 2010 +0000 +++ b/doc/user_guide.txt Thu Jul 29 00:40:13 2010 +0000 @@ -616,11 +616,39 @@ are both valid. The username and/or password will be prompted for if not supplied on the command-line. +POPS: + Connect to a POP server over ssl. This requires python 2.4 or later. + This supports the same notation as POP:: + + pops username:password@server + APOP: Same as POP, but using Authenticated POP:: apop username:password@server +IMAP: + Connect to an IMAP server. This supports the same notation as that of + POP mail:: + + imap username:password@server + + It also allows you to specify a specific mailbox other than INBOX using + this format:: + + imap username:password@server mailbox + +IMAPS: + Connect to an IMAP server over ssl. + This supports the same notation as IMAP:: + + imaps username:password@server [mailbox] + +IMAPS_CRAM: + Connect to an IMAP server over ssl using CRAM-MD5 authentication. + This supports the same notation as IMAP:: + + imaps_cram username:password@server [mailbox] Command Line Tool =================
