summaryrefslogtreecommitdiff
path: root/Mailman/Handlers/SpamDetect.py
diff options
context:
space:
mode:
authorbwarsaw1999-11-24 19:33:30 +0000
committerbwarsaw1999-11-24 19:33:30 +0000
commitcb645ae758663b60933afdaf05670d82b646c6a1 (patch)
treec40db81c59f6919fdb939c78d5816fb118702cb3 /Mailman/Handlers/SpamDetect.py
parent2dba126d3d009a374d4225f23ef6721912dedeab (diff)
downloadmailman-cb645ae758663b60933afdaf05670d82b646c6a1.tar.gz
mailman-cb645ae758663b60933afdaf05670d82b646c6a1.tar.zst
mailman-cb645ae758663b60933afdaf05670d82b646c6a1.zip
Diffstat (limited to 'Mailman/Handlers/SpamDetect.py')
-rw-r--r--Mailman/Handlers/SpamDetect.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/Mailman/Handlers/SpamDetect.py b/Mailman/Handlers/SpamDetect.py
index 8c3e6a103..369233e02 100644
--- a/Mailman/Handlers/SpamDetect.py
+++ b/Mailman/Handlers/SpamDetect.py
@@ -35,11 +35,7 @@ import Hold
# can be None to indicate regex search of the body of the message. Note that
# the more searching done, the slower this whole process gets.
-KNOWN_SPAMMERS = [('from', r'spambot@mmtester\.org'),
- ('sender', r'spambot@mmtester\.org'),
- ('reply-to', r'spambot@mmtester\.org'),
- (None, r'I\s +YAM\s + SPAM'),
- ]
+KNOWN_SPAMMERS = []
class SpamDetected(HandlerAPI.MessageHeld):