------------------------------------------------------------
revno: 1288
committer: Mark Sapiro <[email protected]>
branch nick: 2.1
timestamp: Thu 2011-04-14 16:21:01 -0700
message:
Added a report of the affected members to the warnings issued when
setting a list with digest members digestable=No and when setting a list
with non-digest members nondigestable=no. Bug #761232.
modified:
Mailman/Cgi/admin.py
NEWS
--
lp:mailman/2.1
https://code.launchpad.net/~mailman-coders/mailman/2.1
Your team Mailman Checkins is subscribed to branch lp:mailman/2.1.
To unsubscribe from this branch go to
https://code.launchpad.net/~mailman-coders/mailman/2.1/+edit-subscription
=== modified file 'Mailman/Cgi/admin.py'
--- Mailman/Cgi/admin.py 2010-09-10 22:17:01 +0000
+++ Mailman/Cgi/admin.py 2011-04-14 23:21:01 +0000
@@ -1,4 +1,4 @@
-# Copyright (C) 1998-2010 by the Free Software Foundation, Inc.
+# Copyright (C) 1998-2011 by the Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
@@ -187,13 +187,15 @@
if not mlist.digestable and mlist.getDigestMemberKeys():
doc.addError(
_('''You have digest members, but digests are turned
- off. Those people will not receive mail.'''),
+ off. Those people will not receive mail.
+ Affected member(s) %r.''' % mlist.getDigestMemberKeys()),
tag=_('Warning: '))
if not mlist.nondigestable and mlist.getRegularMemberKeys():
doc.addError(
_('''You have regular list members but non-digestified mail is
turned off. They will receive non-digestified mail until you
- fix this problem.'''), tag=_('Warning: '))
+ fix this problem. Affected member(s) %r.''' %
+ mlist.getRegularMemberKeys()), tag=_('Warning: '))
# Glom up the results page and print it out
show_results(mlist, doc, category, subcat, cgidata)
print doc.Format()
=== modified file 'NEWS'
--- NEWS 2011-04-13 04:13:10 +0000
+++ NEWS 2011-04-14 23:21:01 +0000
@@ -37,6 +37,11 @@
Bug #670988.
Bug Fixes and other patches
+
+ - Added a report of the affected members to the warnings issued when
+ setting a list with digest members digestable=No and when setting a list
+ with non-digest members nondigestable=no. Bug #761232.
+
- Fixed a problem where content filtering could remove the headers from
an attached message/rfc822 part if the message in that part is
multipart/alternative and collapse_alternatives is Yes. Bug #757062.
_______________________________________________
Mailman-checkins mailing list
[email protected]
Unsubscribe:
http://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org