Variable: gnus-sorted-header-list

gnus-sorted-header-list is a customizable variable defined in gnus-art.el.gz.

Value

("^From:" "^Subject:" "^Summary:" "^Keywords:" "^Newsgroups:"
 "^Followup-To:" "^To:" "^Cc:" "^Date:" "^Organization:")

Documentation

This variable is a list of regular expressions.

If it is non-nil, headers that match the regular expressions will be placed first in the article buffer in the sequence specified by this list.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-art.el.gz
(defcustom gnus-sorted-header-list
  '("^From:" "^Subject:" "^Summary:" "^Keywords:" "^Newsgroups:"
    "^Followup-To:" "^To:" "^Cc:" "^Date:" "^Organization:")
  "This variable is a list of regular expressions.
If it is non-nil, headers that match the regular expressions will
be placed first in the article buffer in the sequence specified by
this list."
  :type '(repeat regexp)
  :group 'gnus-article-hiding)