Variable: mh-decode-mime-flag
mh-decode-mime-flag is a customizable variable defined in mh-e.el.gz.
Value
t
Documentation
Non-nil means attachments are handled.
MH-E can handle attachments as well if the Gnus mm-decode
library is present. If so, this option will be on. Otherwise,
you'll see the MIME body parts rather than text or attachments.
There isn't much point in turning off this option; however, you
can inspect it if it appears that the body parts are not being
interpreted correctly or toggle it with the command
; (mh-toggle-mh-decode-mime-flag) to view the raw message.
This option also controls the display of quoted-printable
messages and other graphical widgets. See the options
mh-graphical-smileys-flag and mh-graphical-emphasis-flag.
This variable was added, or its default value changed, in MH-E version
7.0.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-e.el.gz
(defcustom mh-decode-mime-flag (not (not (locate-library "mm-decode")))
"Non-nil means attachments are handled\\<mh-folder-mode-map>.
MH-E can handle attachments as well if the Gnus `mm-decode'
library is present. If so, this option will be on. Otherwise,
you'll see the MIME body parts rather than text or attachments.
There isn't much point in turning off this option; however, you
can inspect it if it appears that the body parts are not being
interpreted correctly or toggle it with the command
\\[mh-toggle-mh-decode-mime-flag] to view the raw message.
This option also controls the display of quoted-printable
messages and other graphical widgets. See the options
`mh-graphical-smileys-flag' and `mh-graphical-emphasis-flag'."
:type 'boolean
:group 'mh-show
:package-version '(MH-E . "7.0"))