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 /lisp/gnus/mml2015.el | |
parent | ddf9925e265791840feafd7093ae3947fe68ebb3 (diff) | |
download | emacs-7b92bf9813b9de6d21b7eb6ae1d6f0b76b1e10d1.tar.gz |
* lisp/gnus/mml2015.el (mml2015-epg-sign): Add name="signature.asc".
Fixes: debbugs:13465
Diffstat (limited to 'lisp/gnus/mml2015.el')
-rw-r--r-- | lisp/gnus/mml2015.el | 2 |
1 files changed, 1 insertions, 1 deletions
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)) |