processmail 27.1 KB
Newer Older
1
#!/usr/bonsaitools/bin/perl -wT
2
# -*- Mode: perl; indent-tabs-mode: nil -*-
terry%netscape.com's avatar
terry%netscape.com committed
3
#
4 5 6 7 8 9 10 11 12 13
# The contents of this file are subject to the Mozilla Public
# License Version 1.1 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of
# the License at http://www.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
# implied. See the License for the specific language governing
# rights and limitations under the License.
#
terry%netscape.com's avatar
terry%netscape.com committed
14
# The Original Code is the Bugzilla Bug Tracking System.
15
#
terry%netscape.com's avatar
terry%netscape.com committed
16
# The Initial Developer of the Original Code is Netscape Communications
17 18 19 20
# Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
21
# Contributor(s): Terry Weissman <terry@mozilla.org>,
22 23
#                 Bryce Nesbitt <bryce-mozilla@nextbus.com>
#                 Dan Mosedale <dmose@mozilla.org>
24
#                 Alan Raetz <al_raetz@yahoo.com>
25
#                 Jacob Steenhagen <jake@actex.net>
26
#                 Matthew Tuck <matty@chariot.net.au>
27

28 29
use diagnostics;
use strict;
30
use lib ".";
terry%netscape.com's avatar
terry%netscape.com committed
31

32
require "globals.pl";
terry%netscape.com's avatar
terry%netscape.com committed
33

34 35
use RelationSet;

36 37 38 39 40 41 42

# Shut up misguided -w warnings about "used only once".
sub processmail_sillyness {
    my $zz;
    $zz = $::db;
}

43
$| = 1;
terry%netscape.com's avatar
terry%netscape.com committed
44

45 46
umask(0);

47
my $nametoexclude = "";
48
my %nomail;
49

50 51 52 53 54
my @excludedAddresses = ();

# disable email flag for offline debugging work
my $enableSendMail = 1;

55 56 57 58 59
my %force;
@{$force{'QAcontact'}} = ();
@{$force{'Owner'}} = ();
@{$force{'Reporter'}} = ();
@{$force{'CClist'}} = ();
60
@{$force{'Voter'}} = ();
61

terry%netscape.com's avatar
terry%netscape.com committed
62

63
my %seen;
64 65 66 67 68 69
my @sentlist;

sub FormatTriple {
    my ($a, $b, $c) = (@_);
    $^A = "";
    my $temp = formline << 'END', $a, $b, $c;
70
^>>>>>>>>>>>>>>>>>>|^<<<<<<<<<<<<<<<<<<<<<<<<<<<|^<<<<<<<<<<<<<<<<<<<<<<<<<<<~~
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
END
    ; # This semicolon appeases my emacs editor macros. :-)
    return $^A;
}
    
sub FormatDouble {
    my ($a, $b) = (@_);
    $a .= ":";
    $^A = "";
    my $temp = formline << 'END', $a, $b;
^>>>>>>>>>>>>>>>>>> ^<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<~~
END
    ; # This semicolon appeases my emacs editor macros. :-)
    return $^A;
}
    

88
sub ProcessOneBug {
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
    my ($id) = (@_);

    my @headerlist;
    my %values;
    my %defmailhead;
    my %fielddescription;

    my $msg = "";

    SendSQL("SELECT name, description, mailhead FROM fielddefs " .
            "ORDER BY sortkey");
    while (MoreSQLData()) {
        my ($field, $description, $mailhead) = (FetchSQLData());
        push(@headerlist, $field);
        $defmailhead{$field} = $mailhead;
        $fielddescription{$field} = $description;
    }
    SendSQL("SELECT " . join(',', @::log_columns) . ", lastdiffed, now() " .
            "FROM bugs WHERE bug_id = $id");
    my @row = FetchSQLData();
    foreach my $i (@::log_columns) {
        $values{$i} = shift(@row);
    }
    my ($start, $end) = (@row);
113
    # $start and $end are considered safe because users can't touch them
114 115
    trick_taint($start);
    trick_taint($end);
116

117 118 119
    my $ccSet = new RelationSet();
    $ccSet->mergeFromDB("SELECT who FROM cc WHERE bug_id = $id");
    $values{'cc'} = $ccSet->toString();
120
    
121
    my @voterList;
122 123 124
    SendSQL("SELECT profiles.login_name FROM votes, profiles " .
            "WHERE votes.bug_id = $id AND profiles.userid = votes.who");
    while (MoreSQLData()) {
125
        push(@voterList, FetchOneColumn());
126
    }
127 128 129 130 131 132 133 134 135 136 137

    $values{'assigned_to'} = DBID_to_name($values{'assigned_to'});
    $values{'reporter'} = DBID_to_name($values{'reporter'});
    if ($values{'qa_contact'}) {
        $values{'qa_contact'} = DBID_to_name($values{'qa_contact'});
    }

    my @diffs;


    SendSQL("SELECT profiles.login_name, fielddefs.description, " .
138
            "       bug_when, removed, added, attach_id " .
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
            "FROM bugs_activity, fielddefs, profiles " .
            "WHERE bug_id = $id " .
            "  AND fielddefs.fieldid = bugs_activity.fieldid " .
            "  AND profiles.userid = who " .
            "  AND bug_when > '$start' " .
            "  AND bug_when <= '$end' " .
            "ORDER BY bug_when"
            );

    while (MoreSQLData()) {
        my @row = FetchSQLData();
        push(@diffs, \@row);
    }

    my $difftext = "";
    my $lastwho = "";
    foreach my $ref (@diffs) {
156
        my ($who, $what, $when, $old, $new, $attachid) = (@$ref);
157 158
        if ($who ne $lastwho) {
            $lastwho = $who;
159
            $difftext .= "\n$who" . Param('emailsuffix') . " changed:\n\n";
160
            $difftext .= FormatTriple("What    ", "Removed", "Added");
161 162
            $difftext .= ('-' x 76) . "\n";
        }
163
        $what =~ s/^Attachment/Attachment #$attachid/ if $attachid;
164 165 166 167 168 169
        $difftext .= FormatTriple($what, $old, $new);
    }

    $difftext = trim($difftext);


170 171 172 173
    my $deptext = "";

    my $resid = 

174
    SendSQL("SELECT bugs_activity.bug_id, bugs.short_desc, fielddefs.name, " .
175
            "       removed, added " .
176
            "FROM bugs_activity, bugs, dependencies, fielddefs ".
177
            "WHERE bugs_activity.bug_id = dependencies.dependson " .
178
            "  AND bugs.bug_id = bugs_activity.bug_id ".
179 180 181 182 183 184 185 186 187 188 189
            "  AND dependencies.blocked = $id " .
            "  AND fielddefs.fieldid = bugs_activity.fieldid" .
            "  AND (fielddefs.name = 'bug_status' " .
            "    OR fielddefs.name = 'resolution') " .
            "  AND bug_when > '$start' " .
            "  AND bug_when <= '$end' " .
            "ORDER BY bug_when, bug_id");
    
    my $thisdiff = "";
    my $lastbug = "";
    my $interestingchange = 0;
190 191
    my $depbug = 0;
    my @depbugs;
192
    while (MoreSQLData()) {
193 194 195
        my ($summary, $what, $old, $new);
        ($depbug, $summary, $what, $old, $new) = (FetchSQLData());
        if ($depbug ne $lastbug) {
196 197 198
            if ($interestingchange) {
                $deptext .= $thisdiff;
            }
199
            $lastbug = $depbug;
200
            my $urlbase = Param("urlbase");
201
            $thisdiff =
202 203 204
              "\nBug $id depends on bug $depbug, which changed state.\n\n" . 
              "Bug $depbug Summary: $summary\n" . 
              "${urlbase}show_bug.cgi?id=$depbug\n\n"; 
205 206 207 208 209 210 211 212
            $thisdiff .= FormatTriple("What    ", "Old Value", "New Value");
            $thisdiff .= ('-' x 76) . "\n";
            $interestingchange = 0;
        }
        $thisdiff .= FormatTriple($fielddescription{$what}, $old, $new);
        if ($what eq 'bug_status' && IsOpenedState($old) ne IsOpenedState($new)) {
            $interestingchange = 1;
        }
213 214
        
        push(@depbugs, $depbug);
215
    }
216
    
217 218 219 220 221 222 223 224 225 226 227
    if ($interestingchange) {
        $deptext .= $thisdiff;
    }

    $deptext = trim($deptext);

    if ($deptext) {
        $difftext = trim($difftext . "\n\n" . $deptext);
    }


228
    my $newcomments = GetLongDescriptionAsText($id, $start, $end);
229

230 231 232 233
    #
    # Start of email filtering code
    #
    my $count = 0;
234

235 236
    my @currentEmailAttributes = getEmailAttributes($newcomments, @diffs);
    my (@assigned_toList,@reporterList,@qa_contactList,@ccList) = ();
237

238 239 240
    #open(LOG, ">>/tmp/maillog");
    #print LOG "\nBug ID: $id   CurrentEmailAttributes:";
    #print LOG join(',', @currentEmailAttributes) . "\n";
241

242
    @excludedAddresses = (); # zero out global list 
243

244 245 246 247 248 249 250 251 252 253 254 255 256
    @assigned_toList = filterEmailGroup('Owner',
                                        \@currentEmailAttributes,
                                        $values{'assigned_to'});
    @reporterList = filterEmailGroup('Reporter', 
                                     \@currentEmailAttributes,
                                     $values{'reporter'});
    if (Param('useqacontact') && $values{'qa_contact'}) {
        @qa_contactList = filterEmailGroup('QAcontact',
                                           \@currentEmailAttributes,
                                           $values{'qa_contact'});
    } else { 
        @qa_contactList = (); 
    }
257

258 259
    @ccList = filterEmailGroup('CClist', \@currentEmailAttributes,
                               $values{'cc'});
260

261 262
    @voterList = filterEmailGroup('Voter', \@currentEmailAttributes,
                                  join(',',@voterList));
263

264
    my @emailList = (@assigned_toList, @reporterList, 
265
                     @qa_contactList, @ccList, @voterList);
266

267 268 269 270 271 272 273
    # only need one entry per person
    my @allEmail = ();
    my %AlreadySeen = ();
    foreach my $person (@emailList) {
        if ( !($AlreadySeen{$person}) ) {
            push(@allEmail,$person);
            $AlreadySeen{$person}++;
274
        }
275
    }
276

277 278 279 280
    #print LOG "\nbug $id email sent: " . join(',', @allEmail) . "\n";
        
    @excludedAddresses = filterExcludeList(\@excludedAddresses,
                                           \@allEmail);
281

282 283 284
    # print LOG "excluded: " . join(',',@excludedAddresses) . "\n\n";

    foreach my $person ( @allEmail ) {
285 286
        my @reasons;

287
        $count++;
288 289 290 291 292 293 294

        push(@reasons, 'AssignedTo') if lsearch(\@assigned_toList, $person) != -1;
        push(@reasons, 'Reporter') if lsearch(\@reporterList, $person) != -1;
        push(@reasons, 'QAContact') if lsearch(\@qa_contactList, $person) != -1;
        push(@reasons, 'CC') if lsearch(\@ccList, $person) != -1;
        push(@reasons, 'Voter') if lsearch(\@voterList, $person) != -1;

295
        if ( !defined(NewProcessOnePerson($person, $count, \@headerlist,
296 297
                                          \@reasons, \%values,
                                          \%defmailhead, 
298
                                          \%fielddescription, $difftext, 
299 300 301
                                          $newcomments, $start, $id, 
                                          \@depbugs))) 
        {
302 303 304 305 306 307

            # if a value is not returned, this means that the person
            # was not sent mail.  add them to the excludedAddresses list.
            # it will be filtered later for dups.
            #
            push @excludedAddresses, $person;
308 309

        }
310
    }
311

312

313 314
    SendSQL("UPDATE bugs SET lastdiffed = '$end', delta_ts = delta_ts " .
            "WHERE bug_id = $id");
315 316 317 318 319 320 321 322 323 324 325 326 327 328 329

    # Filter the exclude list for dupes one last time
    @excludedAddresses = filterExcludeList(\@excludedAddresses,
                                           \@sentlist);
    if (@sentlist) {
        print "<b>Email sent to:</b> " . join(", ", @sentlist) ."<br>\n";
    } else {
        print "<b>Email sent to:</b> no one<br>\n";
    }

    if (@excludedAddresses) {
        print "<b>Excluding:</b> " . join(", ", @excludedAddresses) . "\n";
    }

    print "<br><center>If you wish to tweak the kinds of mail Bugzilla sends you, you can";
330
    print " <a href=\"userprefs.cgi?tab=email\">change your preferences</a></center>\n";
331

332
}
333

