Commit 73997d50 authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 319055: Mail::Mailer truncates messages at a line with a period when using…

Bug 319055: Mail::Mailer truncates messages at a line with a period when using sendmail - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=justdave
parent ad0688fb
......@@ -650,6 +650,9 @@ sub MessageToMTA {
}
my @args;
if (Param("mail_delivery_method") eq "sendmail") {
push @args, "-i";
}
if (Param("mail_delivery_method") eq "sendmail" && !Param("sendmailnow")) {
push @args, "-ODeliveryMode=deferred";
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment