(nnimap-split-download-body-default): New, holds
authorSimon Josefsson <jas@extundo.com>
Fri, 7 Mar 2003 18:19:17 +0000 (18:19 +0000)
committerSimon Josefsson <jas@extundo.com>
Fri, 7 Mar 2003 18:19:17 +0000 (18:19 +0000)
default for n-s-d-b.
(nnimap-split-download-body): Add new setting (symbol default),
which uses contents of n-s-d-b-d, and made it the default.

lisp/ChangeLog
lisp/nnimap.el

index 446e8a0..8d4b0c2 100644 (file)
@@ -1,3 +1,10 @@
+2003-03-07  Simon Josefsson  <jas@extundo.com>
+
+       * nnimap.el (nnimap-split-download-body-default): New, holds
+       default for n-s-d-b.
+       (nnimap-split-download-body): Add new setting (symbol default),
+       which uses contents of n-s-d-b-d, and made it the default.
+
 2003-03-07  Teodor Zlatanov  <tzz@lifelogs.com>
 
        * spam.el (spam-use-hashcash): new variable
index e988bba..014ce26 100644 (file)
@@ -196,11 +196,19 @@ RFC2060 section 6.4.4."
   :group 'nnimap
   :type 'sexp)
 
-(defcustom nnimap-split-download-body nil
+(defvar nnimap-split-download-body-default nil
+  "Internal variable with default value for `nnimap-split-download-body'.")
+
+(defcustom nnimap-split-download-body 'default
   "Whether to download entire articles during splitting.
 This is generally not required, and will slow things down considerably.
 You may need it if you want to use an advanced splitting function that
-analyses the body before splitting the article."
+analyses the body before splitting the article.
+If this variable is nil, bodies will not be downloaded; if this
+variable is the symbol `default' the default behaviour is
+used (which currently is nil, unless you use a statistical
+spam.el test); if this variable is another non-nil value bodies
+will be downloaded."
   :group 'nnimap
   :type 'boolean)