------------------------------------------------------------ revno: 1155 committer: Mark Sapiro <msap...@value.net> branch nick: 2.2 timestamp: Thu 2011-04-14 16:23:39 -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.2 https://code.launchpad.net/~mailman-coders/mailman/2.2 Your team Mailman Checkins is subscribed to branch lp:mailman/2.2. To unsubscribe from this branch go to https://code.launchpad.net/~mailman-coders/mailman/2.2/+edit-subscription
=== modified file 'Mailman/Cgi/admin.py' --- Mailman/Cgi/admin.py 2010-09-10 22:18:30 +0000 +++ Mailman/Cgi/admin.py 2011-04-14 23:23:39 +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:11:54 +0000 +++ NEWS 2011-04-14 23:23:39 +0000 @@ -107,6 +107,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 Mailman-checkins@python.org Unsubscribe: http://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org