mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-03 08:30:09 +00:00
(sendmail-send-it): Added support for Resent-CC and
Resent-BCC headers.
This commit is contained in:
parent
fc67d5be86
commit
7e34da22f0
@ -493,7 +493,7 @@ the user from the mailer."
|
||||
(replace-match "\n"))
|
||||
(let ((case-fold-search t))
|
||||
(goto-char (point-min))
|
||||
(while (re-search-forward "^Resent-to:" delimline t)
|
||||
(while (re-search-forward "^Resent-\\(to\\|cc\\|bcc\\):" delimline t)
|
||||
(setq resend-to-addresses
|
||||
(save-restriction
|
||||
(narrow-to-region (point)
|
||||
@ -501,7 +501,12 @@ the user from the mailer."
|
||||
(end-of-line)
|
||||
(point)))
|
||||
(append (mail-parse-comma-list)
|
||||
resend-to-addresses))))
|
||||
resend-to-addresses)))
|
||||
;; Delete Resent-BCC ourselves
|
||||
(if (save-excursion (beginning-of-line)
|
||||
(looking-at "resent-bcc"))
|
||||
(delete-region (save-excursion (beginning-of-line) (point))
|
||||
(save-excursion (end-of-line) (1+ (point))))))
|
||||
;;; Apparently this causes a duplicate Sender.
|
||||
;;; ;; If the From is different than current user, insert Sender.
|
||||
;;; (goto-char (point-min))
|
||||
|
Loading…
Reference in New Issue
Block a user