Variable: mh-invisible-header-fields
mh-invisible-header-fields is a customizable variable defined in
mh-e.el.gz.
Value
nil
Documentation
Additional header fields to hide.
Header fields that you would like to hide that aren't listed in
mh-invisible-header-fields-default can be added to this option
with a couple of caveats. Regular expressions are not allowed.
Unique fields should have a ":" suffix; otherwise, the element
can be used to render invisible an entire class of fields that
start with the same prefix.
If you think a header field should be generally ignored, please update SF #1916032 (see URL https://sourceforge.net/tracker/index.php?func=detail&aid=1916032&group_id=13357&atid=113357).
See also mh-clean-message-header-flag.
This variable was added, or its default value changed, in MH-E version
7.1.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-e.el.gz
(defcustom mh-invisible-header-fields nil
"Additional header fields to hide.
Header fields that you would like to hide that aren't listed in
`mh-invisible-header-fields-default' can be added to this option
with a couple of caveats. Regular expressions are not allowed.
Unique fields should have a \":\" suffix; otherwise, the element
can be used to render invisible an entire class of fields that
start with the same prefix.
If you think a header field should be generally ignored, please
update SF #1916032 (see URL
`https://sourceforge.net/tracker/index.php?func=detail&aid=1916032&group_id=13357&atid=113357').
See also `mh-clean-message-header-flag'."
:type '(repeat (string :tag "Header field"))
:set (lambda (symbol value)
(set-default symbol value)
(mh-invisible-headers))
:group 'mh-show
:package-version '(MH-E . "7.1"))