Variable: mml-smime-use

mml-smime-use is a customizable variable defined in mml-smime.el.gz.

Value

epg

Documentation

Whether to use OpenSSL or EasyPG (EPG) to handle S/MIME messages.

If you're thinking about using OpenSSL, please first read the BUGS section in the manual for the smime command that comes with OpenSSL. We recommend EasyPG.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/mml-smime.el.gz
(defcustom mml-smime-use 'epg
  "Whether to use OpenSSL or EasyPG (EPG) to handle S/MIME messages.
If you're thinking about using OpenSSL, please first read the BUGS section
in the manual for the `smime' command that comes with OpenSSL.
We recommend EasyPG."
  :group 'mime-security
  :type '(choice (const :tag "EPG" epg)
                 (const :tag "OpenSSL" openssl)))