Variable: mml-default-encrypt-method

mml-default-encrypt-method is a customizable variable defined in mml-sec.el.gz.

Value

"pgpmime"

Documentation

Default encryption method.

The string must have an entry in mml-encrypt-alist.

This variable was added, or its default value changed, in Emacs 22.1.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/mml-sec.el.gz
(defcustom mml-default-encrypt-method "pgpmime"
  "Default encryption method.
The string must have an entry in `mml-encrypt-alist'."
  :version "22.1"
  :type '(choice (const "smime")
		 (const "pgp")
		 (const "pgpauto")
		 (const "pgpmime")
		 string)
  :group 'message)