summaryrefslogtreecommitdiff
path: root/lisp/epa.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2014-02-05 00:37:39 -0800
committerGlenn Morris <rgm@gnu.org>2014-02-05 00:37:39 -0800
commit451ea3e6cca50a905550a27b8b49bc6a8bff7a2b (patch)
treedfc78251edd5b5925691e4e4278f989b734fa526 /lisp/epa.el
parent6222d672a5c5dd06023b424a07b39729dd9d4550 (diff)
downloademacs-451ea3e6cca50a905550a27b8b49bc6a8bff7a2b.tar.gz
* lisp/epa.el (epa-mail-aliases): Fic custom type. Doc tweak.
* etc/NEWS: Related edit.
Diffstat (limited to 'lisp/epa.el')
-rw-r--r--lisp/epa.el11
1 files changed, 6 insertions, 5 deletions
diff --git a/lisp/epa.el b/lisp/epa.el
index 16cb5633512..ec1c0387bee 100644
--- a/lisp/epa.el
+++ b/lisp/epa.el
@@ -51,13 +51,14 @@
(defcustom epa-mail-aliases nil
"Alist of aliases of email addresses that stand for encryption keys.
-Each element is (ALIAS EXPANSIONS...).
-It means that when a message is addressed to ALIAS,
+Each element is a list of email addresses (ALIAS EXPANSIONS...).
+When one of the recipients of a message being encrypted is ALIAS,
instead of encrypting it for ALIAS, encrypt it for EXPANSIONS...
+
If EXPANSIONS is empty, ignore ALIAS as regards encryption.
-That is a handy way to avoid warnings about addresses
-that you don't have any key for."
- :type '(repeat (cons (string :tag "Alias") (repeat '(string :tag "Expansion"))))
+This is a handy way to avoid warnings about addresses that you don't
+have any key for."
+ :type '(repeat (cons (string :tag "Alias") (repeat (string :tag "Expansion"))))
:group 'epa
:version "24.4")