From: Lars Magne Ingebrigtsen Date: Fri, 1 Oct 2010 19:53:55 +0000 (+0200) Subject: When resending, don't externalize attachments. X-Git-Url: https://cgit.sxemacs.org/?p=gnus;a=commitdiff_plain;h=06d4088169432656d80114e881611375d68eed4a When resending, don't externalize attachments. Bug reported by Steve Wen. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 430579b98..a7c5234f8 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2010-10-01 Lars Magne Ingebrigtsen + * gnus-msg.el (gnus-summary-resend-message): When resending, don't + externalize attachments. Bug reported by Steve Wen. + * gnus.el (gnus-continuum-version): Make inactive, since it doesn't really message anything to the user. diff --git a/lisp/gnus-msg.el b/lisp/gnus-msg.el index a3794f28a..891718e65 100644 --- a/lisp/gnus-msg.el +++ b/lisp/gnus-msg.el @@ -1265,7 +1265,8 @@ For the `inline' alternatives, also see the variable (dolist (article (gnus-summary-work-articles n)) (gnus-summary-select-article nil nil nil article) (with-current-buffer gnus-original-article-buffer - (message-resend address)) + (let ((gnus-gcc-externalize-attachments nil)) + (message-resend address))) (gnus-summary-mark-article-as-forwarded article))) ;; From: Matthieu Moy