aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2000-11-10 22:57:08 +0000
committerDave Love2000-11-10 22:57:08 +0000
commit4693ed4e2ba8c36ce672f6ca88a414ddf8611cf9 (patch)
treec1e438f3b75ed5ebe5e029200caed1aafe31d861
parentfc2c2db8e95d2beb4486eb8ca3b3cd065f25dd28 (diff)
downloademacs-4693ed4e2ba8c36ce672f6ca88a414ddf8611cf9.tar.gz
emacs-4693ed4e2ba8c36ce672f6ca88a414ddf8611cf9.zip
(nnmail-expiry-target)
(nnmail-scan-directory-mail-source-once, nnmail-extra-headers) (nnmail-split-header-length-limit): Add :version.
-rw-r--r--lisp/gnus/nnmail.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/gnus/nnmail.el b/lisp/gnus/nnmail.el
index 4e8fd9d2ea4..7cd75c0dac2 100644
--- a/lisp/gnus/nnmail.el
+++ b/lisp/gnus/nnmail.el
@@ -175,6 +175,7 @@ messages end up in that group. If it is a function, the function is
175called in a buffer narrowed to the message in question. The function 175called in a buffer narrowed to the message in question. The function
176receives one argument, the name of the group the message comes from. 176receives one argument, the name of the group the message comes from.
177The return value should be `delete' or a group name (a string)." 177The return value should be `delete' or a group name (a string)."
178 :version "21.1"
178 :group 'nnmail-expire 179 :group 'nnmail-expire
179 :type '(choice (const delete) 180 :type '(choice (const delete)
180 (function :format "%v" nnmail-) 181 (function :format "%v" nnmail-)
@@ -200,6 +201,7 @@ This variable is obsolete; `mail-sources' should be used instead."
200(defcustom nnmail-scan-directory-mail-source-once nil 201(defcustom nnmail-scan-directory-mail-source-once nil
201 "*If non-nil, scan all incoming procmail sorted mails once. 202 "*If non-nil, scan all incoming procmail sorted mails once.
202It scans low-level sorted spools even when not required." 203It scans low-level sorted spools even when not required."
204 :version "21.1"
203 :group 'nnmail-procmail 205 :group 'nnmail-procmail
204 :type 'boolean) 206 :type 'boolean)
205 207
@@ -418,11 +420,13 @@ parameter. It should return nil, `warn' or `delete'."
418 420
419(defcustom nnmail-extra-headers nil 421(defcustom nnmail-extra-headers nil
420 "*Extra headers to parse." 422 "*Extra headers to parse."
423 :version "21.1"
421 :group 'nnmail 424 :group 'nnmail
422 :type '(repeat symbol)) 425 :type '(repeat symbol))
423 426
424(defcustom nnmail-split-header-length-limit 512 427(defcustom nnmail-split-header-length-limit 512
425 "Header lines longer than this limit are excluded from the split function." 428 "Header lines longer than this limit are excluded from the split function."
429 :version "21.1"
426 :group 'nnmail 430 :group 'nnmail
427 :type 'integer) 431 :type 'integer)
428 432