diff options
author | Glenn Morris <rgm@gnu.org> | 2013-05-06 00:16:34 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2013-05-06 00:16:34 -0700 |
commit | 7b92bf9813b9de6d21b7eb6ae1d6f0b76b1e10d1 (patch) | |
tree | 2ccc62423404ad44ed091218c50a705404917614 | |
parent | ddf9925e265791840feafd7093ae3947fe68ebb3 (diff) | |
download | emacs-7b92bf9813b9de6d21b7eb6ae1d6f0b76b1e10d1.tar.gz |
* lisp/gnus/mml2015.el (mml2015-epg-sign): Add name="signature.asc".
Fixes: debbugs:13465
-rw-r--r-- | lisp/gnus/ChangeLog | 4 | ||||
-rw-r--r-- | lisp/gnus/mml2015.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 60abb3eef7e..49826f0e939 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog @@ -1,3 +1,7 @@ +2013-05-06 Glenn Morris <rgm@gnu.org> + + * mml2015.el (mml2015-epg-sign): Add name="signature.asc". (Bug#13465) + 2013-05-04 Thierry Volpiatto <thierry.volpiatto@gmail.com> * message.el (message-bury): Make `buffer' optional. diff --git a/lisp/gnus/mml2015.el b/lisp/gnus/mml2015.el index 39bce23e76c..4d2647f3b8a 100644 --- a/lisp/gnus/mml2015.el +++ b/lisp/gnus/mml2015.el @@ -1106,7 +1106,7 @@ If no one is selected, default secret key is used. " (insert (format "\n--%s\n" boundary)) (goto-char (point-max)) (insert (format "\n--%s\n" boundary)) - (insert "Content-Type: application/pgp-signature\n\n") + (insert "Content-Type: application/pgp-signature; name=\"signature.asc\"\n\n") (insert signature) (goto-char (point-max)) (insert (format "--%s--\n" boundary)) |