From 3590e2c142da88ca64eea5c7caa1f4e7cd315157 Mon Sep 17 00:00:00 2001 From: bwarsaw Date: Mon, 18 Sep 2000 21:30:32 +0000 Subject: DeliverToUser(): Since most calls to this function are on internally created messages, explicitly set the 'noack' flag to true so that by default, Replybot will ignore the message. This will get overridden by the flag set in qrunner (which is the only place that externally generated messages are injected into the system using DeliverToUser()). Closes SF bug #114603. --- Mailman/Handlers/HandlerAPI.py | 1 + 1 file changed, 1 insertion(+) (limited to 'Mailman/Handlers') diff --git a/Mailman/Handlers/HandlerAPI.py b/Mailman/Handlers/HandlerAPI.py index b718e5636..ca455a281 100644 --- a/Mailman/Handlers/HandlerAPI.py +++ b/Mailman/Handlers/HandlerAPI.py @@ -173,6 +173,7 @@ def DeliverToUser(mlist, msg, newdata={}): ] msgdata = {'pipeline' : pipeline, 'fasttrack': 1, + 'noack' : 1, # default disable Replybot } recips = getattr(msg, 'recips', None) if recips is not None: -- cgit v1.3.1