diff options
| -rw-r--r-- | Mailman/Handlers/HandlerAPI.py | 4 |
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 |
