summaryrefslogtreecommitdiff
path: root/Mailman/Handlers/HandlerAPI.py
diff options
context:
space:
mode:
authorbwarsaw2000-12-20 21:45:12 +0000
committerbwarsaw2000-12-20 21:45:12 +0000
commitd2c52ba0d14885cd86ddbd180ea668fcd189fd2d (patch)
treec2aefeec84311dd072eb227f17832ad3f7483a58 /Mailman/Handlers/HandlerAPI.py
parentab3221cdcbcdc3647e67cce6a9b3cb4dae4493f9 (diff)
downloadmailman-d2c52ba0d14885cd86ddbd180ea668fcd189fd2d.tar.gz
mailman-d2c52ba0d14885cd86ddbd180ea668fcd189fd2d.tar.zst
mailman-d2c52ba0d14885cd86ddbd180ea668fcd189fd2d.zip
Diffstat (limited to 'Mailman/Handlers/HandlerAPI.py')
-rw-r--r--Mailman/Handlers/HandlerAPI.py14
1 files changed, 3 insertions, 11 deletions
diff --git a/Mailman/Handlers/HandlerAPI.py b/Mailman/Handlers/HandlerAPI.py
index 09eaeb705..6455079e8 100644
--- a/Mailman/Handlers/HandlerAPI.py
+++ b/Mailman/Handlers/HandlerAPI.py
@@ -63,12 +63,12 @@ LIST_PIPELINE = ['SpamDetect',
'CookHeaders',
'ToDigest',
'ToArchive',
- 'ToUsenet',
'CalcRecips',
'Decorate',
- mm_cfg.DELIVERY_MODULE,
'AfterDelivery',
'Acknowledge',
+ 'ToUsenet',
+ 'ToOutgoing',
]
@@ -156,21 +156,13 @@ def DeliverToList(mlist, msg, msgdata):
-# For messages that qrunner tries to re-deliver using the pre 2.0beta3 qfiles
-# data format.
-def RedeliverMessage(mlist, msg):
- msgdata = {'pipeline': [mm_cfg.DELIVERY_MODULE]}
- return DeliverToList(mlist, msg, msgdata)
-
-
-
# for messages crafted internally by the Mailman system. The msg object
# should have already calculated and set msg.recips. TBD: can the mlist be
# None?
def DeliverToUser(mlist, msg, newdata={}):
pipeline = ['Replybot',
'CookHeaders',
- mm_cfg.DELIVERY_MODULE,
+ 'ToOutgoing',
]
msgdata = {'pipeline' : pipeline,
'fasttrack': 1,