aboutsummaryrefslogtreecommitdiffstats
path: root/Mailman/Handlers/SpamDetect.py
diff options
context:
space:
mode:
Diffstat (limited to 'Mailman/Handlers/SpamDetect.py')
-rw-r--r--Mailman/Handlers/SpamDetect.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Handlers/SpamDetect.py b/Mailman/Handlers/SpamDetect.py
index 6c10bb65..509e1e6e 100644
--- a/Mailman/Handlers/SpamDetect.py
+++ b/Mailman/Handlers/SpamDetect.py
@@ -123,7 +123,7 @@ error, contact the mailing list owner at %(listowner)s."""))
elif mlist.dmarc_moderation_action == 4:
raise Errors.DiscardMessage
- if Utils.IsVerboseMember(mlist, addr):
+ if mlist.member_verbosity_threshold > 0 and Utils.IsVerboseMember(mlist, addr):
mlist.setMemberOption(addr, mm_cfg.Moderate, 1)
syslog('vette', '%s: Automatically Moderated %s for verbose postings.',
mlist.real_name, addr)