From 020c5f2eefcd4c60bc4f80f7142cbb8560519c6a Mon Sep 17 00:00:00 2001 From: "cyeh%bluemartini.com" <> Date: Thu, 14 Sep 2000 04:25:25 +0000 Subject: fix for 29820: Remove "Changed" from email subject line patch submitted by zach@math.berkeley.edu, additional commentary by cyeh@bluemartini.com. --- processmail | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'processmail') 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; -- cgit v1.2.3-24-g4f1b