Variable: mml-secure-key-preferences
mml-secure-key-preferences is a customizable variable defined in
mml-sec.el.gz.
Value
((OpenPGP
(sign)
(encrypt))
(CMS
(sign)
(encrypt)))
Documentation
Protocol- and usage-specific fingerprints of preferred keys.
This variable is only relevant if a recipient owns multiple key pairs (for encryption) or you own multiple key pairs (for signing). In such cases, you will be asked which key(s) should be used, and your choice can be customized in this variable.
This variable was added, or its default value changed, in Emacs 25.1.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/mml-sec.el.gz
(defcustom mml-secure-key-preferences
'((OpenPGP (sign) (encrypt)) (CMS (sign) (encrypt)))
"Protocol- and usage-specific fingerprints of preferred keys.
This variable is only relevant if a recipient owns multiple key pairs (for
encryption) or you own multiple key pairs (for signing). In such cases,
you will be asked which key(s) should be used, and your choice can be
customized in this variable."
:version "25.1"
:group 'mime-security
:type '(alist :key-type (symbol :tag "Protocol") :value-type
(alist :key-type (symbol :tag "Usage") :value-type
(alist :key-type (string :tag "Name") :value-type
(repeat (string :tag "Fingerprint"))))))