comparison lisp/gnus/mml-sec.el @ 59996:aac0a33f5772

Change release version from 21.4 to 22.1 throughout. Change development version from 21.3.50 to 22.0.50.
author Kim F. Storm <storm@cua.dk>
date Wed, 09 Feb 2005 15:50:47 +0000
parents df80d19d7a2e
children 18a818a2ee7c
comparison
equal deleted inserted replaced
59995:8f4938738427 59996:aac0a33f5772
41 "Alist of MIME signer functions.") 41 "Alist of MIME signer functions.")
42 42
43 (defcustom mml-default-sign-method "pgpmime" 43 (defcustom mml-default-sign-method "pgpmime"
44 "Default sign method. 44 "Default sign method.
45 The string must have an entry in `mml-sign-alist'." 45 The string must have an entry in `mml-sign-alist'."
46 :version "21.4" 46 :version "22.1"
47 :type '(choice (const "smime") 47 :type '(choice (const "smime")
48 (const "pgp") 48 (const "pgp")
49 (const "pgpauto") 49 (const "pgpauto")
50 (const "pgpmime") 50 (const "pgpmime")
51 string) 51 string)
59 "Alist of MIME encryption functions.") 59 "Alist of MIME encryption functions.")
60 60
61 (defcustom mml-default-encrypt-method "pgpmime" 61 (defcustom mml-default-encrypt-method "pgpmime"
62 "Default encryption method. 62 "Default encryption method.
63 The string must have an entry in `mml-encrypt-alist'." 63 The string must have an entry in `mml-encrypt-alist'."
64 :version "21.4" 64 :version "22.1"
65 :type '(choice (const "smime") 65 :type '(choice (const "smime")
66 (const "pgp") 66 (const "pgp")
67 (const "pgpauto") 67 (const "pgpauto")
68 (const "pgpmime") 68 (const "pgpmime")
69 string) 69 string)
83 83
84 Note that the output generated by using a `combined' mode is NOT 84 Note that the output generated by using a `combined' mode is NOT
85 understood by all PGP implementations, in particular PGP version 85 understood by all PGP implementations, in particular PGP version
86 2 does not support it! See Info node `(message)Security' for 86 2 does not support it! See Info node `(message)Security' for
87 details." 87 details."
88 :version "21.4" 88 :version "22.1"
89 :group 'message 89 :group 'message
90 :type '(repeat (list (choice (const :tag "S/MIME" "smime") 90 :type '(repeat (list (choice (const :tag "S/MIME" "smime")
91 (const :tag "PGP" "pgp") 91 (const :tag "PGP" "pgp")
92 (const :tag "PGP/MIME" "pgpmime") 92 (const :tag "PGP/MIME" "pgpmime")
93 (string :tag "User defined")) 93 (string :tag "User defined"))