334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366
# When one person is in different fields on one bug, they may be
# excluded from email because of one relationship to the bug (eg
# they're the QA contact) but included because of another (eg they
# also reported the bug).  Inclusion takes precedence, so this
# function looks for and removes any users from the exclude list who
# are also on the include list.  Additionally, it removes duplicate
# entries from the exclude list.  
#
# Arguments are the exclude list and the include list; the cleaned up
# exclude list is returned.
#
sub filterExcludeList ($$) {

    if ($#_ != 1) {
        die ("filterExcludeList called with wrong number of args");
    }

    my ($refExcluded, $refAll) = @_;

    my @excludedAddrs = @$refExcluded;
    my @allEmail = @$refAll;
    my @tmpList = @excludedAddrs;
    my (@result,@uniqueResult) = ();
    my %alreadySeen;

    foreach my $excluded (@tmpList) {

        push (@result,$excluded);
        foreach my $included (@allEmail) {

            # match found, so we remove the entry
            if ($included eq $excluded) {
                pop(@result);
367
                last;
368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429
            }
        }
    }

    # only need one entry per person
    foreach my $person (@result) {
        if ( !($alreadySeen{$person}) ) {
            push(@uniqueResult,$person);
            $alreadySeen{$person}++;
        }
    }

    return @uniqueResult;
}

