From 73997d5064384dd64c82a714947644f4ffcc4366 Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Tue, 6 Dec 2005 00:12:45 +0000 Subject: =?UTF-8?q?Bug=20319055:=20Mail::Mailer=20truncates=20messages=20a?= =?UTF-8?q?t=20a=20line=20with=20a=20period=20when=20using=20sendmail=20-?= =?UTF-8?q?=20Patch=20by=20Fr=C3=A9d=C3=A9ric=20Buclin=20=20r/a=3Djustdave?= 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.1