summaryrefslogtreecommitdiffstats
path: root/processmail
diff options
context:
space:
mode:
authordave%intrec.com <>2001-03-15 16:50:36 +0100
committerdave%intrec.com <>2001-03-15 16:50:36 +0100
commitb60994df8219ac2587edb66c97aa0e65ec5d2c5a (patch)
tree44b44612e7aa9fec6f0cbdd9e3bb053c66dca084 /processmail
parentf9ad36979ee316009fe69972da97702ec14110ce (diff)
downloadbugzilla-b60994df8219ac2587edb66c97aa0e65ec5d2c5a.tar.gz
bugzilla-b60994df8219ac2587edb66c97aa0e65ec5d2c5a.tar.xz
Fix for bug 71550: watchers now get email based on their own preferences rather than the preferences of the person they are watching. Patch by jake@acutex.net, r= dave@intrec.com
Diffstat (limited to 'processmail')
-rwxr-xr-xprocessmail44
1 files changed, 21 insertions, 23 deletions
diff --git a/processmail b/processmail
index acd93315c..dbd419e41 100755
--- a/processmail
+++ b/processmail
@@ -540,7 +540,7 @@ sub NewProcessOneBug {
if ( !defined(NewProcessOnePerson($person, $count, \@headerlist,
\%values, \%defmailhead,
\%fielddescription, $difftext,
- $newcomments, $start, $id, 1))) {
+ $newcomments, $start, $id))) {
# if a value is not returned, this means that the person
# was not sent mail. add them to the excludedAddresses list.
@@ -569,7 +569,7 @@ sub NewProcessOneBug {
if ( !defined(NewProcessOnePerson($person, $count, \@headerlist,
\%values, \%defmailhead,
\%fielddescription, $difftext,
- $newcomments, $start, $id, 1))) {
+ $newcomments, $start, $id))) {
# if a value is not returned, this means that the person
# was not sent mail. add them to the excludedAddresses list.
@@ -724,6 +724,23 @@ sub filterEmailGroup ($$$) {
#
push @emailList, @{$force{$emailGroup}};
+ # Check this user for any watchers... doing this here allows them to inhert the
+ # relationship to the bug of the person they are watching (if the person they
+ # are watching is an owner, their mail is filtered as if they were the owner).
+ if (Param("supportwatchers")) {
+ my @watchers;
+ foreach my $person(@emailList) {
+ my $personId = DBname_to_id($person);
+ SendSQL("SELECT watcher FROM watch WHERE watched = $personId");
+ my $watcher = FetchSQLData();
+ if ($watcher) {
+ push (@watchers, DBID_to_name($watcher));
+ }
+ }
+ push(@emailList, @watchers);
+ }
+
+
foreach my $person (@emailList) {
my $userid;
@@ -854,9 +871,9 @@ sub filterEmailGroup ($$$) {
return @filteredList;
}
-sub NewProcessOnePerson ($$$$$$$$$$$) {
+sub NewProcessOnePerson ($$$$$$$$$$) {
my ($person, $count, $hlRef, $valueRef, $dmhRef, $fdRef, $difftext,
- $newcomments, $start, $id, $checkWatchers) = @_;
+ $newcomments, $start, $id) = @_;
my %values = %$valueRef;
my @headerlist = @$hlRef;
@@ -873,25 +890,6 @@ sub NewProcessOnePerson ($$$$$$$$$$$) {
my ($userid, $emailnotification, $newemailtech,
$groupset) = (FetchSQLData());
- # check for watchers, and recurse if we find any, but tell the
- # recursive call not to check for watchers
- #
- if (Param("supportwatchers") && $checkWatchers) {
- my $personId = DBname_to_id($person);
- my $watcherSet = new RelationSet();
- $watcherSet->mergeFromDB("SELECT watcher FROM watch WHERE" .
- " watched = $personId");
-
- foreach my $watcher ( $watcherSet->toArray() ) {
-
- &NewProcessOnePerson(DBID_to_name($watcher) . Param('emailsuffix'),
- $count, \@headerlist, \%values,
- \%defmailhead, \%fielddescription, $difftext,
- $newcomments, $start, $id, 0);
- }
-
- }
-
if (!$newemailtech || !Param('newemailtech')) {
return;
}