# if the Status was changed to Resolved or Verified
#       set the Resolved flag
#
# else if Severity, Status OR Priority fields have any change
#       set the Status flag
#
# else if Keywords has changed
#       set the Keywords flag
#
# else if CC has changed
#       set the CC flag
#
# if the Comments field shows an attachment
#       set the Attachment flag
#
# else if Comments exist
#       set the Comments flag
#
# if no flags are set and there was some other field change
#       set the Status flag
#
sub getEmailAttributes ($@) {
    
    my ($commentField,@fieldDiffs) = @_;
    my (@flags,@uniqueFlags,%alreadySeen) = ();
    
    foreach my $ref (@fieldDiffs) {
        my ($who, $fieldName, $when, $old, $new) = (@$ref);
        
        #print qq{field: $fieldName $new<br>};
        
        # the STATUS will be flagged for Severity, Status and 
        # Priority changes
        #
        if ( $fieldName eq 'Status') {
            if ($new eq 'RESOLVED' || $new eq 'VERIFIED') {
                push (@flags, 'Resolved');
            }
        }
        elsif ( $fieldName eq 'Severity' || $fieldName eq 'Status' ||
                $fieldName eq 'Priority' ) {
            push (@flags, 'Status');
        } elsif ( $fieldName eq 'Keywords') {
            push (@flags, 'Keywords');
        } elsif ( $fieldName eq 'CC') {
            push (@flags, 'CC');
        }
430 431 432 433 434 435 436 437 438 439

        # These next few lines are for finding out who's been added
        # to the Owner, QA, CC, etc. fields.  It does not effect
        # the @flags array at all, but is run here because it does
        # effect filtering later and we're already in the loop.
        if ($fieldName eq 'Owner') {
            push (@{$force{'Owner'}}, $new);
        } elsif ($fieldName eq 'QAContact') {
           push (@{$force{'QAContact'}}, $new);
        } elsif ($fieldName eq 'CC') {
440
            my @added = split (/[ ,]/, $new);
441 442
            push (@{$force{'CClist'}}, @added);
        }
443 444 445 446 447
    }
    
    if ( $commentField =~ /Created an attachment \(/ ) {
        push (@flags, 'Attachments');
    }
448
    elsif ( ($commentField ne '') && !(scalar(@flags) == 1 && $flags[0] eq 'Resolved')) {
449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480
        push (@flags, 'Comments');
    }
    
    # default fallthrough for any unflagged change is 'Other'
    if ( @flags == 0 && @fieldDiffs != 0 ) {
        push (@flags, 'Other');
    }
    
    # only need one flag per attribute type
    foreach my $flag (@flags) {
        if ( !($alreadySeen{$flag}) ) {
            push(@uniqueFlags,$flag);
            $alreadySeen{$flag}++;
        }
    }
    #print "\nEmail Attributes: ", join(' ,',@uniqueFlags), "<br>\n";
    
    # catch-all default, just in case the above logic is faulty
    if ( @uniqueFlags == 0) {
        push (@uniqueFlags, 'Comments');
    }
    
    return @uniqueFlags;
}

sub filterEmailGroup ($$$) {
    
    my ($emailGroup,$refAttributes,$emailList) = @_;
    my @emailAttributes = @$refAttributes;
    my @emailList = split(/,/,$emailList);
    my @filteredList = ();
    
481 482 483 484 485

    # the force list for this email group needs to be checked as well
    #
    push @emailList, @{$force{$emailGroup}};

486 487 488 489
    # 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")) {
490 491 492 493 494 495 496 497 498 499 500 501
        my @watchers;
        foreach my $person(@emailList) {
            my $personId = DBname_to_id($person);
            SendSQL("SELECT watcher FROM watch WHERE watched = $personId");
            while(MoreSQLData()) {
                my ($watcher) = FetchSQLData();
                if ($watcher) {
                    push (@watchers, DBID_to_name($watcher));
                }
            }
        }
        push(@emailList, @watchers);
502 503 504
    }


505 506 507 508 509 510
    foreach my $person (@emailList) {
        
        my $lastCount = @filteredList;

        if ( $person eq '' ) { next; }

511
        my $userid = DBname_to_id($person);
512

513
        if ( ! $userid ) {
514 515 516 517
            push(@filteredList,$person);
            next;
        }
        
518
        SendSQL("SELECT emailflags FROM profiles WHERE " .
519
                "userid = $userid" );
520

521
        my ($userFlagString) = FetchSQLData();
522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541
        
        # If the sender doesn't want email, exclude them from list
        
        if (lc($person) eq $nametoexclude) {
            
            if ( defined ($userFlagString) && 
                 $userFlagString =~ /ExcludeSelf\~on/ ) {
                
                push (@excludedAddresses,$person);
                next;
            }
        }
        
        # if the users database entry is empty, send them all email
        # by default (they have not accessed userprefs.cgi recently).
        
        if ( !defined($userFlagString) || !($userFlagString =~ /email/) ) {
            push(@filteredList,$person);
        }
        else {
542 543 544 545 546 547 548 549

            # the 255 param is here, because without a third param, 
            # split will trim any trailing null fields, which causes perl 
            # to eject lots of warnings.  any suitably large number would 
            # do.
                
            my %userFlags = split(/~/, $userFlagString, 255);

550 551 552
            # The default condition is to send each person email.
            # If we match the email attribute with the user flag, and
            # they do not want email, then remove them from the list.
553 554 555

            push(@filteredList,$person);            

556 557
            my $detectedOn = 0;
            
558 559 560 561
            foreach my $attribute (@emailAttributes) {

                my $matchName = 'email' . $emailGroup . $attribute;
                
562 563 564 565 566 567 568 569 570 571
                # **** Kludge... quick and dirty fix for 2.12
                #      http://bugzilla.mozilla.org/show_bug.cgi?id=73665
                # If this pref is new (it's been added since this user
                # last updated their filtering prefs, $userFlags{$matchName}
                # will be undefined.  This should be considered a match
                # so that new prefs will default to 'on'
                if (!defined($userFlags{$matchName})) {
                    $detectedOn = 1;
                }

572 573
                while ((my $flagName, my $flagValue) = each %userFlags) {
                    
574 575 576
                    if ($flagName !~ /$emailGroup/) { 
                        next; 
                    }
577

578 579 580 581
                    if ($flagName eq $matchName){
                        if ($flagValue eq 'on') {
                            $detectedOn = 1;
                        }
582
                    }
583 584 585 586 587

                } # for each userFlag

            } # for each email attribute

588 589 590 591 592 593 594
            # if the current flag hasn't been detected on at least once, 
            # this person gets filtered from this group.
            #
            if (! $detectedOn) {
                pop(@filteredList);
            }

595 596 597 598 599 600
            # check to see if the person was added to or removed from  
            # this email group.
            # Note: This was originally written as only removed from
            # and was rewritten to be Added/Removed, but for simplicity
            # sake, the name "Removeme" wasn't changed.
            # http://bugzilla.mozilla.org/show_bug.cgi?id=71912 
601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622

            if ( grep ($_ eq $person, @{$force{$emailGroup}} ) ) {

                # if so, see if they want mail about that
                #
                if ( $userFlags{'email' . $emailGroup . 'Removeme'} eq 'on' ) {

                    # we definitely want mail sent to this person, since
                    # inclusion on a mail takes precedence over the previous
                    # exclusion

                    # have they been filtered for some other reason?
                    #
                    if (@filteredList == $lastCount) {
                        
                        # if so, put them back
                        #
                        push (@filteredList, $person);
                    }
                }
            }

623 624
        } # if $userFlagString is valid

625 626 627
        # has the person been moved off the filtered list?
        #
        if (@filteredList == $lastCount ) {
628

629 630
            # mark them as excluded
            #
631
            push (@excludedAddresses,$person);
632 633
        } 
            
634 635 636 637 638
    } # for each person

    return @filteredList;
}

