]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 319055: Mail::Mailer truncates messages at a line with a period when using sendma...
authorlpsolit%gmail.com <>
Tue, 6 Dec 2005 00:12:45 +0000 (00:12 +0000)
committerlpsolit%gmail.com <>
Tue, 6 Dec 2005 00:12:45 +0000 (00:12 +0000)
Bugzilla/BugMail.pm

index a8e9c1e48b820d7fc7718db15da0aaecd54ddc06..47db3c2bfbfb041c06ec00a18cd16ca351901315 100644 (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";
     }