From 73997d5064384dd64c82a714947644f4ffcc4366 Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Tue, 6 Dec 2005 00:12:45 +0000 Subject: Bug 319055: Mail::Mailer truncates messages at a line with a period when using sendmail - Patch by Frédéric Buclin r/a=justdave MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Bugzilla/BugMail.pm | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Bugzilla') diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm index a8e9c1e48..47db3c2bf 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"; } -- cgit v1.2.3-24-g4f1b