aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/gnus/mail-source.el
diff options
context:
space:
mode:
authorMiles Bader2008-02-24 06:43:15 +0000
committerMiles Bader2008-02-24 06:43:15 +0000
commit52bec650ae314402c242ce700bb09be42ef8ae55 (patch)
treea3d1c762813fbadedc4b9ff98301fe351aef3bac /lisp/gnus/mail-source.el
parent978bef9a8606bb39ed76703ab096d18975ab0bf3 (diff)
downloademacs-52bec650ae314402c242ce700bb09be42ef8ae55.tar.gz
emacs-52bec650ae314402c242ce700bb09be42ef8ae55.zip
Merge from gnus--devo--0
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-1073
Diffstat (limited to 'lisp/gnus/mail-source.el')
-rw-r--r--lisp/gnus/mail-source.el19
1 files changed, 11 insertions, 8 deletions
diff --git a/lisp/gnus/mail-source.el b/lisp/gnus/mail-source.el
index 01463c55628..cfbcc166b50 100644
--- a/lisp/gnus/mail-source.el
+++ b/lisp/gnus/mail-source.el
@@ -286,16 +286,19 @@ If non-nil, this maildrop will be checked periodically for new mail."
286 :group 'mail-source 286 :group 'mail-source
287 :type 'integer) 287 :type 'integer)
288 288
289(defcustom mail-source-delete-incoming nil 289(defcustom mail-source-delete-incoming
290 "*If non-nil, delete incoming files after handling. 290 10 ;; development versions
291 ;; 2 ;; released versions
292 "If non-nil, delete incoming files after handling.
291If t, delete immediately, if nil, never delete. If a positive number, delete 293If t, delete immediately, if nil, never delete. If a positive number, delete
292files older than number of days." 294files older than number of days.
293 ;; Note: The removing happens in `mail-source-callback', i.e. no old 295
294 ;; incoming files will be deleted, unless you receive new mail. 296Removing of old files happens in `mail-source-callback', i.e. no
295 ;; 297old incoming files will be deleted unless you receive new mail.
296 ;; You may also set this to `nil' and call `mail-source-delete-old-incoming' 298You may also set this variable to nil and call
297 ;; from a hook or interactively. 299`mail-source-delete-old-incoming' interactively."
298 :group 'mail-source 300 :group 'mail-source
301 :version "22.2" ;; No Gnus / Gnus 5.10.10 (default changed)
299 :type '(choice (const :tag "immediately" t) 302 :type '(choice (const :tag "immediately" t)
300 (const :tag "never" nil) 303 (const :tag "never" nil)
301 (integer :tag "days"))) 304 (integer :tag "days")))