comparison lisp/gnus/mm-encode.el @ 105253:baa4e6ac9e46

Synch with Gnus trunk. 2009-09-22 Daiki Ueno <ueno@unixuser.org> * mm-encode.el (mm-sign-option, mm-encrypt-option): New user option. * mml2015.el (mml2015-epg-sign, mml2015-epg-encrypt): Let users select keys from the menu if mm-{sign,encrypt}-option is 'guided. * mml-smime.el (mml-smime-epg-sign, mml-smime-epg-encrypt): Ditto. * mml1991.el (mml1991-epg-sign, mml1991-epg-encrypt): Ditto. 2009-09-15 Katsumi Yamaoka <yamaoka@jpl.org> * gnus-art.el (gnus-article-edit-part): Work for the buffer configuration that provides the sole article window in a frame; position point correctly after deleting a part. 2009-09-14 Adam Sjogren <asjo@koldfront.dk> * spam.el (spam-unregister-on-reregister): Add boolean variable. (spam-resolve-registrations-routine): Use it to unregister articles that change status.
author Katsumi Yamaoka <yamaoka@jpl.org>
date Mon, 28 Sep 2009 12:09:01 +0000
parents 18c2aea5083c
children 0d89cb5de442
comparison
equal deleted inserted replaced
105252:2d2ad7907c5e 105253:baa4e6ac9e46
57 (const 8bit) 57 (const 8bit)
58 (const qp-or-base64) 58 (const qp-or-base64)
59 (const quoted-printable) 59 (const quoted-printable)
60 (const base64)))) 60 (const base64))))
61 :group 'mime) 61 :group 'mime)
62
63 (defcustom mm-sign-option nil
64 "Option how to create signed parts.
65 nil, use the default keys without asking;
66 `guided', let you select signing keys from the menu."
67 :version "23.1"
68 :type '(choice (item guided)
69 (item :tag "default" nil))
70 :group 'mime-security)
71
72 (defcustom mm-encrypt-option nil
73 "Option how to create encrypted parts.
74 nil, use the default keys without asking;
75 `guided', let you select recipients' keys from the menu."
76 :version "23.1"
77 :type '(choice (item guided)
78 (item :tag "default" nil))
79 :group 'mime-security)
62 80
63 (defvar mm-use-ultra-safe-encoding nil 81 (defvar mm-use-ultra-safe-encoding nil
64 "If non-nil, use encodings aimed at Procrustean bed survival. 82 "If non-nil, use encodings aimed at Procrustean bed survival.
65 83
66 This means that textual parts are encoded as quoted-printable if they 84 This means that textual parts are encoded as quoted-printable if they