diff options
author | tkikuchi <> | 2005-02-11 13:19:39 +0000 |
---|---|---|
committer | tkikuchi <> | 2005-02-11 13:19:39 +0000 |
commit | 5bf70c1d11572bbf3081017409df108ddff578a3 (patch) | |
tree | 6f5d7b18c65fce5cf9cf2c7929873d4c618508de | |
parent | 12ce1fcdab73f52b5ecb7a5c8cccafaf93478c08 (diff) | |
download | mailman2-5bf70c1d11572bbf3081017409df108ddff578a3.tar.gz mailman2-5bf70c1d11572bbf3081017409df108ddff578a3.tar.xz mailman2-5bf70c1d11572bbf3081017409df108ddff578a3.zip |
bumping 2.1.6b3
Diffstat (limited to '')
-rw-r--r-- | Mailman/Handlers/CookHeaders.py | 5 | ||||
-rw-r--r-- | Mailman/Version.py | 2 | ||||
-rw-r--r-- | admin/www/index.ht | 4 | ||||
-rw-r--r-- | admin/www/version.ht | 4 |
4 files changed, 9 insertions, 6 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 diff --git a/admin/www/index.ht b/admin/www/index.ht index ddc48f98..68d2fad0 100644 --- a/admin/www/index.ht +++ b/admin/www/index.ht @@ -36,9 +36,9 @@ reporting suspected security vulnerabilities. <h3>Current Version</h3> <p>Version -<!-VERSION--->2.1.6b1<!-VERSION--->, +<!-VERSION--->2.1.6b3<!-VERSION--->, (released on -<!-DATE--->16-Jan-2005<!-DATE--->) +<!-DATE--->11-Feb-2005<!-DATE--->) is the current released version of Mailman, in production at many sites. diff --git a/admin/www/version.ht b/admin/www/version.ht index ea62c5ad..a916c0b7 100644 --- a/admin/www/version.ht +++ b/admin/www/version.ht @@ -4,9 +4,9 @@ Links: links.h download-links.h <h3>Current Mailman Version</h3> <p>Version -(<!-VERSION--->2.1.6b1<!-VERSION--->, +(<!-VERSION--->2.1.6b3<!-VERSION--->, released on -<!-DATE--->16-Jan-2005<!-DATE--->) +<!-DATE--->11-Feb-2005<!-DATE--->) is the latest stable release. See also information on <a href="prev.html">previous version</a> if you're not yet ready to upgrade. |