Variable: mh-max-inline-image-width
mh-max-inline-image-width is a customizable variable defined in
mh-e.el.gz.
Value
nil
Documentation
Maximum inline image width if "Content-Disposition:" is not present.
Some older mail programs do not insert this needed plumbing to
tell MH-E whether to display the attachments inline or not. If
this is the case, MH-E will display these images inline if they
are smaller than the window. However, you might want to allow
larger images to be displayed inline. To do this, you can change
the options mh-max-inline-image-width and
mh-max-inline-image-height from their default value of zero to
a large number. The size of your screen is a good choice for
these numbers.
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-max-inline-image-width nil
"Maximum inline image width if \"Content-Disposition:\" is not present.
Some older mail programs do not insert this needed plumbing to
tell MH-E whether to display the attachments inline or not. If
this is the case, MH-E will display these images inline if they
are smaller than the window. However, you might want to allow
larger images to be displayed inline. To do this, you can change
the options `mh-max-inline-image-width' and
`mh-max-inline-image-height' from their default value of zero to
a large number. The size of your screen is a good choice for
these numbers."
:type '(choice (const nil) integer)
:group 'mh-show
:package-version '(MH-E . "7.0"))