From: yamaoka Date: Tue, 20 May 2003 05:03:20 +0000 (+0000) Subject: Synch to Gnus 200305200437. X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=c14af6f63a2f1b025fd33e0ce1f78918027fff75;p=elisp%2Fgnus.git- Synch to Gnus 200305200437. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 295cfb0..02bb4c9 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2003-05-20 Jesper Harder + + * message.el (message-send-mail): Don't insert a courtesy copy + notice in base64 encoded messages. + 2003-05-16 Katsumi Yamaoka * gnus-sum.el (gnus-summary-move-article): Don't copy expirable diff --git a/lisp/message.el b/lisp/message.el index 34475ec..8f5204f 100644 --- a/lisp/message.el +++ b/lisp/message.el @@ -4027,6 +4027,9 @@ This sub function is for exclusive use of `message-send-mail'." (or (= (preceding-char) ?\n) (insert ?\n)) (message-cleanup-headers) + ;; FIXME: we're inserting the courtesy copy after encoding. + ;; This is wrong if the courtesy copy string contains + ;; non-ASCII characters. -- jh (when (save-restriction (message-narrow-to-headers) @@ -4034,10 +4037,16 @@ This sub function is for exclusive use of `message-send-mail'." (or (message-fetch-field "cc") (message-fetch-field "bcc") (message-fetch-field "to")) - (let ((ct (mime-read-Content-Type))) - (or (not ct) - (and (eq 'text (cdr (assq 'type ct))) - (eq 'plain (cdr (assq 'subtype ct)))))))) + (let ((content-type (mime-read-Content-Type))) + (and + (or + (not content-type) + (and + (eq 'text (cdr (assq 'type content-type))) + (eq 'plain (cdr (assq 'subtype content-type))))) + (not + (string= "base64" + (mime-read-Content-Transfer-Encoding))))))) (message-insert-courtesy-copy)) (setq failure (message-maybe-split-and-send-mail))) (kill-buffer tembuf))