summaryrefslogtreecommitdiffstats
path: root/processmail
diff options
context:
space:
mode:
authorbbaetz%student.usyd.edu.au <>2002-11-09 21:20:18 +0100
committerbbaetz%student.usyd.edu.au <>2002-11-09 21:20:18 +0100
commit120f86a1ba4e77c05daa698f0fbee05b7b93bd7b (patch)
tree63c28a7382c0e68ee259add1440c36b1a93acfcd /processmail
parent3afbc09614bfe1fb55d713d9f975b64c839e76ae (diff)
downloadbugzilla-120f86a1ba4e77c05daa698f0fbee05b7b93bd7b.tar.gz
bugzilla-120f86a1ba4e77c05daa698f0fbee05b7b93bd7b.tar.xz
Bug 178189 - when filing a new bug, the generated bugmail doesn't include
product/component r=justdave, myk a=justdave
Diffstat (limited to 'processmail')
-rwxr-xr-xprocessmail3
1 files changed, 3 insertions, 0 deletions
diff --git a/processmail b/processmail
index fd1f50b62..a7663149f 100755
--- a/processmail
+++ b/processmail
@@ -108,6 +108,9 @@ sub ProcessOneBug {
foreach my $i (@::log_columns) {
$values{$i} = shift(@row);
}
+ $values{product} = get_product_name($values{product_id});
+ $values{component} = get_component_name($values{component_id});
+
my ($start, $end) = (@row);
# $start and $end are considered safe because users can't touch them
trick_taint($start);