Variable: mh-invisible-header-fields-default
mh-invisible-header-fields-default is a customizable variable defined
in mh-e.el.gz.
Value
nil
Documentation
List of hidden header fields.
The header fields listed in this option are hidden, although you can check off any field that you would like to see.
Header fields that you would like to hide that aren't listed can
be added to the option mh-invisible-header-fields.
See also mh-clean-message-header-flag.
If you think a header field should be added to this list, please update SF #1916032 (see URL https://sourceforge.net/tracker/index.php?func=detail&aid=1916032&group_id=13357&atid=113357).
This variable was added, or its default value changed, in MH-E version
8.0.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-e.el.gz
(defcustom-mh mh-invisible-header-fields-default nil
"List of hidden header fields.
The header fields listed in this option are hidden, although you
can check off any field that you would like to see.
Header fields that you would like to hide that aren't listed can
be added to the option `mh-invisible-header-fields'.
See also `mh-clean-message-header-flag'.
If you think a header field should be added to this list, please
update SF #1916032 (see URL
`https://sourceforge.net/tracker/index.php?func=detail&aid=1916032&group_id=13357&atid=113357')."
:type `(set ,@(mapcar (lambda (x) `(const ,x))
mh-invisible-header-fields-internal))
:set (lambda (symbol value)
(set-default symbol value)
(mh-invisible-headers))
:group 'mh-show
:package-version '(MH-E . "8.0"))