From 2ddb47368170e74243086863fedc925300b45dd8 Mon Sep 17 00:00:00 2001 From: "justdave%syndicomm.com" <> Date: Wed, 6 Feb 2002 10:46:58 +0000 Subject: Fix for bug 117055: Emails were being truncated if they contained a line with nothing but a period on them. We now pass -i to sendmail and its clones to tell it to ignore periods (since we close the pipe when we're done, rather than signalling it with a period). Has been tested with sendmail and postfix. Patch by Dave Miller r= afranke, bugzilla@bkor.dhs.org, jake --- importxml.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'importxml.pl') diff --git a/importxml.pl b/importxml.pl index e3532c53a..584855e29 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 -t") || + "|/usr/lib/sendmail -ODeliveryMode=background -ti") || die "Can't open sendmail"; print SENDMAIL $header . $message . "\n"; close SENDMAIL; -- cgit v1.2.3-24-g4f1b