diff options
author | cyeh%bluemartini.com <> | 2000-09-14 04:25:25 +0000 |
---|---|---|
committer | cyeh%bluemartini.com <> | 2000-09-14 04:25:25 +0000 |
commit | 020c5f2eefcd4c60bc4f80f7142cbb8560519c6a (patch) | |
tree | f4b35bd17ff702e2d783f4630204a94d4721bd28 /processmail | |
parent | fix for 51520: Missing uses of Param('emailsuffix') (diff) | |
download | bugzilla-020c5f2eefcd4c60bc4f80f7142cbb8560519c6a.tar.gz bugzilla-020c5f2eefcd4c60bc4f80f7142cbb8560519c6a.tar.bz2 bugzilla-020c5f2eefcd4c60bc4f80f7142cbb8560519c6a.zip |
fix for 29820: Remove "Changed" from email subject line
patch submitted by zach@math.berkeley.edu, additional commentary by
cyeh@bluemartini.com.
Diffstat (limited to 'processmail')
-rwxr-xr-x | processmail | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/processmail b/processmail index c919b7acc..2e45e30ae 100755 --- a/processmail +++ b/processmail @@ -572,7 +572,12 @@ sub NewProcessOnePerson ($$\@\%\%\%$$$$) { my %substs; $person .= Param('emailsuffix'); - $substs{"neworchanged"} = $isnew ? "New" : "Changed"; +# 09/13/2000 cyeh@bluemartini.com +# If a bug is changed, don't put the word "Changed" in the subject mail +# since if the bug didn't change, you wouldn't be getting mail +# in the first place! see http://bugzilla.mozilla.org/show_bug.cgi?id=29820 +# for details. + $substs{"neworchanged"} = $isnew ? "New" : ""; $substs{"to"} = $person; $substs{"cc"} = ''; $substs{"bugid"} = $id; |