diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2003-10-15 19:26:58 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2003-10-15 19:26:58 +0000 |
commit | 0d8a8b913f6a15088523bc69cbcf6240de945cda (patch) | |
tree | 6d32025f03e7c273d35d88a6bd4c6fa9432632d8 /fetchmail.man | |
parent | a9c74c7425861cabc87f74fbce49e0da7af5e756 (diff) | |
download | fetchmail-0d8a8b913f6a15088523bc69cbcf6240de945cda.tar.gz fetchmail-0d8a8b913f6a15088523bc69cbcf6240de945cda.tar.bz2 fetchmail-0d8a8b913f6a15088523bc69cbcf6240de945cda.zip |
Sunil's transaction patches.
svn path=/trunk/; revision=3858
Diffstat (limited to 'fetchmail.man')
-rw-r--r-- | fetchmail.man | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/fetchmail.man b/fetchmail.man index 06dc9b41..8d29fefb 100644 --- a/fetchmail.man +++ b/fetchmail.man @@ -487,6 +487,29 @@ poll. By default there is no limit. An explicit --fetchlimit of 0 overrides any limits set in your run control file. This option does not work with ETRN or ODMR. .TP +.B \-\-fetchsizelimit <number> +(Keyword: fetchsizelimit) +Limit the number of sizes of messages accepted from a given server in +a single transaction. This option is useful in reducing the delay in +downloading the first mail when there are too many mails in the +mailbox. By default, the limit is 100. If set to 0, sizes of all +messages are downloaded at the start. +This option does not work with ETRN or ODMR. For POP3, the only valid +non-zero value is 1. +.TP +.B \-\-fastuidl <number> +(Keyword: fastuidl) +Do a binary instead of linear search for the first unseen UID. Binary +search avoids downloading the UIDs of all mails. This saves time +(especially in daemon mode) where downloading the same set of UIDs in +each poll is a waste of bandwidth. The number `n' indicates how rarely +a linear search should be done. In daemon mode, linear search is used +once followed by binary searches in `n-1' polls if `n' is greater than +1; binary search is always used if `n' is 1; linear search is always +used if `n' is 0. In non-daemon mode, binary search is used if `n' is +1; otherwise linear search is used. +This option works with POP3 only. +.TP .B \-e <count> | \-\-expunge <count> (keyword: expunge) Arrange for deletions to be made final after a given number of @@ -1479,6 +1502,12 @@ T} fetchlimit -B T{ Max # messages to fetch in single connect T} +fetchsizelimit \& T{ +Max # message sizes to fetch in single transaction +T} +fastuidl \& T{ +Use binary search for first unseen message (POP3 only) +T} expunge -e T{ Perform an expunge on every #th message (IMAP and POP3 only) T} |