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
2bdc68f5
Commit
2bdc68f5
authored
Mar 29, 2001
by
cyeh%bluemartini.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix for 71798: bugmail not sent when moving from cc to assigned fields
checked in patch based on patch submitted by jake@acutex.net
parent
2c793d31
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
3 deletions
+1
-3
processmail
processmail
+1
-3
No files found.
processmail
View file @
2bdc68f5
...
...
@@ -657,7 +657,6 @@ sub getEmailAttributes ($@) {
my
(
$commentField
,
@fieldDiffs
)
=
@_
;
my
(
@flags
,
@uniqueFlags
,
%
alreadySeen
)
=
();
my
$Status
=
0
;
foreach
my
$ref
(
@fieldDiffs
)
{
my
(
$who
,
$fieldName
,
$when
,
$old
,
$new
)
=
(
@$ref
);
...
...
@@ -671,7 +670,6 @@ sub getEmailAttributes ($@) {
if
(
$new
eq
'RESOLVED'
||
$new
eq
'VERIFIED'
)
{
push
(
@flags
,
'Resolved'
);
}
$Status
=
1
;
}
elsif
(
$fieldName
eq
'Severity'
||
$fieldName
eq
'Status'
||
$fieldName
eq
'Priority'
)
{
...
...
@@ -686,7 +684,7 @@ sub getEmailAttributes ($@) {
if
(
$commentField
=~
/Created an attachment \(/
)
{
push
(
@flags
,
'Attachments'
);
}
elsif
(
$commentField
ne
''
&&
!
(
$Status
))
{
elsif
(
(
$commentField
ne
''
)
&&
(
scalar
(
@flags
)
==
1
)
&&
(
$flags
[
0
]
eq
'Resolved'
))
{
push
(
@flags
,
'Comments'
);
}
...
...
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