summaryrefslogtreecommitdiffstats
path: root/processmail
diff options
context:
space:
mode:
authorterry%mozilla.org <>1999-10-12 03:54:45 +0200
committerterry%mozilla.org <>1999-10-12 03:54:45 +0200
commit01dde409810fa356e76dba9730079c6282ec4e58 (patch)
tree12c7f3e7187c7a955c97d7b0d33f29b23ec395a9 /processmail
parent7d2c06b300911c0b2cb411164aad609326a7064f (diff)
downloadbugzilla-01dde409810fa356e76dba9730079c6282ec4e58.tar.gz
bugzilla-01dde409810fa356e76dba9730079c6282ec4e58.tar.xz
Stop reporting "area"; don't report voters on the CC line.
Diffstat (limited to 'processmail')
-rwxr-xr-xprocessmail20
1 files changed, 13 insertions, 7 deletions
diff --git a/processmail b/processmail
index 6abd157ac..96521f05f 100755
--- a/processmail
+++ b/processmail
@@ -148,7 +148,7 @@ sub GetBugText {
my @collist = ("bug_id", "product", "version", "rep_platform", "op_sys",
"bug_status", "resolution", "priority", "bug_severity",
- "area", "assigned_to", "reporter", "bug_file_loc",
+ "assigned_to", "reporter", "bug_file_loc",
"short_desc", "component", "qa_contact", "target_milestone",
"status_whiteboard", "groupset");
@@ -190,11 +190,14 @@ sub GetBugText {
my @cclist;
@cclist = split(/,/, ShowCcList($id));
+ my @voterlist;
SendSQL("select profiles.login_name from votes, profiles where votes.bug_id = $id and profiles.userid = votes.who");
while (MoreSQLData()) {
- push(@cclist, FetchOneColumn());
+ my $v = FetchOneColumn();
+ push(@voterlist, $v);
}
- $::bug{'cclist'} = \@cclist;
+ $::bug{'cclist'} = join(',', @cclist);
+ $::bug{'voterlist'} = join(',', @voterlist);
return "Bug\#: $id
@@ -207,11 +210,10 @@ Resolution: $::bug{'resolution'}
Severity: $::bug{'bug_severity'}
Priority: $::bug{'priority'}
Component: $::bug{'component'}
-Area: $::bug{'area'}
AssignedTo: $::bug{'assigned_to'}
ReportedBy: $::bug{'reporter'}
$qa_contact$target_milestone${status_whiteboard}URL: $::bug{'bug_file_loc'}
-" . DescCC($::bug{'cclist'}) . "Summary: $::bug{'short_desc'}
+" . DescCC(\@cclist) . "Summary: $::bug{'short_desc'}
" . DescDependencies($id) . "
$::bug{'long_desc'}
";
@@ -225,7 +227,7 @@ sub fixaddresses {
my ($field, $list) = (@_);
my @result;
foreach my $i (@$list) {
- if ($i eq "") {
+ if (!defined $i || $i eq "") {
next;
}
SendSQL("select emailnotification, groupset & $::bug{'groupset'} from profiles where login_name = " .
@@ -288,7 +290,11 @@ sub ProcessOneBug {
my $tolist = fixaddresses("to",
[$::bug{'assigned_to'}, $::bug{'reporter'},
$::bug{'qa_contact'}]);
- my $cclist = fixaddresses("cc", $::bug{'cclist'});
+ my @combinedcc;
+ foreach my $v (split(/,/, "$::bug{'cclist'},$::bug{'voterlist'}")) {
+ push @combinedcc, $v;
+ }
+ my $cclist = fixaddresses("cc", \@combinedcc);
my $logstr = "Bug $i $verb";
if ($tolist ne "" || $cclist ne "") {
my %substs;