summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbwarsaw2000-02-19 03:52:03 +0000
committerbwarsaw2000-02-19 03:52:03 +0000
commit0e2376ff58f8c37acf410edb51bc7b5d9e108d53 (patch)
tree1c53bb83e4db7be98b1a824e1f15a873a2e620d6
parentbde80c7e3b4f26e8a5a34f01d3148b73751f13f4 (diff)
downloadmailman-0e2376ff58f8c37acf410edb51bc7b5d9e108d53.tar.gz
mailman-0e2376ff58f8c37acf410edb51bc7b5d9e108d53.tar.zst
mailman-0e2376ff58f8c37acf410edb51bc7b5d9e108d53.zip
-rw-r--r--Mailman/Handlers/HandlerAPI.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/Mailman/Handlers/HandlerAPI.py b/Mailman/Handlers/HandlerAPI.py
index c3b146759..ddef27c63 100644
--- a/Mailman/Handlers/HandlerAPI.py
+++ b/Mailman/Handlers/HandlerAPI.py
@@ -35,6 +35,7 @@ class MessageHeld(HandlerError):
def DeliverToList(mlist, msg):
pipeline = ['SpamDetect',
'Approve',
+ 'Replybot',
'Hold',
'Cleanse',
'CookHeaders',
@@ -61,7 +62,8 @@ def DeliverToList(mlist, msg):
# should have already calculated and set msg.recips. TBD: can the mlist be
# None?
def DeliverToUser(mlist, msg):
- pipeline = ['CookHeaders',
+ pipeline = ['Replybot',
+ 'CookHeaders',
mm_cfg.DELIVERY_MODULE,
]
msg.fastrack = 1