Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
020c5f2e
Commit
020c5f2e
authored
Sep 14, 2000
by
cyeh%bluemartini.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix for 29820: Remove "Changed" from email subject line
patch submitted by zach@math.berkeley.edu, additional commentary by cyeh@bluemartini.com.
parent
dff7f2f4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
processmail
processmail
+6
-1
No files found.
processmail
View file @
020c5f2e
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment