From: lpsolit%gmail.com <> Date: Tue, 6 Dec 2005 00:18:03 +0000 (+0000) Subject: Bug 319055: Mail::Mailer truncates messages at a line with a period when using sendma... X-Git-Tag: bugzilla-2.20.1~74 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=36ae0148bb8958da1e5ece3e1daa0bcc76731156;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 f1ac190d5a..23e0035934 100644 --- a/Bugzilla/BugMail.pm +++ b/Bugzilla/BugMail.pm @@ -643,6 +643,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"; }