summaryrefslogtreecommitdiffstats
path: root/importxml.pl
diff options
context:
space:
mode:
authorjustdave%syndicomm.com <>2002-02-17 17:22:29 +0100
committerjustdave%syndicomm.com <>2002-02-17 17:22:29 +0100
commit3d96b37a3fe7be31a11c6313746f41341ee365c8 (patch)
tree30b239a5776489429937f938449b5c48c6baafc7 /importxml.pl
parent115bce1c6eac26f5407a8b741bf6cbbe3b0366fb (diff)
downloadbugzilla-3d96b37a3fe7be31a11c6313746f41341ee365c8.tar.gz
bugzilla-3d96b37a3fe7be31a11c6313746f41341ee365c8.tar.xz
Fix for bug 125516: the recent fix for emails truncating when a period occurred on a line by itself broke Exim because it
needs the -t and -i as separate parameters instead of stacked (the original patch had -ti) Patch by Tobias Burnus <burnus@gmx.de> r= justdave, gerv
Diffstat (limited to 'importxml.pl')
-rwxr-xr-ximportxml.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/importxml.pl b/importxml.pl
index 584855e29..f2ed77d5c 100755
--- a/importxml.pl
+++ b/importxml.pl
@@ -114,7 +114,7 @@ sub MailMessage {
$header.= "Subject: $subject\n\n";
open(SENDMAIL,
- "|/usr/lib/sendmail -ODeliveryMode=background -ti") ||
+ "|/usr/lib/sendmail -ODeliveryMode=background -t -i") ||
die "Can't open sendmail";
print SENDMAIL $header . $message . "\n";
close SENDMAIL;