From 3d96b37a3fe7be31a11c6313746f41341ee365c8 Mon Sep 17 00:00:00 2001 From: "justdave%syndicomm.com" <> Date: Sun, 17 Feb 2002 16:22:29 +0000 Subject: 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 r= justdave, gerv --- globals.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'globals.pl') diff --git a/globals.pl b/globals.pl index deb433ab4..a1acb5a79 100644 --- a/globals.pl +++ b/globals.pl @@ -1432,7 +1432,7 @@ sub RemoveVotes { if (Param('sendmailnow')) { $sendmailparm = ''; } - if (open(SENDMAIL, "|/usr/lib/sendmail $sendmailparm -ti")) { + if (open(SENDMAIL, "|/usr/lib/sendmail $sendmailparm -t -i")) { my %substs; $substs{"to"} = $name; -- cgit v1.2.3-24-g4f1b