diff options
author | Mark Sapiro <mark@msapiro.net> | 2015-01-04 19:03:40 -0800 |
---|---|---|
committer | Mark Sapiro <mark@msapiro.net> | 2015-01-04 19:03:40 -0800 |
commit | c170b01eae9958bc6d0892e8227d2726f60362b7 (patch) | |
tree | c4d0c4d1ea94649f40a993909ad5f85d1fe091c6 /Mailman/Handlers/WrapMessage.py | |
parent | 85a6679a3ea5b1ff085453f4e1ed921b5320690b (diff) | |
download | mailman2-c170b01eae9958bc6d0892e8227d2726f60362b7.tar.gz mailman2-c170b01eae9958bc6d0892e8227d2726f60362b7.tar.xz mailman2-c170b01eae9958bc6d0892e8227d2726f60362b7.zip |
Add some explanitory comments for why we defer some Munge From changes
to WrapMessage.
Correct a misplaced item in NEWS.
Diffstat (limited to '')
-rw-r--r-- | Mailman/Handlers/WrapMessage.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Mailman/Handlers/WrapMessage.py b/Mailman/Handlers/WrapMessage.py index fba6bc2a..0e47e1e4 100644 --- a/Mailman/Handlers/WrapMessage.py +++ b/Mailman/Handlers/WrapMessage.py @@ -18,7 +18,7 @@ """Wrap the message in an outer message/rfc822 part and transfer/add some headers from the original. -Also, in the case of Munge From, replace the From: and Reply-To: in the +Also, in the case of Munge From, replace the From:, Reply-To: and Cc: in the original message. """ @@ -40,7 +40,8 @@ def process(mlist, msg, msgdata): # is wrap this message or from_is_list applies and is wrap. if not (msgdata.get('from_is_list') == 2 or (mlist.from_is_list == 2 and msgdata.get('from_is_list') == 0)): - # Now see if we need to add a From: and/or Reply-To: without wrapping. + # Now see if we need to add a From:, Reply-To: or Cc: without wrapping. + # See comments in CookHeaders.change_header for why we do this here. a_h = msgdata.get('add_header') if a_h: if a_h.get('From'): |