From 73fd31d3a6a9083bc7a3e782575ef581a0596af6 Mon Sep 17 00:00:00 2001 From: Mark Sapiro Date: Wed, 24 May 2017 16:04:00 -0700 Subject: Changed member_verbosity_threshold from a >= test to a strictly > test. --- Mailman/Utils.py | 4 ++-- NEWS | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Mailman/Utils.py b/Mailman/Utils.py index 739def1d..75481563 100644 --- a/Mailman/Utils.py +++ b/Mailman/Utils.py @@ -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 @@ fact is returned.""" del recentMemberPostings[addr] if not mlist.isMember(email): return False - return (len(recentMemberPostings.get(email, [])) >= + return (len(recentMemberPostings.get(email, [])) > mlist.member_verbosity_threshold ) diff --git a/NEWS b/NEWS index 9c38b72e..7314432b 100644 --- a/NEWS +++ b/NEWS @@ -44,6 +44,10 @@ Here is a history of user visible changes to Mailman. 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 -- cgit v1.2.3