Merge changes made in Gnus trunk.
mml-smime.el (mml-smime-epg-verify): Don't use the 4th arg of mm-replace-in-string for compatibility issues. mml2015.el (mml2015-epg-verify): Ditto.
This commit is contained in:
parent
fb87e0fb94
commit
0f3de88f02
3 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2011-08-27 Daiki Ueno <ueno@unixuser.org>
|
||||
|
||||
* mml-smime.el (mml-smime-epg-verify): Don't use the 4th arg of
|
||||
mm-replace-in-string for compatibility issues.
|
||||
* mml2015.el (mml2015-epg-verify): Ditto.
|
||||
|
||||
2011-08-26 Katsumi Yamaoka <yamaoka@jpl.org>
|
||||
|
||||
* mailcap.el (mailcap-mime-data): Regexp-quote MIME subtype.
|
||||
|
|
|
@ -531,7 +531,7 @@ Content-Disposition: attachment; filename=smime.p7m
|
|||
(mm-set-handle-multipart-parameter
|
||||
mm-security-handle 'gnus-info "Corrupted")
|
||||
(throw 'error handle))
|
||||
(setq part (mm-replace-in-string part "\n" "\r\n" t)
|
||||
(setq part (mm-replace-in-string part "\n" "\r\n")
|
||||
context (epg-make-context 'CMS))
|
||||
(condition-case error
|
||||
(setq plain (epg-verify-string context (mm-get-part signature) part))
|
||||
|
|
|
@ -923,7 +923,7 @@ If set, it overrides the setting of `mml2015-sign-with-sender'."
|
|||
(mm-set-handle-multipart-parameter
|
||||
mm-security-handle 'gnus-info "Corrupted")
|
||||
(throw 'error handle))
|
||||
(setq part (mm-replace-in-string part "\n" "\r\n" t)
|
||||
(setq part (mm-replace-in-string part "\n" "\r\n")
|
||||
signature (mm-get-part signature)
|
||||
context (epg-make-context))
|
||||
(condition-case error
|
||||
|
|
Loading…
Add table
Reference in a new issue