From: bbaetz%student.usyd.edu.au <> Date: Sat, 9 Nov 2002 20:20:18 +0000 (+0000) Subject: Bug 178189 - when filing a new bug, the generated bugmail doesn't include X-Git-Tag: bugzilla-2.17.2~94 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=120f86a1ba4e77c05daa698f0fbee05b7b93bd7b;p=thirdparty%2Fbugzilla.git Bug 178189 - when filing a new bug, the generated bugmail doesn't include product/component r=justdave, myk a=justdave --- diff --git a/processmail b/processmail index fd1f50b629..a7663149f8 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);