diff options
| -rw-r--r-- | Mailman/Handlers/SpamDetect.py | 6 |
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): |