639
sub NewProcessOnePerson ($$$$$$$$$$$$) {
640
    my ($person, $count, $hlRef, $reasonsRef, $valueRef, $dmhRef, $fdRef, $difftext, 
641
        $newcomments, $start, $id, $depbugsRef) = @_;
642

643 644
    my %values = %$valueRef;
    my @headerlist = @$hlRef;
645
    my @reasons = @$reasonsRef;
646 647
    my %defmailhead = %$dmhRef;
    my %fielddescription = %$fdRef;
648 649
    my @depbugs = @$depbugsRef;
    
650 651 652
    if ($seen{$person}) {
      return;
    }
653 654 655 656

    if ($nomail{$person}) {
      return;
    }
657

658
        
659
    SendSQL("SELECT userid, groupset " .
660
            "FROM profiles WHERE login_name = " . SqlQuote($person));
661
    my ($userid, $groupset) =  (FetchSQLData());
662

663
    $seen{$person} = 1;
664

665 666
    detaint_natural($userid);
    detaint_natural($groupset);
667

668 669 670
    # if this person doesn't have permission to see info on this bug, 
    # return.
    #
671
    # XXX - This currently means that if a bug is suddenly given
672 673 674 675
    # more restrictive permissions, people without those permissions won't
    # see the action of restricting the bug itself; the bug will just 
    # quietly disappear from their radar.
    #
676
    return unless CanSeeBug($id, $userid, $groupset);
677
    
678 679 680 681 682 683 684 685 686
    # We shouldn't send changedmail if this is a dependency mail, and any of 
    # the depending bugs is not visible to the user.
    foreach my $dep_id (@depbugs) {
        my $save_id = $dep_id;
        detaint_natural($dep_id) || warn("Unexpected Error: \@depbugs contains a non-numeric value: '$save_id'")
                                 && return;
        return unless CanSeeBug($dep_id, $userid, $groupset);
    }

687 688 689 690 691 692 693
    my %mailhead = %defmailhead;
    
    my $head = "";
    
    foreach my $f (@headerlist) {
      if ($mailhead{$f}) {
        my $value = $values{$f};
694 695
        # If there isn't anything to show, don't include this header
        if (! $value) {
696 697 698 699 700 701 702 703 704 705 706 707
          next;
        }
        my $desc = $fielddescription{$f};
        $head .= FormatDouble($desc, $value);
      }
    }
    
    if ($difftext eq "" && $newcomments eq "") {
      # Whoops, no differences!
      return;
    }
    
708
    my $reasonsbody = "------- You are receiving this mail because: -------\n";
709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729

    if (scalar(@reasons) == 0) {
        $reasonsbody .= "Whoops!  I have no idea!\n";
    } else {
        foreach my $reason (@reasons) {
            if ($reason eq 'AssignedTo') {
                $reasonsbody .= "You are the assignee for the bug, or are watching the assignee.\n";
            } elsif ($reason eq 'Reporter') {
                $reasonsbody .= "You reported the bug, or are watching the reporter.\n";
            } elsif ($reason eq 'QAContact') {
                $reasonsbody .= "You are the QA contact for the bug, or are watching the QA contact.\n";
            } elsif ($reason eq 'CC') {
                $reasonsbody .= "You are on the CC list for the bug, or are watching someone who is.\n";
            } elsif ($reason eq 'Voter') {
                $reasonsbody .= "You are a voter for the bug, or are watching someone who is.\n";
            } else {
                $reasonsbody .= "Whoops!  There is an unknown reason!\n";
            }
        }
    }

730 731 732
    my $isnew = ($start !~ m/[1-9]/);
    
    my %substs;
733

734 735 736 737 738 739
    # If an attachment was created, then add an URL. (Note: the 'g'lobal
    # replace should work with comments with multiple attachments.)

    if ( $newcomments =~ /Created an attachment \(/ ) {

        my $showattachurlbase =
740
            Param('urlbase') . "attachment.cgi?id=";
741

742
        $newcomments =~ s/(Created an attachment \(id=([0-9]+)\))/$1\n --> \(${showattachurlbase}$2&action=view\)/g;
743 744
    }

745
    $person .= Param('emailsuffix');
746 747 748 749 750
# 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.
751
    $substs{"neworchanged"} = $isnew ? 'New: ' : '';
752 753 754 755 756 757 758 759 760
    $substs{"to"} = $person;
    $substs{"cc"} = '';
    $substs{"bugid"} = $id;
    if ($isnew) {
      $substs{"diffs"} = $head . "\n\n" . $newcomments;
    } else {
      $substs{"diffs"} = $difftext . "\n\n" . $newcomments;
    }
    $substs{"summary"} = $values{'short_desc'};
761 762
    $substs{"reasonsheader"} = join(" ", @reasons);
    $substs{"reasonsbody"} = $reasonsbody;
763 764 765 766
    
    my $template = Param("newchangedmail");
    
    my $msg = PerformSubsts($template, \%substs);
767 768 769

    my $sendmailparam = "-ODeliveryMode=deferred";
    if (Param("sendmailnow")) {
770
       $sendmailparam = "";
771
    }
772 773

    if ($enableSendMail == 1) {
774
    open(SENDMAIL, "|/usr/lib/sendmail $sendmailparam -t -i") ||
775 776 777 778
      die "Can't open sendmail";
    
    print SENDMAIL trim($msg) . "\n";
    close SENDMAIL;
779
    }
780
    push(@sentlist, $person);
781
    return 1;
782 783
}

784 785 786
# Code starts here

ConnectToDatabase();
787 788 789
# Set Taint mode for the SQL
$::db->{Taint} = 1;
# ^^^ Taint mode is still a work in progress...
790
GetVersionTable();
791 792 793

if (open(FID, "<data/nomail")) {
    while (<FID>) {
794
        $nomail{trim($_)} = 1;
795 796 797 798
    }
    close FID;
}

799
if ($#ARGV >= 0 && $ARGV[0] eq "regenerate") {
800
    print "Regenerating is no longer required or supported\n";
801 802 803
    exit;
}

804
if ($#ARGV >= 0 && $ARGV[0] eq "-forcecc") {
805 806
    shift(@ARGV);
    foreach my $i (split(/,/, shift(@ARGV))) {
807
        push(@{$force{'CClist'}}, trim($i));
808 809 810
    }
}

811 812 813 814 815 816 817 818 819 820
if ($#ARGV >= 0 && $ARGV[0] eq "-forceowner") {
    shift(@ARGV);
    @{$force{'Owner'}} = (trim(shift(@ARGV)));
}

if ($#ARGV >= 0 && $ARGV[0] eq "-forceqacontact") {
    shift(@ARGV);
    @{$force{'QAcontact'}} = (trim(shift(@ARGV)));
}

821 822 823 824 825
if ($#ARGV >= 0 && $ARGV[0] eq "-forcereporter") {
    shift(@ARGV);
    @{$force{'Reporter'}} = trim(shift(@ARGV));
}

826
if (($#ARGV < 0) || ($#ARGV > 1)) {
827 828
    print "Usage:\n processmail {bugid} {nametoexclude} " . 
      "[-forcecc list,of,users]\n             [-forceowner name] " .
829
      "[-forceqacontact name]\n             [-forcereporter name]\nor\n" .
830
      " processmail rescanall\n";
831 832 833
    exit;
}

834
if ($#ARGV == 1) {
835
    $nametoexclude = lc($ARGV[1]);
836 837
}

838
if ($ARGV[0] eq "rescanall") {
839 840
    print "Collecting bug ids...\n";
    SendSQL("select bug_id, lastdiffed, delta_ts from bugs where lastdiffed < delta_ts AND delta_ts < date_sub(now(), INTERVAL 30 minute) order by bug_id");
841 842
    my @list;
    while (my @row = FetchSQLData()) {
843 844 845 846 847
        my $time = $row[2];
        if ($time =~ /^(\d\d\d\d)(\d\d)(\d\d)(\d\d)(\d\d)(\d\d)$/) {
            $time = "$1-$2-$3 $4:$5:$6";
        }
        print STDERR "Bug $row[0] has unsent mail. lastdiffed is $row[1], delta_ts is $time.\n";
848 849
        push @list, $row[0];
    }
850 851 852 853 854 855
    if (scalar(@list) > 0) {
        print STDERR scalar(@list) . " bugs found with possibly unsent mail\n";
        print STDERR "Updating bugs, sending mail if required\n";
    } else {
        print "All appropriate mail appears to have been sent\n"
    }
856
    foreach my $id (@list) {
857 858 859
        if (detaint_natural($id)) {
            ProcessOneBug($id);
        }
860 861
    }
} else {
862 863 864 865 866 867 868 869
    my $bugnum;
    if ($ARGV[0] =~ m/^([1-9][0-9]*)$/) {
        $bugnum = $1;
    } else {
        print "Error calling processmail (bug id is not an integer)<br>\n";
        exit;
    }
    ProcessOneBug($bugnum);
870
}
871

872
exit;