diff options
Diffstat (limited to 'Mailman/Handlers/HandlerAPI.py')
| -rw-r--r-- | Mailman/Handlers/HandlerAPI.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Handlers/HandlerAPI.py b/Mailman/Handlers/HandlerAPI.py index 43108574f..9b8002b62 100644 --- a/Mailman/Handlers/HandlerAPI.py +++ b/Mailman/Handlers/HandlerAPI.py @@ -64,7 +64,7 @@ LIST_PIPELINE = ['SpamDetect', # Central mail delivery handler def DeliverToList(mlist, msg, msgdata): - pipeline = msgdata.get('pipeline', LIST_PIPELINE) + pipeline = msgdata.get('pipeline', LIST_PIPELINE[:]) while pipeline: modname = pipeline.pop(0) mod = __import__('Mailman.Handlers.' + modname) |
