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

git-svn-id: svn://10.0.0.236/trunk@185701 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
lpsolit%gmail.com
2005-12-05 16:12:45 +00:00
parent 0938464b3b
commit 5cbc6eef24

View File

@@ -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";
}