From: cyeh%bluemartini.com <> Date: Thu, 14 Sep 2000 04:25:25 +0000 (+0000) Subject: fix for 29820: Remove "Changed" from email subject line X-Git-Tag: bugzilla-2.12~163 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=020c5f2eefcd4c60bc4f80f7142cbb8560519c6a;p=thirdparty%2Fbugzilla.git fix for 29820: Remove "Changed" from email subject line patch submitted by zach@math.berkeley.edu, additional commentary by cyeh@bluemartini.com. --- diff --git a/processmail b/processmail index c919b7accc..2e45e30aea 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;