summaryrefslogtreecommitdiffstats
path: root/processmail
diff options
context:
space:
mode:
authorbbaetz%student.usyd.edu.au <>2002-04-14 13:43:55 +0200
committerbbaetz%student.usyd.edu.au <>2002-04-14 13:43:55 +0200
commit7e50e09d81f366d2fc0c7e692d5f8dd8a49be18d (patch)
treeab678b9b30181708c90dcb10027f6dfd267f6183 /processmail
parent055ae240c20a7670009202a0b3013da9b7588c3e (diff)
downloadbugzilla-7e50e09d81f366d2fc0c7e692d5f8dd8a49be18d.tar.gz
bugzilla-7e50e09d81f366d2fc0c7e692d5f8dd8a49be18d.tar.xz
Bug 110980 - no email to cc list when opening new bug
original patch by jake@bugzilla.org, merged to current sources by bbaetz@student.usyd.edu.au r=gerv, justdave
Diffstat (limited to 'processmail')
-rwxr-xr-xprocessmail7
1 files changed, 6 insertions, 1 deletions
diff --git a/processmail b/processmail
index e8509a6df..3ddf28d94 100755
--- a/processmail
+++ b/processmail
@@ -818,10 +818,15 @@ if ($#ARGV >= 0 && $ARGV[0] eq "-forceqacontact") {
@{$force{'QAcontact'}} = (trim(shift(@ARGV)));
}
+if ($#ARGV >= 0 && $ARGV[0] eq "-forcereporter") {
+ shift(@ARGV);
+ @{$force{'Reporter'}} = trim(shift(@ARGV));
+}
+
if (($#ARGV < 0) || ($#ARGV > 1)) {
print "Usage:\n processmail {bugid} {nametoexclude} " .
"[-forcecc list,of,users]\n [-forceowner name] " .
- "[-forceqacontact name]\nor\n" .
+ "[-forceqacontact name]\n [-forcereporter name]\nor\n" .
" processmail rescanall\n";
exit;
}