Variable: mh-compose-insertion
mh-compose-insertion is a customizable variable defined in mh-e.el.gz.
Value
mml
Documentation
Type of tags used when composing MIME messages.
In addition to MH-style directives, MH-E also supports MML (MIME Meta Language) tags. (see Info node (emacs-mime)Composing). This option can be used to choose between them. By default, this option is set to "MML" if it is supported since it provides a lot more functionality. This option can also be set to "MH" if MH-style directives are preferred.
This variable was added, or its default value changed, in MH-E version
7.0.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-e.el.gz
;;; Editing a Draft (:group 'mh-letter)
(defcustom mh-compose-insertion (if (locate-library "mml") 'mml 'mh)
"Type of tags used when composing MIME messages.
In addition to MH-style directives, MH-E also supports MML (MIME
Meta Language) tags. (see Info node `(emacs-mime)Composing').
This option can be used to choose between them. By default, this
option is set to \"MML\" if it is supported since it provides a
lot more functionality. This option can also be set to \"MH\" if
MH-style directives are preferred."
:type '(choice (const :tag "MML" mml)
(const :tag "MH" mh))
:group 'mh-letter
:package-version '(MH-E . "7.0"))