diff options
author | bbaetz%student.usyd.edu.au <> | 2002-09-03 15:39:01 +0200 |
---|---|---|
committer | bbaetz%student.usyd.edu.au <> | 2002-09-03 15:39:01 +0200 |
commit | 4a4b36472dbe6a16666e21b7f9811b1bc2c265fa (patch) | |
tree | 179054c127ceefab93000e84da4bb7aec23315c8 | |
parent | 92e9c5a49c32c377f21fe9bdafb61b10de3876d7 (diff) | |
download | bugzilla-4a4b36472dbe6a16666e21b7f9811b1bc2c265fa.tar.gz bugzilla-4a4b36472dbe6a16666e21b7f9811b1bc2c265fa.tar.xz |
bug 163024 - bugzilla_email_append calls processmail incorrectly
r=joel, preed
-rwxr-xr-x | contrib/bugzilla_email_append.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/bugzilla_email_append.pl b/contrib/bugzilla_email_append.pl index 7e1de847b..2ed39c482 100755 --- a/contrib/bugzilla_email_append.pl +++ b/contrib/bugzilla_email_append.pl @@ -116,7 +116,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) = @_; |