From: richard Date: Thu, 29 Jul 2010 00:40:13 +0000 (+0000) Subject: update mailgw docs X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=604e6ab871853afd5871fb6387cf01b8749cff07;p=roundup.git update mailgw docs git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/roundup/trunk@4508 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/doc/user_guide.txt b/doc/user_guide.txt index 242531a..055c5da 100644 --- a/doc/user_guide.txt +++ b/doc/user_guide.txt @@ -616,11 +616,39 @@ POP: 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 =================