aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Sapiro <mark@msapiro.net>2008-09-19 08:12:35 -0700
committerMark Sapiro <mark@msapiro.net>2008-09-19 08:12:35 -0700
commit8a5abde2e58368b605605e370bc3870eb51ca0e6 (patch)
tree908d9ae51e4efa3a7378161e02d5e7d4e711eb3a
parent37538af3aecffdc230059e36b0842c60a03b6065 (diff)
downloadmailman2-8a5abde2e58368b605605e370bc3870eb51ca0e6.tar.gz
mailman2-8a5abde2e58368b605605e370bc3870eb51ca0e6.tar.xz
mailman2-8a5abde2e58368b605605e370bc3870eb51ca0e6.zip
Since Mailman 2.1.1, 2.0.x outstanding subscription and held message
requests have not been migrated properly. This is fixed. Bug #266106 (sf998384). Updated NEWS for this and some prior changes.
-rw-r--r--Mailman/ListAdmin.py6
-rw-r--r--NEWS19
2 files changed, 23 insertions, 2 deletions
diff --git a/Mailman/ListAdmin.py b/Mailman/ListAdmin.py
index 191b76f8..f862073b 100644
--- a/Mailman/ListAdmin.py
+++ b/Mailman/ListAdmin.py
@@ -553,7 +553,8 @@ class ListAdmin:
assert len(info) == 6, 'Unknown subscription record layout'
continue
# Here's the new layout
- self.__db[id] = when, addr, fullname, passwd, digest, lang
+ self.__db[id] = op, (when, addr, fullname, passwd,
+ digest, lang)
elif op == HELDMSG:
if len(info) == 5:
when, sender, subject, reason, text = info
@@ -562,7 +563,8 @@ class ListAdmin:
assert len(info) == 6, 'Unknown held msg record layout'
continue
# Here's the new layout
- self.__db[id] = when, sender, subject, reason, text, msgdata
+ self.__db[id] = op, (when, sender, subject, reason,
+ text, msgdata)
# All done
self.__closedb()
diff --git a/NEWS b/NEWS
index ddc79973..a7ddb27b 100644
--- a/NEWS
+++ b/NEWS
@@ -4,6 +4,25 @@ Copyright (C) 1998-2008 by the Free Software Foundation, Inc.
Here is a history of user visible changes to Mailman.
+2.1.12? (xx-xxx-xxxx)
+
+ Bug fixes and other patches
+
+ - Fixed a bug in admin.py which would result in chunked pages of the
+ membership list for members whose address begins with a non-alphanumeric
+ character to not be visible or retrievable.
+
+ - Changed ListAdmin.py to make rejected post messages From: the -owner
+ address instead of the -bounces address.
+
+ - With MTA = 'Postfix', if the STANZA END for a list being removed is
+ missing or munged, the remainder of the aliases and/or virtual-mailman
+ file is lost. Fixed.
+
+ - Since Mailman 2.1.1, 2.0.x outstanding subscription and held message
+ requests have not been migrated properly. This is fixed.
+ Bug #266106 (sf998384).
+
2.1.11 (30-Jun-2008)
New Features