diff options
Diffstat (limited to 'Mailman')
-rw-r--r-- | Mailman/Handlers/CookHeaders.py | 5 | ||||
-rw-r--r-- | Mailman/Version.py | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/Mailman/Handlers/CookHeaders.py b/Mailman/Handlers/CookHeaders.py index 3cc022a1..c76fe498 100644 --- a/Mailman/Handlers/CookHeaders.py +++ b/Mailman/Handlers/CookHeaders.py @@ -156,7 +156,10 @@ def process(mlist, msg, msgdata): # was munged into the Reply-To header, but if not, we'll add it to a # Cc header. BAW: should we force it into a Reply-To header in the # above code? - if mlist.personalize == 2 and mlist.reply_goes_to_list <> 1: + # Also skip Cc if this is an anonymous list as list posting address + # is already in From and Reply-To in this case. + if mlist.personalize == 2 and mlist.reply_goes_to_list <> 1 \ + and not mlist.anonymous_list: # Watch out for existing Cc headers, merge, and remove dups. Note # that RFC 2822 says only zero or one Cc header is allowed. new = [] diff --git a/Mailman/Version.py b/Mailman/Version.py index 3954b6aa..516e9803 100644 --- a/Mailman/Version.py +++ b/Mailman/Version.py @@ -15,7 +15,7 @@ # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # Mailman version -VERSION = "2.1.6b2" +VERSION = "2.1.6b3" # And as a hex number in the manner of PY_VERSION_HEX ALPHA = 0xa |