From: Katsumi Yamaoka Date: Tue, 21 Aug 2012 01:23:39 +0000 (+0000) Subject: gnus-msg.el (gnus-summary-resend-message): Honor posting-style for `name' and `addres... X-Git-Url: http://cgit.sxemacs.org/?p=gnus;a=commitdiff_plain;h=bf137c512d98fb91898580f823a78fe4692ba0b7 gnus-msg.el (gnus-summary-resend-message): Honor posting-style for `name' and `address' in Resent-From header --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b439bc3c0..01c74b645 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2012-08-21 Katsumi Yamaoka + + * gnus-msg.el (gnus-summary-resend-message): Honor posting-style for + `name' and `address' in Resent-From header. + 2012-08-14 Chong Yidong * gnus-art.el (article-display-face): Handle failure in diff --git a/lisp/gnus-msg.el b/lisp/gnus-msg.el index 594f68bb8..07748bebb 100644 --- a/lisp/gnus-msg.el +++ b/lisp/gnus-msg.el @@ -1369,7 +1369,21 @@ For the \"inline\" alternatives, also see the variable (nnmail-fetch-field "to")))) current-prefix-arg)) (let ((message-header-setup-hook (copy-sequence message-header-setup-hook)) - (message-sent-hook (copy-sequence message-sent-hook))) + (message-sent-hook (copy-sequence message-sent-hook)) + ;; Honor posting-style for `name' and `address' in Resent-From header. + (styles (gnus-group-find-parameter gnus-newsgroup-name + 'posting-style t)) + (user-full-name user-full-name) + (user-mail-address user-mail-address) + tem) + (dolist (style (if styles + (append gnus-posting-styles (list (cons ".*" styles))) + gnus-posting-styles)) + (when (string-match (pop style) gnus-newsgroup-name) + (when (setq tem (cadr (assq 'name style))) + (setq user-full-name tem)) + (when (setq tem (cadr (assq 'address style))) + (setq user-mail-address tem)))) ;; `gnus-summary-resend-message-insert-gcc' must run last. (add-hook 'message-header-setup-hook 'gnus-summary-resend-message-insert-gcc t)