Variable: nnmail-split-abbrev-alist

nnmail-split-abbrev-alist is a customizable variable defined in nnmail.el.gz.

Value

((any
  . "from\\|to\\|cc\\|sender\\|apparently-to\\|resent-from\\|resent-to\\|resent-cc")
 (mail . "mailer-daemon\\|postmaster\\|uucp")
 (to . "to\\|cc\\|apparently-to\\|resent-to\\|resent-cc")
 (from . "from\\|sender\\|resent-from")
 (nato . "to\\|cc\\|resent-to\\|resent-cc")
 (naany
  . "from\\|to\\|cc\\|sender\\|resent-from\\|resent-to\\|resent-cc")
 (list . "list-id\\|list-post\\|x-mailing-list\\|x-beenthere\\|x-loop"))

Documentation

Alist of abbreviations allowed in nnmail-split-fancy(var)/nnmail-split-fancy(fun).

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/nnmail.el.gz
(defcustom nnmail-split-abbrev-alist
  '((any . "from\\|to\\|cc\\|sender\\|apparently-to\\|resent-from\\|resent-to\\|resent-cc")
    (mail . "mailer-daemon\\|postmaster\\|uucp")
    (to . "to\\|cc\\|apparently-to\\|resent-to\\|resent-cc")
    (from . "from\\|sender\\|resent-from")
    (nato . "to\\|cc\\|resent-to\\|resent-cc")
    (naany . "from\\|to\\|cc\\|sender\\|resent-from\\|resent-to\\|resent-cc")
    (list . "list-id\\|list-post\\|x-mailing-list\\|x-beenthere\\|x-loop"))
  "Alist of abbreviations allowed in `nnmail-split-fancy'."
  :group 'nnmail-split
  :type '(repeat (cons :format "%v" symbol regexp)))