Commit 13ec5d3f authored by myk%mozilla.org's avatar myk%mozilla.org

Fix for bug 97764: Fixes errant sending of mail on attachment changes to users…

Fix for bug 97764: Fixes errant sending of mail on attachment changes to users who do not want to receive mail about their own changes. Patch by Jake <jake@acutex.net>. r=myk@mozilla.org; no second review needed.
parent 478ae87e
......@@ -499,7 +499,7 @@ sub update
#system ("./processmail", $bugid , $::userid);
#my $mailresults = `./processmail $bugid $::userid`;
my $mailresults = '';
open(PMAIL, "-|") or exec('./processmail', $bugid, $::userid);
open(PMAIL, "-|") or exec('./processmail', $bugid, DBID_to_name($::userid));
$mailresults .= $_ while <PMAIL>;
close(PMAIL);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment