From fbdd05dd8a942926beb67c15a804b0bd949ad45f Mon Sep 17 00:00:00 2001 From: "seth%cs.brandeis.edu" <> Date: Thu, 16 Mar 2000 07:39:03 +0000 Subject: Added a bugzilla.procmailrc as a sample procmailrc file bugzilla_email_append.pl calls processmail.pl after writing out the changes. --- contrib/bugzilla_email_append.pl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'contrib/bugzilla_email_append.pl') diff --git a/contrib/bugzilla_email_append.pl b/contrib/bugzilla_email_append.pl index 065e2aba2..b10d8e030 100755 --- a/contrib/bugzilla_email_append.pl +++ b/contrib/bugzilla_email_append.pl @@ -18,6 +18,7 @@ # Contributor : Seth M. Landsman # 03/15/00 : Initial version by SML +# 03/15/00 : processmail gets called # Email subject must be of format : # .* Bug ### .* @@ -26,7 +27,6 @@ # TODO : # 1. better way to get the body text (I don't know what dump_entity() is # actually doing -# 2. response emails use diagnostics; use strict; @@ -115,6 +115,8 @@ 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'"); + sub DealWithError { my ($reason) = @_; print $reason . "\n"; -- cgit v1.2.3-24-g4f1b