From d7862441ffcbafa60576f60ab7188af63c819028 Mon Sep 17 00:00:00 2001 From: bwarsaw Date: Mon, 18 Sep 2000 21:28:42 +0000 Subject: dispose_message(): For mail destined to either the -admin or the -owner address, explicit set the 'noack' flag to false so the Replybot module will act on it. Closes bug #114603. --- cron/qrunner | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cron/qrunner b/cron/qrunner index 421751232..ec89c10c2 100644 --- a/cron/qrunner +++ b/cron/qrunner @@ -128,6 +128,7 @@ def dispose_message(mlist, msg, msgdata): # loops. msgdata.update({'recips' : mlist.owner[:], 'errorsto': mlist.GetOwnerEmail(), + 'noack' : 0, # enable Replybot }) return HandlerAPI.DeliverToUser(mlist, msg, msgdata) elif msgdata.get('toowner', 0): @@ -147,8 +148,9 @@ def dispose_message(mlist, msg, msgdata): # Any messages to the owner address must have Errors-To: set back to # the owners address so bounce loops can be broken, as per the code # above. - msgdata.update({'recips': mlist.owner[:], + msgdata.update({'recips' : mlist.owner[:], 'errorsto': mlist.GetOwnerEmail(), + 'noack' : 0, # enable Replybot }) return HandlerAPI.DeliverToUser(mlist, msg, msgdata) elif msgdata.get('torequest', 0): -- cgit v1.3.1