From 0676320a63a8a7a7a7536c91e79a1b396c00acf4 Mon Sep 17 00:00:00 2001 From: "bbaetz%student.usyd.edu.au" <> Date: Tue, 3 Sep 2002 13:39:14 +0000 Subject: [PATCH] bug 163024 - bugzilla_email_append calls processmail incorrectly r=joel, preed --- contrib/bugzilla_email_append.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/bugzilla_email_append.pl b/contrib/bugzilla_email_append.pl index 826b49198f..5fbd00824b 100755 --- a/contrib/bugzilla_email_append.pl +++ b/contrib/bugzilla_email_append.pl @@ -117,7 +117,7 @@ my $Body = "Subject: " . $Subject . "\n" . $Comment; my $long_desc_query = "INSERT INTO longdescs SET bug_id=$found_id, who=$userid, bug_when=NOW(), thetext=" . SqlQuote($Body) . ";"; SendSQL($long_desc_query); -system("cd .. ; ./processmail $found_id '$SenderShort'"); +system("./processmail", $found_id, $SenderShort); sub DealWithError { my ($reason) = @_; -- 2.47.2