From 3fe66fc577d0b6a14939210d8fc34b937b660886 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Sun, 6 Dec 2020 15:26:58 -0500 Subject: [PATCH] fix to auto generated messages from inbox handler --- citadel/modules/inboxrules/serv_inboxrules.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/citadel/modules/inboxrules/serv_inboxrules.c b/citadel/modules/inboxrules/serv_inboxrules.c index a381d4e17..b5dc6d91a 100644 --- a/citadel/modules/inboxrules/serv_inboxrules.c +++ b/citadel/modules/inboxrules/serv_inboxrules.c @@ -417,10 +417,10 @@ void inbox_do_reject(struct irule *rule, struct CtdlMessage *msg) { // Deliver the message quickie_message( - NULL, + " ", msg->cm_fields[eenVelopeTo], sender, - NULL, + MAILROOM, reject_text, FMT_RFC822, "Delivery status notification" @@ -476,10 +476,10 @@ void inbox_do_vacation(struct irule *rule, struct CtdlMessage *msg) { // Deliver the auto-reply. quickie_message( - NULL, + "", msg->cm_fields[eenVelopeTo], sender, - NULL, + MAILROOM, ChrPtr(reject_text), FMT_RFC822, "Delivery status notification" -- 2.30.2