]> 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:18:03 +0000 (00:18 +0000)
committerlpsolit%gmail.com <>
Tue, 6 Dec 2005 00:18:03 +0000 (00:18 +0000)
Bugzilla/BugMail.pm

index f1ac190d5ad7f1c3de344fec50a31c379abf4b3d..23e0035934843a9f7228bfd3f283860a5d06bec1 100644 (file)
@@ -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";
     }