Variable: mh-mml-method-default
mh-mml-method-default is a customizable variable defined in
mh-e.el.gz.
Value
"pgpmime"
Documentation
Default method to use in security tags.
This option is used to select between a variety of mail security mechanisms. The default is "PGP (MIME)" if it is supported; otherwise, the default is "None". Other mechanisms include vanilla "PGP" and "S/MIME".
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-mml-method-default (if mh-pgp-support-flag "pgpmime" "none")
"Default method to use in security tags.
This option is used to select between a variety of mail security
mechanisms. The default is \"PGP (MIME)\" if it is supported;
otherwise, the default is \"None\". Other mechanisms include
vanilla \"PGP\" and \"S/MIME\"."
:type '(choice (const :tag "PGP (MIME)" "pgpmime")
(const :tag "PGP" "pgp")
(const :tag "S/MIME" "smime")
(const :tag "None" "none"))
:group 'mh-letter
:package-version '(MH-E . "8.0"))