From: lpsolit%gmail.com <> Date: Tue, 6 Dec 2005 00:12:45 +0000 (+0000) Subject: Bug 319055: Mail::Mailer truncates messages at a line with a period when using sendma... X-Git-Tag: bugzilla-2.22rc1~113 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=73997d5064384dd64c82a714947644f4ffcc4366;p=thirdparty%2Fbugzilla.git Bug 319055: Mail::Mailer truncates messages at a line with a period when using sendmail - Patch by Frédéric Buclin r/a=justdave --- diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm index a8e9c1e48b..47db3c2bfb 100644 --- a/Bugzilla/BugMail.pm +++ b/Bugzilla/BugMail.pm @@ -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"; }