Variable: epa-file-select-keys
epa-file-select-keys is a customizable variable defined in
epa-file.el.gz.
Value
nil
Documentation
Control whether or not to pop up the key selection dialog.
If t, always ask user to select recipients.
If nil, query user only when epa-file-encrypt-to is not set.
If neither t nor nil, don't ask user. In this case, symmetric
encryption is used.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/epa-file.el.gz
(defcustom epa-file-select-keys nil
"Control whether or not to pop up the key selection dialog.
If t, always ask user to select recipients.
If nil, query user only when `epa-file-encrypt-to' is not set.
If neither t nor nil, don't ask user. In this case, symmetric
encryption is used."
:type '(choice (const :tag "Ask always" t)
(const :tag "Ask when recipients are not set" nil)
(const :tag "Don't ask" silent))
:group 'epa-file)