diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2019-06-28 15:01:31 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2019-06-28 15:01:36 +0200 |
commit | cfabacae02499f28f2cf9ec41d41df7567fd0124 (patch) | |
tree | 68ac305f8f8927a3e8483d408c79c92258fa97b5 | |
parent | 9fec778c072d7f6869dfc035243ed285bb0ed15a (diff) | |
download | emacs-cfabacae02499f28f2cf9ec41d41df7567fd0124.tar.gz |
Include To and Cc headers when forwarding with Message
* lisp/gnus/message.el (message-forward-included-headers): Include
more of the important headers when forwarded: To and Cc.
-rw-r--r-- | lisp/gnus/message.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el index 986567faa1f..ad3cffcf0eb 100644 --- a/lisp/gnus/message.el +++ b/lisp/gnus/message.el @@ -626,7 +626,7 @@ This may also be a list of regexps." regexp)) (defcustom message-forward-included-headers - '("^From:" "^Subject:" "^Date:") + '("^From:" "^Subject:" "^Date:" "^To:" "^CC:") "If non-nil, delete non-matching headers when forwarding a message. Only headers that match this regexp will be included. This variable should be a regexp or a list of regexps." |