diff options
author | justdave%syndicomm.com <> | 2002-02-17 16:22:29 +0000 |
---|---|---|
committer | justdave%syndicomm.com <> | 2002-02-17 16:22:29 +0000 |
commit | 3d96b37a3fe7be31a11c6313746f41341ee365c8 (patch) | |
tree | 30b239a5776489429937f938449b5c48c6baafc7 /whineatnews.pl | |
parent | Bug 97496: Release notes cleanup (checkin without review OK for prerelease no... (diff) | |
download | bugzilla-3d96b37a3fe7be31a11c6313746f41341ee365c8.tar.gz bugzilla-3d96b37a3fe7be31a11c6313746f41341ee365c8.tar.bz2 bugzilla-3d96b37a3fe7be31a11c6313746f41341ee365c8.zip |
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 'whineatnews.pl')
-rwxr-xr-x | whineatnews.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/whineatnews.pl b/whineatnews.pl index 0b5d78eba..b364836a5 100755 --- a/whineatnews.pl +++ b/whineatnews.pl @@ -64,7 +64,7 @@ foreach my $email (sort (keys %bugs)) { } my $sendmailparam = Param('sendmailnow') ? '' : "-ODeliveryMode=deferred"; - open SENDMAIL, "|/usr/lib/sendmail $sendmailparam -ti" + open SENDMAIL, "|/usr/lib/sendmail $sendmailparam -t -i" or die "Can't open sendmail"; print SENDMAIL $msg; close SENDMAIL; |