------------------------------------------------------------ revno: 1704 fixes bug: https://launchpad.net/bugs/1693366 committer: Mark Sapiro <m...@msapiro.net> branch nick: 2.1 timestamp: Wed 2017-05-24 16:04:00 -0700 message: Changed member_verbosity_threshold from a >= test to a strictly > test. modified: Mailman/Utils.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/Utils.py' --- Mailman/Utils.py 2017-04-26 05:33:19 +0000 +++ Mailman/Utils.py 2017-05-24 23:04:00 +0000 @@ -1,4 +1,4 @@ -# Copyright (C) 1998-2016 by the Free Software Foundation, Inc. +# Copyright (C) 1998-2017 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 @@ -1391,7 +1391,7 @@ del recentMemberPostings[addr] if not mlist.isMember(email): return False - return (len(recentMemberPostings.get(email, [])) >= + return (len(recentMemberPostings.get(email, [])) > mlist.member_verbosity_threshold ) === modified file 'NEWS' --- NEWS 2017-05-23 19:45:06 +0000 +++ NEWS 2017-05-24 23:04:00 +0000 @@ -44,6 +44,10 @@ Bug fixes and other patches + - Changed member_verbosity_threshold from a >= test to a strictly > test + to avoid the issue of moderating every post when the threshold = 1. + (LP: #1693366) + - Subject prefixing has been improved to always have a space between the prefix and the subject even with non-ascii in the prefix. This will sometimes result in two spaces when the prefix is non-ascii but
_______________________________________________ Mailman-checkins mailing list Mailman-checkins@python.org Unsubscribe: https://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org