diff options
author | justdave%syndicomm.com <> | 2002-02-17 17:22:29 +0100 |
---|---|---|
committer | justdave%syndicomm.com <> | 2002-02-17 17:22:29 +0100 |
commit | 3d96b37a3fe7be31a11c6313746f41341ee365c8 (patch) | |
tree | 30b239a5776489429937f938449b5c48c6baafc7 /Bugzilla | |
parent | 115bce1c6eac26f5407a8b741bf6cbbe3b0366fb (diff) | |
download | bugzilla-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 'Bugzilla')
-rw-r--r-- | Bugzilla/Token.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Bugzilla/Token.pm b/Bugzilla/Token.pm index 1cff2fac2..4f7f61882 100644 --- a/Bugzilla/Token.pm +++ b/Bugzilla/Token.pm @@ -101,7 +101,7 @@ sub MailPasswordToken { my $emailsuffix = &::Param('emailsuffix'); $token = &::url_quote($token); - open SENDMAIL, "|/usr/lib/sendmail -ti"; + open SENDMAIL, "|/usr/lib/sendmail -t -i"; print SENDMAIL qq|From: bugzilla-daemon To: $emailaddress$emailsuffix @@ -144,7 +144,7 @@ sub Cancel { my $username = $realname ? $realname . " <" . $loginname . ">" : $loginname; # Notify the user via email about the cancellation. - open SENDMAIL, "|/usr/lib/sendmail -ti"; + open SENDMAIL, "|/usr/lib/sendmail -t -i"; print SENDMAIL qq|From: bugzilla-daemon To: $username Subject: "$tokentype" token cancelled |