]> git.donarmstrong.com Git - debbugs.git/blob - scripts/service.in
merge changes from da source
[debbugs.git] / scripts / service.in
1 #!/usr/bin/perl
2 # $Id: service.in,v 1.118 2005/10/19 01:22:14 don Exp $
3 #
4 # Usage: service <code>.nn
5 # Temps:  incoming/P<code>.nn
6
7 use File::Copy;
8 use MIME::Parser;
9 use Debbugs::MIME qw(decode_rfc1522 encode_rfc1522);
10 use Debbugs::Mail qw(send_mail_message);
11 use Debbugs::User;
12
13 $config_path = '/etc/debbugs';
14 $lib_path = '/usr/lib/debbugs';
15
16 require "$config_path/config";
17 require "$lib_path/errorlib";
18 $ENV{'PATH'} = $lib_path.':'.$ENV{'PATH'};
19
20 chdir("$gSpoolDir") || die "chdir spool: $!\n";
21
22 # open(DEBUG,">&4");
23 open DEBUG, ">/dev/null";
24 $debug = 0;
25 umask(002);
26
27 $_=shift;
28 m/^[RC]\.\d+$/ || &quit("bad argument");
29 $control= m/C/;
30 $nn= $_;
31 if (!rename("incoming/G$nn","incoming/P$nn")) {
32     $_=$!.'';  m/no such file or directory/i && exit 0;
33     &quit("renaming to lock: $!");
34 }    
35
36 open(M,"incoming/P$nn");
37 @log=<M>;
38 @msg=@log;
39 close(M);
40
41 chomp @msg;
42
43 print "###\n",join("##\n",@msg),"\n###\n" if $debug;
44
45 my $parser = new MIME::Parser;
46 mkdir "$gSpoolDir/mime.tmp", 0777;
47 $parser->output_under("$gSpoolDir/mime.tmp");
48 my $entity = eval { $parser->parse_data(join('',@log)) };
49
50 # header and decoded body respectively
51 my (@headerlines, @bodylines);
52 # Bug numbers to send e-mail to, hash so that we don't send to the
53 # same bug twice.
54 my (%bug_affected);
55
56 if ($entity and $entity->head->tags) {
57     @headerlines = @{$entity->head->header};
58     chomp @headerlines;
59
60     my $entity_body = getmailbody($entity);
61     @bodylines = $entity_body ? $entity_body->as_lines() : ();
62     chomp @bodylines;
63 } else {
64     # Legacy pre-MIME code, kept around in case MIME::Parser fails.
65     my $i;
66     for ($i = 0; $i <= $#msg; $i++) {
67         $_ = $msg[$i];
68         last unless length($_);
69         while ($msg[$i+1] =~ m/^\s/) {
70             $i++;
71             $_ .= "\n".$msg[$i];
72         }
73         push @headerlines, $_;
74     }
75
76     @bodylines = @msg[$i..$#msg];
77 }
78
79 for (@headerlines) {
80     $_ = decode_rfc1522($_);
81     s/\n\s/ /g;
82     print ">$_<\n" if $debug;
83     if (s/^(\S+):\s*//) {
84         my $v = lc $1;
85         print ">$v=$_<\n" if $debug;
86         $header{$v} = $_;
87     } else {
88         print "!>$_<\n" if $debug;
89     }
90 }
91
92 # Strip off RFC2440-style PGP clearsigning.
93 if (@bodylines and $bodylines[0] =~ /^-----BEGIN PGP SIGNED/) {
94     shift @bodylines while @bodylines and length $bodylines[0];
95     shift @bodylines while @bodylines and $bodylines[0] !~ /\S/;
96     for my $findsig (0 .. $#bodylines) {
97         if ($bodylines[$findsig] =~ /^-----BEGIN PGP SIGNATURE/) {
98             $#bodylines = $findsig - 1;
99             last;
100         }
101     }
102     map { s/^- // } @bodylines;
103 }
104
105 grep(s/\s+$//,@bodylines);
106
107 print "***\n",join("\n",@bodylines),"\n***\n" if $debug;
108
109 if (defined $header{'resent-from'} && !defined $header{'from'}) {
110     $header{'from'} = $header{'resent-from'};
111 }
112
113 defined($header{'from'}) || &quit("no From header");
114
115 delete $header{'reply-to'} 
116         if ( defined($header{'reply-to'}) && $header{'reply-to'} =~ m/^\s*$/ );
117
118 if ( defined($header{'reply-to'}) && $header{'reply-to'} ne "" ) {
119     $replyto = $header{'reply-to'};
120 } else {
121     $replyto = $header{'from'};
122 }
123
124 $controlrequestaddr= $control ? "control\@$gEmailDomain" : "request\@$gEmailDomain";
125 $transcript='';
126 &transcript("Processing commands for $controlrequestaddr:\n\n");
127
128 $dl= 0;
129 $state= 'idle';
130 $lowstate= 'idle';
131 $mergelowstate= 'idle';
132 $midix=0;    
133 $extras="";
134
135 my $user = $replyto;
136 $user =~ s/,.*//;
137 $user =~ s/^.*<(.*)>.*$/$1/;
138 $user =~ s/[(].*[)]//;
139 $user =~ s/^\s*(\S+)\s+.*$/$1/;
140 $user = "" unless (Debbugs::User::is_valid_user($user));
141
142 my $quickabort = 0;
143
144 my $fuckheads = "(" . join("|", @gFuckheads) . ")";
145 if (@gFuckheads and $replyto =~ m/$fuckheads/) {
146         &transcript("This service is unavailable.\n\n");
147         $quickabort = 1;
148 }
149
150 my %limit_pkgs = ();
151 my %clonebugs = ();
152 my @bcc = ();
153
154 sub addbcc {
155     push @bcc, $_[0] unless grep { $_ eq $_[0] } @bcc;
156 }
157
158 for ($procline=0; $procline<=$#bodylines; $procline++) {
159     $state eq 'idle' || print "$state ?\n";
160     $lowstate eq 'idle' || print "$lowstate ?\n";
161     $mergelowstate eq 'idle' || print "$mergelowstate ?\n";
162     if ($quickabort) {
163          &transcript("Stopping processing here.\n\n");
164          last;
165     }
166     $_= $bodylines[$procline]; s/\s+$//;
167     next unless m/\S/;
168     &transcript("> $_\n");
169     next if m/^\s*\#/;
170     $action= '';
171     if (m/^stop/i || m/^quit/i || m/^--/ || m/^thank/i || m/^kthxbye/i) {
172         &transcript("Stopping processing here.\n\n");
173         last;
174     } elsif (m/^debug\s+(\d+)$/i && $1 >= 0 && $1 <= 1000) {
175         $dl= $1+0;
176         &transcript("Debug level $dl.\n\n");
177     } elsif (m/^(send|get)\s+\#?(\d{2,})$/i) {
178         $ref= $2+0;
179         &sendlynxdoc("bugreport.cgi?bug=$ref","logs for $gBug#$ref");
180     } elsif (m/^send-detail\s+\#?(\d{2,})$/i) {
181         $ref= $1+0;
182         &sendlynxdoc("bugreport.cgi?bug=$ref&boring=yes",
183                      "detailed logs for $gBug#$ref");
184     } elsif (m/^index(\s+full)?$/i) {
185         &transcript("This BTS function is currently disabled, sorry.\n\n");
186         $ok++; # well, it's not really ok, but it fixes #81224 :)
187     } elsif (m/^index-summary\s+by-package$/i) {
188         &transcript("This BTS function is currently disabled, sorry.\n\n");
189         $ok++; # well, it's not really ok, but it fixes #81224 :)
190     } elsif (m/^index-summary(\s+by-number)?$/i) {
191         &transcript("This BTS function is currently disabled, sorry.\n\n");
192         $ok++; # well, it's not really ok, but it fixes #81224 :)
193     } elsif (m/^index(\s+|-)pack(age)?s?$/i) {
194         &sendlynxdoc("pkgindex.cgi?indexon=pkg",'index of packages');
195     } elsif (m/^index(\s+|-)maints?$/i) {
196         &sendlynxdoc("pkgindex.cgi?indexon=maint",'index of maintainers');
197     } elsif (m/^index(\s+|-)maint\s+(\S+)$/i) {
198         $maint = $2;
199         &sendlynxdoc("pkgreport.cgi?maint=" . urlsanit($maint),
200                      "$gBug list for maintainer \`$maint'");
201         $ok++;
202     } elsif (m/^index(\s+|-)pack(age)?s?\s+(\S.*\S)$/i) {
203         $package = $+;
204         &sendlynxdoc("pkgreport.cgi?pkg=" . urlsanit($package),
205                      "$gBug list for package $package");
206         $ok++;
207     } elsif (m/^send-unmatched(\s+this|\s+-?0)?$/i) {
208         &transcript("This BTS function is currently disabled, sorry.\n\n");
209         $ok++; # well, it's not really ok, but it fixes #81224 :)
210     } elsif (m/^send-unmatched\s+(last|-1)$/i) {
211         &transcript("This BTS function is currently disabled, sorry.\n\n");
212         $ok++; # well, it's not really ok, but it fixes #81224 :)
213     } elsif (m/^send-unmatched\s+(old|-2)$/i) {
214         &transcript("This BTS function is currently disabled, sorry.\n\n");
215         $ok++; # well, it's not really ok, but it fixes #81224 :)
216     } elsif (m/^getinfo\s+([\w-.]+)$/i) {
217         # the following is basically a Debian-specific kludge, but who cares
218         $req = $1;
219         if ($req =~ /^maintainers$/i && -f "$gConfigDir/Maintainers") {
220             &sendinfo("local", "$gConfigDir/Maintainers", "Maintainers file");
221         } elsif ($req =~ /^override\.(\w+)\.([\w-.]+)$/i) {
222             $req =~ s/.gz$//;
223             &sendinfo("ftp.d.o", "$req", "override file for $2 part of $1 distribution");
224         } elsif ($req =~ /^pseudo-packages\.(description|maintainers)$/i && -f "$gConfigDir/$req") {
225             &sendinfo("local", "$gConfigDir/$req", "$req file");
226         } else {
227             &transcript("Info file $req does not exist.\n\n");
228         }
229     } elsif (m/^help/i) {
230         &sendhelp;
231         &transcript("\n");
232         $ok++;
233     } elsif (m/^refcard/i) {
234         &sendtxthelp("bug-mailserver-refcard.txt","mail servers' reference card");
235     } elsif (m/^subscribe/i) {
236         &transcript(<<END);
237 There is no $gProject $gBug mailing list.  If you wish to review bug reports
238 please do so via http://$gWebDomain/ or ask this mail server
239 to send them to you.
240 soon: MAILINGLISTS_TEXT
241 END
242     } elsif (m/^unsubscribe/i) {
243         &transcript(<<END);
244 soon: UNSUBSCRIBE_TEXT
245 soon: MAILINGLISTS_TEXT
246 END
247     } elsif (m/^user\s+(\S+)\s*$/i) {
248         my $newuser = $1;
249         if (Debbugs::User::is_valid_user($newuser)) {
250             my $olduser = ($user ne "" ? " (was $user)" : "");
251             &transcript("Setting user to $newuser$olduser.\n");
252             $user = $newuser;
253         } else {
254             &transcript("Selected user id ($newuser) invalid, sorry\n");
255             $user = "";
256         }
257     } elsif (m/^usercategory\s+(\S+)(\s+\[hidden\])?\s*$/i) {
258         $ok++;
259         my $catname = $1;
260         my $hidden = ($2 ne "");
261
262         my $prefix = "";
263         my @cats;
264         my $bad = 0;
265         my $catsec = 0;
266         while (++$procline <= $#bodylines) {
267             unless ($bodylines[$procline] =~ m/^\s*([*+])\s*(\S.*)$/) {
268                 $procline--;
269                 last;
270             }
271             &transcript("> $bodylines[$procline]\n");
272             next if $bad;
273             my ($o, $txt) = ($1, $2);
274             if ($#cats == -1 && $o eq "+") {
275                 &transcript("User defined category specification must start with a category name. Skipping.\n\n");
276                 $bad = 1;
277                 next;
278             }
279             if ($o eq "+") {
280                 unless (ref($cats[-1]) eq "HASH") {
281                     $cats[-1] = { "nam" => $cats[-1], 
282                                   "pri" => [], "ttl" => [] };
283                 }
284                 $catsec++;
285                 my ($desc, $ord, $op);
286                 if ($txt =~ m/^(.*\S)\s*\[((\d+):\s*)?\]\s*$/) {
287                     $desc = $1; $ord = $3; $op = "";
288                 } elsif ($txt =~ m/^(.*\S)\s*\[((\d+):\s*)?(\S+)\]\s*$/) {
289                     $desc = $1; $ord = $3; $op = $4;
290                 } elsif ($txt =~ m/^([^[\s]+)\s*$/) {
291                     $desc = ""; $op = $1;
292                 } else {
293                     &transcript("Unrecognised syntax for category section. Skipping.\n\n");
294                     $bad = 1;
295                     next;
296                 }
297                 $ord = 999 unless defined $ord;
298
299                 if ($op) {
300                     push @{$cats[-1]->{"pri"}}, $prefix . $op;
301                     push @{$cats[-1]->{"ttl"}}, $desc;
302                     push @ords, "$ord $catsec";
303                 } else {
304                     @cats[-1]->{"def"} = $desc;
305                     push @ords, "$ord DEF";
306                     $catsec--;
307                 }
308                 @ords = sort { my ($a1, $a2, $b1, $b2) = split / /, "$a $b";
309                                $a1 <=> $b1 || $a2 <=> $b2; } @ords;
310                 $cats[-1]->{"ord"} = [map { m/^.* (\S+)/; $1 eq "DEF" ? $catsec + 1 : $1 } @ords];
311             } elsif ($o eq "*") {
312                 $catsec = 0;
313                 my ($name);
314                 if ($txt =~ m/^(.*\S)(\s*\[(\S+)\])\s*$/) {
315                     $name = $1; $prefix = $3;
316                 } else {
317                     $name = $txt; $prefix = "";
318                 }
319                 push @cats, $name;
320             }
321         }
322         # XXX: got @cats, now do something with it
323         my $u = Debbugs::User::get_user($user);
324         if (@cats) {
325             &transcript("Added usercategory $catname.\n\n");
326             $u->{"categories"}->{$catname} = [ @cats ];
327         } else {
328             &transcript("Removed usercategory $catname.\n\n");
329             delete $u->{"categories"}->{$catname};
330         }
331         $u->write();
332     } elsif (m/^usertags?\s+\#?(-?\d+)\s+(([=+-])\s*)?(\S.*)?$/i) {
333         $ok++;
334         $ref = $1; $addsubcode = $3 || "+"; $tags = $4;
335         if ($user eq "") {
336             &transcript("No valid user selected\n");
337         } else {
338             my %ut;
339             Debbugs::User::read_usertags(\%ut, $user);
340             my @oldtags = (); my @newtags = (); my @badtags = ();
341             my %chtags;
342             for my $t (split /[,\s]+/, $tags) {
343                 if ($t =~ m/^[a-zA-Z0-9.+\@-]+$/) {
344                     $chtags{$t} = 1;
345                 } else {
346                     push @badtags, $t;
347                 }
348             }
349             if (@badtags) {
350                 &transcript("Ignoring illegal tag/s: ".join(', ', @badtags).".\nPlease use only alphanumerics, at, dot, plus and dash.\n");
351             }
352             for my $t (keys %chtags) {
353                 $ut{$t} = [] unless defined $ut{$t};
354             }
355             for my $t (keys %ut) {
356                 my %res = map { ($_, 1) } @{$ut{$t}};
357                 push @oldtags, $t if defined $res{$ref};
358                 my $addop = ($addsubcode eq "+" or $addsubcode eq "=");
359                 my $del = (defined $chtags{$t} ? $addsubcode eq "-" 
360                                                : $addsubcode eq "=");
361                 $res{$ref} = 1 if ($addop && defined $chtags{$t});
362                 delete $res{$ref} if ($del);
363                 push @newtags, $t if defined $res{$ref};
364                 $ut{$t} = [ sort { $a <=> $b } (keys %res) ];
365             }
366             if (@oldtags == 0) {
367                 &transcript("There were no usertags set.\n");
368             } else {
369                 &transcript("Usertags were: " . join(" ", @oldtags) . ".\n");
370             }
371             &transcript("Usertags are now: " . join(" ", @newtags) . ".\n");
372             Debbugs::User::write_usertags(\%ut, $user);
373         }
374     } elsif (!$control) {
375         &transcript(<<END);
376 Unknown command or malformed arguments to command.
377 (Use control\@$gEmailDomain to manipulate reports.)
378
379 END
380         if (++$unknowns >= 3) {
381             &transcript("Too many unknown commands, stopping here.\n\n");
382             last;
383         }
384 #### "developer only" ones start here
385     } elsif (m/^close\s+\#?(-?\d+)(?:\s+(\d.*))?$/i) {
386         $ok++;
387         $ref= $1;
388         $bug_affected{$ref}=1;
389         $version= $2;
390         if (&setbug) {
391             &transcript("'close' is deprecated; see http://$gWebDomain/Developer$gHTMLSuffix#closing.\n");
392             if (length($data->{done}) and not defined($version)) {
393                 &transcript("$gBug is already closed, cannot re-close.\n\n");
394                 &nochangebug;
395             } else {
396                 $action= "$gBug " .
397                     (defined($version) ?
398                         "marked as fixed in version $version" :
399                         "closed") .
400                     ", send any further explanations to $data->{originator}";
401                 do {
402                     &addmaintainers($data);
403                                         if ( length( $gDoneList ) > 0 && length( $gListDomain ) >
404                                         0 ) { &addccaddress("$gDoneList\@$gListDomain"); }
405                     $data->{done}= $replyto;
406                     my @keywords= split ' ', $data->{keywords};
407                     if (grep $_ eq 'pending', @keywords) {
408                         $extramessage= "Removed pending tag.\n";
409                         $data->{keywords}= join ' ', grep $_ ne 'pending',
410                                                 @keywords;
411                     }
412                     addfixedversions($data, $data->{package}, $version, 'binary');
413
414                     $message= <<END;
415 From: $gMaintainerEmail ($gProject $gBug Tracking System)
416 To: $data->{originator}
417 Subject: $gBug#$ref acknowledged by developer
418          ($header{'subject'})
419 References: $header{'message-id'} $data->{msgid}
420 In-Reply-To: $data->{msgid}
421 Message-ID: <handler.$ref.$nn.notifdonectrl.$midix\@$gEmailDomain>
422 Reply-To: $ref\@$gEmailDomain
423 X-$gProject-PR-Message: they-closed-control $ref
424
425 This is an automatic notification regarding your $gBug report
426 #$ref: $data->{subject},
427 which was filed against the $data->{package} package.
428
429 It has been marked as closed by one of the developers, namely
430 $replyto.
431
432 You should be hearing from them with a substantive response shortly,
433 in case you haven't already. If not, please contact them directly.
434
435 $gMaintainer
436 (administrator, $gProject $gBugs database)
437
438 END
439                     &sendmailmessage($message,$data->{originator});
440                 } while (&getnextbug);
441             }
442         }
443     } elsif (m/^reassign\s+\#?(-?\d+)\s+(\S+)(?:\s+(\d.*))?$/i) {
444         $ok++;
445         $ref= $1; $newpackage= $2;
446         $bug_affected{$ref}=1;
447         $version= $3;
448         $newpackage =~ y/A-Z/a-z/;
449         if (&setbug) {
450             if (length($data->{package})) {
451                 $action= "$gBug reassigned from package \`$data->{package}'".
452                          " to \`$newpackage'.";
453             } else {
454                 $action= "$gBug assigned to package \`$newpackage'.";
455             }
456             do {
457                 &addmaintainers($data);
458                 $data->{package}= $newpackage;
459                 $data->{found_versions}= [];
460                 $data->{fixed_versions}= [];
461                 # TODO: what if $newpackage is a source package?
462                 addfoundversions($data, $data->{package}, $version, 'binary');
463                 &addmaintainers($data);
464             } while (&getnextbug);
465         }
466     } elsif (m/^reopen\s+\#?(-?\d+)$/i ? ($noriginator='', 1) :
467              m/^reopen\s+\#?(-?\d+)\s+\=$/i ? ($noriginator='', 1) :
468              m/^reopen\s+\#?(-?\d+)\s+\!$/i ? ($noriginator=$replyto, 1) :
469              m/^reopen\s+\#?(-?\d+)\s+(\S.*\S)$/i ? ($noriginator=$2, 1) : 0) {
470         $ok++;
471         $ref= $1;
472         $bug_affected{$ref}=1;
473         if (&setbug) {
474             if (@{$data->{fixed_versions}}) {
475                 &transcript("'reopen' is deprecated when a bug has been closed with a version;\nuse 'found' or 'submitter' as appropriate instead.\n");
476             }
477             if (!length($data->{done})) {
478                 &transcript("$gBug is already open, cannot reopen.\n\n");
479                 &nochangebug;
480             } else {
481                 $action=
482                     $noriginator eq '' ? "$gBug reopened, originator not changed." :
483                         "$gBug reopened, originator set to $noriginator.";
484                 do {
485                     &addmaintainers($data);
486                     $data->{originator}= $noriginator eq '' ?  $data->{originator} : $noriginator;
487                     $data->{fixed_versions}= [];
488                     $data->{done}= '';
489                 } while (&getnextbug);
490             }
491         }
492     } elsif (m/^found\s+\#?(-?\d+)(?:\s+(\d.*))?$/i) {
493         $ok++;
494         $ref= $1;
495         $version= $2;
496         if (&setbug) {
497             if (!length($data->{done}) and not defined($version)) {
498                 &transcript("$gBug is already open, cannot reopen.\n\n");
499                 &nochangebug;
500             } else {
501                 $action=
502                     defined($version) ?
503                         "$gBug marked as found in version $version." :
504                         "$gBug reopened.";
505                 do {
506                     &addmaintainers($data);
507                     # The 'done' field gets a bit weird with version
508                     # tracking, because a bug may be closed by multiple
509                     # people in different branches. Until we have something
510                     # more flexible, we set it every time a bug is fixed,
511                     # and clear it precisely when a found command is
512                     # received for the rightmost fixed-in version, which
513                     # equates to the most recent fixing of the bug, or when
514                     # a versionless found command is received.
515                     if (defined $version) {
516                         my $lastfixed =
517                             (reverse @{$data->{fixed_versions}})[0];
518                         # TODO: what if $data->{package} is a source package?
519                         addfoundversions($data, $data->{package}, $version, 'binary');
520                         if (defined $lastfixed and not grep { $_ eq $lastfixed } @{$data->{fixed_versions}}) {
521                             $data->{done} = '';
522                         }
523                     } else {
524                         # Versionless found; assume old-style "not fixed at
525                         # all".
526                         $data->{fixed_versions} = [];
527                         $data->{done} = '';
528                     }
529                 } while (&getnextbug);
530             }
531         }
532     } elsif (m/^notfound\s+\#?(-?\d+)\s+(\d.*)$/i) {
533         $ok++;
534         $ref= $1;
535         $version= $2;
536         if (&setbug) {
537             $action= "$gBug marked as not found in version $version.";
538             if (length($data->{done})) {
539                 $extramessage= "(By the way, this $gBug is currently marked as done.)\n";
540             }
541             do {
542                 &addmaintainers($data);
543                 removefoundversions($data, $data->{package}, $version, 'binary');
544             } while (&getnextbug);
545         }
546     } elsif (m/^submitter\s+\#?(-?\d+)\s+\!$/i ? ($newsubmitter=$replyto, 1) :
547              m/^submitter\s+\#?(-?\d+)\s+(\S.*\S)$/i ? ($newsubmitter=$2, 1) : 0) {
548         $ok++;
549         $ref= $1;
550         $bug_affected{$ref}=1;
551         if ($ref =~ m/^-\d+$/ && defined $clonebugs{$ref}) {
552             $ref = $clonebugs{$ref};
553         }
554         if (&getbug) {
555             if (&checkpkglimit) {
556                 &foundbug;
557                 &addmaintainers($data);
558                 $oldsubmitter= $data->{originator};
559                 $data->{originator}= $newsubmitter;
560                 $action= "Changed $gBug submitter from $oldsubmitter to $newsubmitter.";
561                 &savebug;
562                 &transcript("$action\n");
563                 if (length($data->{done})) {
564                     &transcript("(By the way, that $gBug is currently marked as done.)\n");
565                 }
566                 &transcript("\n");
567                 $message= <<END;
568 From: $gMaintainerEmail ($gProject $gBug Tracking System)
569 To: $oldsubmitter
570 Subject: $gBug#$ref submitter address changed
571          ($header{'subject'})
572 References: $header{'message-id'} $data->{msgid}
573 In-Reply-To: $data->{msgid}
574 Message-ID: <handler.$ref.$nn.newsubmitter.$midix\@$gEmailDomain>
575 Reply-To: $ref\@$gEmailDomain
576 X-$gProject-PR-Message: submitter-changed $ref
577
578 The submitter address recorded for your $gBug report
579 #$ref: $data->{subject}
580 has been changed.
581
582 The old submitter address for this report was
583 $oldsubmitter.
584 The new submitter address is
585 $newsubmitter.
586
587 This change was made by
588 $replyto.
589 If it was incorrect, please contact them directly.
590
591 $gMaintainer
592 (administrator, $gProject $gBugs database)
593
594 END
595                 &sendmailmessage($message,$oldsubmitter);
596             } else {
597                 &cancelbug;
598             }
599         } else {
600             &notfoundbug;
601         }
602     } elsif (m/^forwarded\s+\#?(-?\d+)\s+(\S.*\S)$/i) {
603         $ok++;
604         $ref= $1; $whereto= $2;
605         $bug_affected{$ref}=1;
606         if (&setbug) {
607             if (length($data->{forwarded})) {
608     $action= "Forwarded-to-address changed from $data->{forwarded} to $whereto.";
609             } else {
610     $action= "Noted your statement that $gBug has been forwarded to $whereto.";
611             }
612             if (length($data->{done})) {
613                 $extramessage= "(By the way, this $gBug is currently marked as done.)\n";
614             }
615             do {
616                 &addmaintainers($data);
617                 if (length($gForwardList)>0 && length($gListDomain)>0 ) {
618                      &addccaddress("$gForwardList\@$gListDomain"); 
619                 }
620                 $data->{forwarded}= $whereto;
621             } while (&getnextbug);
622         }
623     } elsif (m/^notforwarded\s+\#?(-?\d+)$/i) {
624         $ok++;
625         $ref= $1;
626         $bug_affected{$ref}=1;
627         if (&setbug) {
628             if (!length($data->{forwarded})) {
629                 &transcript("$gBug is not marked as having been forwarded.\n\n");
630                 &nochangebug;
631             } else {
632     $action= "Removed annotation that $gBug had been forwarded to $data->{forwarded}.";
633                 do {
634                     &addmaintainers($data);
635                     $data->{forwarded}= '';
636                 } while (&getnextbug);
637             }
638         }
639     } elsif (m/^severity\s+\#?(-?\d+)\s+([-0-9a-z]+)$/i ||
640         m/^priority\s+\#?(-?\d+)\s+([-0-9a-z]+)$/i) {
641         $ok++;
642         $ref= $1;
643         $bug_affected{$ref}=1;
644         $newseverity= $2;
645         if (!grep($_ eq $newseverity, @gSeverityList, "$gDefaultSeverity")) {
646             &transcript("Severity level \`$newseverity' is not known.\n".
647                         "Recognized are: $gShowSeverities.\n\n");
648         } elsif (exists $gObsoleteSeverities{$newseverity}) {
649             &transcript("Severity level \`$newseverity' is obsolete. " .
650                         "$gObsoleteSeverities{$newseverity}\n\n");
651         } elsif (&setbug) {
652             $printseverity= $data->{severity};
653             $printseverity= "$gDefaultSeverity" if $printseverity eq '';
654             $action= "Severity set to \`$newseverity' from \`$printseverity'";
655             do {
656                 &addmaintainers($data);
657                 if (defined $gStrongList and isstrongseverity($newseverity)) {
658                     addbcc("$gStrongList\@$gListDomain");
659                 }
660                 $data->{severity}= $newseverity;
661             } while (&getnextbug);
662         }
663     } elsif (m/^tags?\s+\#?(-?\d+)\s+(([=+-])\s*)?(\S.*)?$/i) {
664         $ok++;
665         $ref = $1; $addsubcode = $3; $tags = $4;
666         $bug_affected{$ref}=1;
667         $addsub = "add";
668         if (defined $addsubcode) {
669             $addsub = "sub" if ($addsubcode eq "-");
670             $addsub = "add" if ($addsubcode eq "+");
671             $addsub = "set" if ($addsubcode eq "=");
672         }
673         my @okaytags = ();
674         my @badtags = ();
675         foreach my $t (split /[\s,]+/, $tags) {
676             if (!grep($_ eq $t, @gTags)) {
677                 push @badtags, $t;
678             } else {
679                 push @okaytags, $t;
680             }
681         }
682         if (@badtags) {
683             &transcript("Unknown tag/s: ".join(', ', @badtags).".\n".
684                         "Recognized are: ".join(' ', @gTags).".\n\n");
685         }
686         if (&setbug) {
687             if ($data->{keywords} eq '') {
688                 &transcript("There were no tags set.\n");
689             } else {
690                 &transcript("Tags were: $data->{keywords}\n");
691             }
692             if ($addsub eq "set") {
693                 $action= "Tags set to: " . join(", ", @okaytags);
694             } elsif ($addsub eq "add") {
695                 $action= "Tags added: " . join(", ", @okaytags);
696             } elsif ($addsub eq "sub") {
697                 $action= "Tags removed: " . join(", ", @okaytags);
698             }
699             do {
700                 &addmaintainers($data);
701                 $data->{keywords} = '' if ($addsub eq "set");
702                 # Allow removing obsolete tags.
703                 if ($addsub eq "sub") {
704                     foreach my $t (@badtags) {
705                         $data->{keywords} = join ' ', grep $_ ne $t, 
706                             split ' ', $data->{keywords};
707                     }
708                 }
709                 # Now process all other additions and subtractions.
710                 foreach my $t (@okaytags) {
711                     $data->{keywords} = join ' ', grep $_ ne $t, 
712                         split ' ', $data->{keywords};
713                     $data->{keywords} = "$t $data->{keywords}" unless($addsub eq "sub");
714                 }
715                 $data->{keywords} =~ s/\s*$//;
716             } while (&getnextbug);
717         }
718     } elsif (m/^(un)?block\s+\#?(-?\d+)\s+(by|with)\s+\s*(\S.*)?$/i) {
719         $ok++;
720         my $bugnum = $2; my $blockers = $4;
721         $addsub = "add";
722         $addsub = "sub" if ($1 eq "un");
723         
724         my @okayblockers;
725         my @badblockers;
726         foreach my $b (split /[\s,]+/, $blockers) {
727             $b=~s/^\#//;
728             if ($b=~/[0-9]+/) {
729                 $ref=$b;
730                 if (&getbug) {
731                     push @okayblockers, $b;
732
733                     # add to the list all bugs that are merged with $b,
734                     # because all of their data must be kept in sync
735                     @thisbugmergelist= split(/ /,$data->{mergedwith});
736                     &cancelbug;
737
738                     foreach $ref (@thisbugmergelist) {
739                         if (&getbug) {
740                            push @okayblockers, $ref;
741                            &cancelbug;
742                         }
743                     }
744                 }
745                 else {
746                     &notfoundbug;
747                     push @badblockers, $b;
748                 }
749             }
750             else {
751                 push @badblockers, $b;
752             }
753         }
754         if (@badblockers) {
755             &transcript("Unknown blocking bug/s: ".join(', ', @badblockers).".\n");
756         }
757         
758         $ref=$bugnum;
759         if (&setbug) {
760             if ($data->{blockedby} eq '') {
761                 &transcript("Was not blocked by any bugs.\n");
762             } else {
763                 &transcript("Was blocked by: $data->{blockedby}\n");
764             }
765             if ($addsub eq "set") {
766                 $action= "Blocking bugs set to: " . join(", ", @okayblockers);
767             } elsif ($addsub eq "add") {
768                 $action= "Blocking bugs added: " . join(", ", @okayblockers);
769             } elsif ($addsub eq "sub") {
770                 $action= "Blocking bugs removed: " . join(", ", @okayblockers);
771             }
772             my %removedblocks;
773             my %addedblocks;
774             do {
775                 &addmaintainers($data);
776                 my @oldblockerlist = split ' ', $data->{blockedby};
777                 $data->{blockedby} = '' if ($addsub eq "set");
778                 foreach my $b (@okayblockers) {
779                         $data->{blockedby} = manipset($data->{blockedby}, $b,
780                                 ($addsub ne "sub"));
781                 }
782
783                 foreach my $b (@oldblockerlist) {
784                         if (! grep { $_ eq $b } split ' ', $data->{blockedby}) {
785                                 push @{$removedblocks{$b}}, $ref;
786                         }
787                 }
788                 foreach my $b (split ' ', $data->{blockedby}) {
789                         if (! grep { $_ eq $b } @oldblockerlist) {
790                                 push @{$addedblocks{$b}}, $ref;
791                         }
792                 }
793             } while (&getnextbug);
794
795             # Now that the blockedby data is updated, change blocks data
796             # to match the changes.
797             foreach $ref (keys %addedblocks) {
798                 if (&getbug) {
799                     foreach my $b (@{$addedblocks{$ref}}) {
800                         $data->{blocks} = manipset($data->{blocks}, $b, 1);
801                     }
802                     &savebug;
803                 }
804             }
805             foreach $ref (keys %removedblocks) {
806                 if (&getbug) {
807                     foreach my $b (@{$removedblocks{$ref}}) {
808                         $data->{blocks} = manipset($data->{blocks}, $b, 0);
809                     }
810                     &savebug;
811                 }
812             }
813         }
814     } elsif (m/^retitle\s+\#?(-?\d+)\s+(\S.*\S)\s*$/i) {
815         $ok++;
816         $ref= $1; $newtitle= $2;
817         $bug_affected{$ref}=1;
818         if ($ref =~ m/^-\d+$/ && defined $clonebugs{$ref}) {
819             $ref = $clonebugs{$ref};
820         }
821         if (&getbug) {
822             if (&checkpkglimit) {
823                 &foundbug;
824                 &addmaintainers($data);
825                 $data->{subject}= $newtitle;
826                 $action= "Changed $gBug title.";
827                 &savebug;
828                 &transcript("$action\n");
829                 if (length($data->{done})) {
830                     &transcript("(By the way, that $gBug is currently marked as done.)\n");
831                 }
832                 &transcript("\n");
833             } else {
834                 &cancelbug;
835             }
836         } else {
837             &notfoundbug;
838         }
839     } elsif (m/^unmerge\s+\#?(-?\d+)$/i) {
840         $ok++;
841         $ref= $1;
842         $bug_affected{$ref} = 1;
843         if (&setbug) {
844             if (!length($data->{mergedwith})) {
845                 &transcript("$gBug is not marked as being merged with any others.\n\n");
846                 &nochangebug;
847             } else {
848                 $mergelowstate eq 'locked' || die "$mergelowstate ?";
849                 $action= "Disconnected #$ref from all other report(s).";
850                 @newmergelist= split(/ /,$data->{mergedwith});
851                 $discref= $ref;
852                 @bug_affected{@newmergelist} = 1 x @newmergelist;
853                 do {
854                     &addmaintainers($data);
855                     $data->{mergedwith}= ($ref == $discref) ? ''
856                         : join(' ',grep($_ ne $ref,@newmergelist));
857                 } while (&getnextbug);
858             }
859         }
860     } elsif (m/^merge\s+#?(-?\d+(\s+#?-?\d+)+)\s*$/i) {
861         $ok++;
862         my @tomerge= sort { $a <=> $b } split(/\s+#?/,$1);
863         my @newmergelist= ();
864         my %tags = ();
865         my %found = ();
866         my %fixed = ();
867         &getmerge;
868         while (defined($ref= shift(@tomerge))) {
869             &transcript("D| checking merge $ref\n") if $dl;
870             $ref+= 0;
871             if ($ref =~ m/^-\d+$/ && defined $clonebugs{$ref}) {
872                 $ref = $clonebugs{$ref};
873             }
874             next if grep($_ == $ref,@newmergelist);
875             if (!&getbug) { &notfoundbug; @newmergelist=(); last }
876             if (!&checkpkglimit) { &cancelbug; @newmergelist=(); last; }
877             &foundbug;
878             &transcript("D| adding $ref ($data->{mergedwith})\n") if $dl;
879             $mismatch= '';
880             &checkmatch('package','m_package',$data->{package});
881             &checkmatch('forwarded addr','m_forwarded',$data->{forwarded});
882             $data->{severity} = '$gDefaultSeverity' if $data->{severity} eq '';
883             &checkmatch('severity','m_severity',$data->{severity});
884             &checkmatch('blocks','m_blocks',$data->{blocks});
885             &checkmatch('blocked-by','m_blockedby',$data->{blockedby});
886             &checkmatch('done mark','m_done',length($data->{done}) ? 'done' : 'open');
887             &checkmatch('owner','m_owner',$data->{owner});
888             foreach my $t (split /\s+/, $data->{keywords}) { $tags{$t} = 1; }
889             foreach my $f (@{$data->{found_versions}}) { $found{$f} = 1; }
890             foreach my $f (@{$data->{fixed_versions}}) { $fixed{$f} = 1; }
891             if (length($mismatch)) {
892                 &transcript("Mismatch - only $gBugs in same state can be merged:\n".
893                             $mismatch."\n");
894                 &cancelbug; @newmergelist=(); last;
895             }
896             push(@newmergelist,$ref);
897             push(@tomerge,split(/ /,$data->{mergedwith}));
898             &cancelbug;
899         }
900         if (@newmergelist) {
901             @newmergelist= sort { $a <=> $b } @newmergelist;
902             $action= "Merged @newmergelist.";
903             delete @fixed{keys %found};
904             for $ref (@newmergelist) {
905                 &getbug || die "huh ?  $gBug $ref disappeared during merge";
906                 &addmaintainers($data);
907                 @bug_affected{@newmergelist} = 1 x @newmergelist;
908                 $data->{mergedwith}= join(' ',grep($_ != $ref,@newmergelist));
909                 $data->{keywords}= join(' ', keys %tags);
910                 $data->{found_versions}= [sort keys %found];
911                 $data->{fixed_versions}= [sort keys %fixed];
912                 &savebug;
913             }
914             &transcript("$action\n\n");
915         }
916         &endmerge;
917     } elsif (m/^forcemerge\s+\#?(-?\d+(?:\s+\#?-?\d+)+)\s*$/i) {
918         $ok++;
919         my @tomerge = split /\s+\#?/,$1;
920         my $master_bug = shift @tomerge;
921         my $master_bug_data;
922         @tomerge = ($master_bug, sort { $a <=> $b } @tomerge);
923         &transcript("D| force merging ".join(',',@tomerge)."\n") if $dl;
924         my @newmergelist= ();
925         my %tags = ();
926         my %found = ();
927         my %fixed = ();
928         # Here we try to do the right thing.
929         # First, if the bugs are in the same package, we merge all of the found, fixed, and tags.
930         # If not, we discard the found and fixed.
931         # Everything else we set to the values of the first bug.
932         &getmerge;
933         while (defined($ref= shift(@tomerge))) {
934             &transcript("D| checking merge $ref\n") if $dl;
935             $ref+= 0;
936             if ($ref =~ m/^-\d+$/ && defined $clonebugs{$ref}) {
937                 $ref = $clonebugs{$ref};
938             }
939             next if grep($_ == $ref,@newmergelist);
940             if (!&getbug) { &notfoundbug; @newmergelist=(); last }
941             if (!&checkpkglimit) { &cancelbug; @newmergelist=(); last; }
942             &foundbug;
943             &transcript("D| adding $ref ($data->{mergedwith})\n") if $dl;
944             $master_bug_data = $data if not defined $master_bug_data;
945             if ($data->{package} ne $master_bug_data->{package}) {
946                 &transcript("Mismatch - only $gBugs in the same package can be forcibly merged:\n".
947                             "$gBug $ref is not in the same package as $master_bug\n");
948                 &cancelbug; @newmergelist=(); last;
949             }
950             for my $t (split /\s+/,$data->{keywords}) {
951                  $tags{$t} = 1;
952             }
953             @found{@{$data->{found_versions}}} = (1) x @{$data->{found_versions}};
954             @fixed{@{$data->{fixed_versions}}} = (1) x @{$data->{fixed_versions}};
955             push(@newmergelist,$ref);
956             push(@tomerge,split(/ /,$data->{mergedwith}));
957             &cancelbug;
958         }
959         if (@newmergelist) {
960             @newmergelist= sort { $a <=> $b } @newmergelist;
961             $action= "Forcibly Merged @newmergelist.";
962             delete @fixed{keys %found};
963             for $ref (@newmergelist) {
964                 &getbug || die "huh ?  $gBug $ref disappeared during merge";
965                 &addmaintainers($data);
966                 @bug_affected{@newmergelist} = 1 x @newmergelist;
967                 $data->{mergedwith}= join(' ',grep($_ != $ref,@newmergelist));
968                 $data->{keywords}= join(' ', keys %tags);
969                 $data->{found_versions}= [sort keys %found];
970                 $data->{fixed_versions}= [sort keys %fixed];
971                 my @field_list = qw(forwarded package severity blocks blockedby owner done);
972                 @{$data}{@field_list} = @{$master_bug_data}{@field_list};
973                 &savebug;
974             }
975             &transcript("$action\n\n");
976         }
977         &endmerge;
978     } elsif (m/^clone\s+#?(\d+)\s+((-\d+\s+)*-\d+)\s*$/i) {
979         $ok++;
980
981         $origref = $1;
982         @newclonedids = split /\s+/, $2;
983         $newbugsneeded = scalar(@newclonedids);
984
985         $ref = $origref;
986         $bug_affected{$ref} = 1;
987         if (&setbug) {
988             if (length($data->{mergedwith})) {
989                 &transcript("$gBug is marked as being merged with others.\n\n");
990                 &nochangebug;
991             } else {
992                 &filelock("nextnumber.lock");
993                 open(N,"nextnumber") || &quit("nextnumber: read: $!");
994                 $v=<N>; $v =~ s/\n$// || &quit("nextnumber bad format");
995                 $firstref= $v+0;  $v += $newbugsneeded;
996                 open(NN,">nextnumber"); print NN "$v\n"; close(NN);
997                 &unfilelock;
998
999                 $lastref = $firstref + $newbugsneeded - 1;
1000
1001                 if ($newbugsneeded == 1) {
1002                     $action= "$gBug $origref cloned as bug $firstref.";
1003                 } else {
1004                     $action= "$gBug $origref cloned as bugs $firstref-$lastref.";
1005                 }
1006
1007                 my $blocks = $data->{blocks};
1008                 my $blockedby = $data->{blockedby};
1009                 
1010                 &getnextbug;
1011                 my $ohash = get_hashname($origref);
1012                 my $clone = $firstref;
1013                 @bug_affected{@newclonedids} = 1 x @newclonedids;
1014                 for $newclonedid (@newclonedids) {
1015                     $clonebugs{$newclonedid} = $clone;
1016             
1017                     my $hash = get_hashname($clone);
1018                     copy("db-h/$ohash/$origref.log", "db-h/$hash/$clone.log");
1019                     copy("db-h/$ohash/$origref.status", "db-h/$hash/$clone.status");
1020                     copy("db-h/$ohash/$origref.summary", "db-h/$hash/$clone.summary");
1021                     copy("db-h/$ohash/$origref.report", "db-h/$hash/$clone.report");
1022                     &bughook('new', $clone, $data);
1023                 
1024                     # Update blocking info of bugs blocked by or blocking the
1025                     # cloned bug.
1026                     foreach $ref (split ' ', $blocks) {
1027                         &getbug;
1028                         $data->{blockedby} = manipset($data->{blockedby}, $clone, 1);
1029                         &savebug;
1030                     }
1031                     foreach $ref (split ' ', $blockedby) {
1032                         &getbug;
1033                         $data->{blocks} = manipset($data->{blocks}, $clone, 1);
1034                         &savebug;
1035                     }
1036
1037                     $clone++;
1038                 }
1039             }
1040         }
1041     } elsif (m/^package\s+(\S.*\S)?\s*$/i) {
1042         $ok++;
1043         my @pkgs = split /\s+/, $1;
1044         if (scalar(@pkgs) > 0) {
1045                 %limit_pkgs = map { ($_, 1) } @pkgs;
1046                 &transcript("Ignoring bugs not assigned to: " . 
1047                         join(" ", keys(%limit_pkgs)) . "\n\n");
1048         } else {
1049                 %limit_pkgs = ();
1050                 &transcript("Not ignoring any bugs.\n\n");
1051         }
1052     } elsif (m/^owner\s+\#?(-?\d+)\s+!$/i ? ($newowner = $replyto, 1) :
1053              m/^owner\s+\#?(-?\d+)\s+(\S.*\S)$/i ? ($newowner = $2, 1) : 0) {
1054         $ok++;
1055         $ref = $1;
1056         $bug_affected{$ref} = 1;
1057         if (&setbug) {
1058             if (length $data->{owner}) {
1059                 $action = "Owner changed from $data->{owner} to $newowner.";
1060             } else {
1061                 $action = "Owner recorded as $newowner.";
1062             }
1063             if (length $data->{done}) {
1064                 $extramessage = "(By the way, this $gBug is currently " .
1065                                 "marked as done.)\n";
1066             }
1067             do {
1068                 &addmaintainers($data);
1069                 $data->{owner} = $newowner;
1070             } while (&getnextbug);
1071         }
1072     } elsif (m/^noowner\s+\#?(-?\d+)$/i) {
1073         $ok++;
1074         $ref = $1;
1075         $bug_affected{$ref} = 1;
1076         if (&setbug) {
1077             if (length $data->{owner}) {
1078                 $action = "Removed annotation that $gBug was owned by " .
1079                           "$data->{owner}.";
1080                 do {
1081                     &addmaintainers($data);
1082                     $data->{owner} = '';
1083                 } while (&getnextbug);
1084             } else {
1085                 &transcript("$gBug is not marked as having an owner.\n\n");
1086                 &nochangebug;
1087             }
1088         }
1089     } else {
1090         &transcript("Unknown command or malformed arguments to command.\n\n");
1091         if (++$unknowns >= 5) {
1092             &transcript("Too many unknown commands, stopping here.\n\n");
1093             last;
1094         }
1095     }
1096 }
1097 if ($procline>$#bodylines) {
1098     &transcript(">\nEnd of message, stopping processing here.\n\n");
1099 }
1100 if (!$ok && !quickabort) {
1101     &transcript("No commands successfully parsed; sending the help text(s).\n");
1102     &sendhelp;
1103     &transcript("\n");
1104 }
1105
1106 &transcript("MC\n") if $dl>1;
1107 @maintccs= ();
1108 for $maint (keys %maintccreasons) {
1109 &transcript("MM|$maint|\n") if $dl>1;
1110     next if $maint eq $replyto;
1111     $reasonstring= '';
1112     $reasonsref= $maintccreasons{$maint};
1113 &transcript("MY|$maint|\n") if $dl>2;
1114     for $p (sort keys %$reasonsref) {
1115 &transcript("MP|$p|\n") if $dl>2;
1116         $reasonstring.= ', ' if length($reasonstring);
1117         $reasonstring.= $p.' ' if length($p);
1118         $reasonstring.= join(' ',map("#$_",sort keys %{$$reasonsref{$p}}));
1119     }
1120     if (length($reasonstring) > 40) {
1121         (substr $reasonstring, 37) = "...";
1122     }
1123     $reasonstring = "" if (!defined($reasonstring));
1124     push(@maintccs,"$maint ($reasonstring)");
1125     push(@maintccaddrs,"$maint");
1126 }
1127
1128 $maintccs = ""; 
1129 if (@maintccs) {
1130     &transcript("MC|@maintccs|\n") if $dl>2;
1131     $maintccs .= "Cc: " . join(",\n    ",@maintccs) . "\n";
1132 }
1133
1134 # Add Bcc's to subscribed bugs
1135 push @bcc, map {"bugs=$_\@$gListDomain"} keys %bug_affected;
1136
1137 if (!defined $header{'subject'} || $header{'subject'} eq "") {
1138   $header{'subject'} = "your mail";
1139 }
1140
1141 $reply= <<END;
1142 From: $gMaintainerEmail ($gProject $gBug Tracking System)
1143 To: $replyto
1144 ${maintccs}Subject: Processed: $header{'subject'}
1145 In-Reply-To: $header{'message-id'}
1146 References: $header{'message-id'}
1147 Message-ID: <handler.s.$nn.transcript\@$gEmailDomain>
1148 Precedence: bulk
1149 X-$gProject-PR-Message: transcript
1150
1151 ${transcript}Please contact me if you need assistance.
1152
1153 $gMaintainer
1154 (administrator, $gProject $gBugs database)
1155 $extras
1156 END
1157
1158 $repliedshow= join(', ',$replyto,@maintccaddrs);
1159 &filelock("lock/-1");
1160 open(AP,">>db-h/-1.log") || &quit("open db-h/-1.log: $!");
1161 print(AP
1162       "\2\n$repliedshow\n\5\n$reply\n\3\n".
1163       "\6\n".
1164       "<strong>Request received</strong> from <code>".
1165       &sani($header{'from'})."</code>\n".
1166       "to <code>".&sani($controlrequestaddr)."</code>\n".
1167       "\3\n".
1168       "\7\n",@{escapelog(@log)},"\n\3\n") || &quit("writing db-h/-1.log: $!");
1169 close(AP) || &quit("open db-h/-1.log: $!");
1170 &unfilelock;
1171 utime(time,time,"db-h");
1172
1173 &sendmailmessage($reply,exists $header{'x-debbugs-no-ack'}?():$replyto,@maintccaddrs,@bcc);
1174
1175 unlink("incoming/P$nn") || &quit("unlinking incoming/P$nn: $!");
1176
1177 sub sendmailmessage {
1178     local ($message,@recips) = @_;
1179     $message = "X-Loop: $gMaintainerEmail\n" . $message;
1180     send_mail_message(message    => $message,
1181                       recipients => \@recips,
1182                      );
1183     $midix++;
1184 }
1185
1186 sub sendhelp {
1187         &sendtxthelpraw("bug-log-mailserver.txt","instructions for request\@$gEmailDomain");
1188         &sendtxthelpraw("bug-maint-mailcontrol.txt","instructions for control\@$gEmailDomain")
1189             if $control;
1190 }
1191
1192 #sub unimplemented {
1193 #    &transcript("Sorry, command $_[0] not yet implemented.\n\n");
1194 #}
1195
1196 sub checkmatch {
1197     local ($string,$mvarname,$svarvalue) = @_;
1198     local ($mvarvalue);
1199     if (@newmergelist) {
1200         eval "\$mvarvalue= \$$mvarname";
1201         &transcript("D| checkmatch \`$string' /$mvarname/$mvarvalue/$svarvalue/\n")
1202             if $dl;
1203         $mismatch .=
1204             "Values for \`$string' don't match:\n".
1205             " #$newmergelist[0] has \`$mvarvalue';\n".
1206             " #$ref has \`$svarvalue'\n"
1207             if $mvarvalue ne $svarvalue;
1208     } else {
1209         &transcript("D| setupmatch \`$string' /$mvarname/$svarvalue/\n")
1210             if $dl;
1211         eval "\$$mvarname= \$svarvalue";
1212     }
1213 }
1214
1215 sub checkpkglimit {
1216     if (keys %limit_pkgs and not defined $limit_pkgs{$data->{package}}) {
1217         &transcript("$gBug number $ref belongs to package $data->{package}, skipping.\n\n");
1218         return 0;
1219     }
1220     return 1;
1221 }
1222
1223 sub manipset {
1224     my $list = shift;
1225     my $elt = shift;
1226     my $add = shift;
1227
1228     my %h = map { $_ => 1 } split ' ', $list;
1229     if ($add) {
1230         $h{$elt}=1;
1231     }
1232     else {
1233         delete $h{$elt};
1234     }
1235     return join ' ', sort keys %h;
1236 }
1237
1238 # High-level bug manipulation calls
1239 # Do announcements themselves
1240 #
1241 # Possible calling sequences:
1242 #    setbug (returns 0)
1243 #    
1244 #    setbug (returns 1)
1245 #    &transcript(something)
1246 #    nochangebug
1247 #
1248 #    setbug (returns 1)
1249 #    $action= (something)
1250 #    do {
1251 #      (modify s_* variables)
1252 #    } while (getnextbug);
1253
1254 sub nochangebug {
1255     &dlen("nochangebug");
1256     $state eq 'single' || $state eq 'multiple' || die "$state ?";
1257     &cancelbug;
1258     &endmerge if $manybugs;
1259     $state= 'idle';
1260     &dlex("nochangebug");
1261 }
1262
1263 sub setbug {
1264     &dlen("setbug $ref");
1265     if ($ref =~ m/^-\d+/) {
1266         if (!defined $clonebugs{$ref}) {
1267             &notfoundbug;
1268             &dlex("setbug => noclone");
1269             return 0;
1270         }
1271         $ref = $clonebugs{$ref};
1272     }
1273     $state eq 'idle' || die "$state ?";
1274     if (!&getbug) {
1275         &notfoundbug;
1276         &dlex("setbug => 0s");
1277         return 0;
1278     }
1279
1280     if (!&checkpkglimit) {
1281         &cancelbug;
1282         return 0;
1283     }
1284
1285     @thisbugmergelist= split(/ /,$data->{mergedwith});
1286     if (!@thisbugmergelist) {
1287         &foundbug;
1288         $manybugs= 0;
1289         $state= 'single';
1290         $sref=$ref;
1291         &dlex("setbug => 1s");
1292         return 1;
1293     }
1294     &cancelbug;
1295     &getmerge;
1296     $manybugs= 1;
1297     if (!&getbug) {
1298         &notfoundbug;
1299         &endmerge;
1300         &dlex("setbug => 0mc");
1301         return 0;
1302     }
1303     &foundbug;
1304     $state= 'multiple'; $sref=$ref;
1305     &dlex("setbug => 1m");
1306     return 1;
1307 }
1308
1309 sub getnextbug {
1310     &dlen("getnextbug");
1311     $state eq 'single' || $state eq 'multiple' || die "$state ?";
1312     &savebug;
1313     if (!$manybugs || !@thisbugmergelist) {
1314         length($action) || die;
1315         &transcript("$action\n$extramessage\n");
1316         &endmerge if $manybugs;
1317         $state= 'idle';
1318         &dlex("getnextbug => 0");
1319         return 0;
1320     }
1321     $ref= shift(@thisbugmergelist);
1322     &getbug || die "bug $ref disappeared";
1323     &foundbug;
1324     &dlex("getnextbug => 1");
1325     return 1;
1326 }
1327
1328 # Low-level bug-manipulation calls
1329 # Do no announcements
1330 #
1331 #    getbug (returns 0)
1332 #
1333 #    getbug (returns 1)
1334 #    cancelbug
1335 #
1336 #    getmerge
1337 #    $action= (something)
1338 #    getbug (returns 1)
1339 #    savebug/cancelbug
1340 #    getbug (returns 1)
1341 #    savebug/cancelbug
1342 #    [getbug (returns 0)]
1343 #    &transcript("$action\n\n")
1344 #    endmerge
1345
1346 sub notfoundbug { &transcript("$gBug number $ref not found.\n\n"); }
1347 sub foundbug { &transcript("$gBug#$ref: $data->{subject}\n"); }
1348
1349 sub getmerge {
1350     &dlen("getmerge");
1351     $mergelowstate eq 'idle' || die "$mergelowstate ?";
1352     &filelock('lock/merge');
1353     $mergelowstate='locked';
1354     &dlex("getmerge");
1355 }
1356
1357 sub endmerge {
1358     &dlen("endmerge");
1359     $mergelowstate eq 'locked' || die "$mergelowstate ?";
1360     &unfilelock;
1361     $mergelowstate='idle';
1362     &dlex("endmerge");
1363 }
1364
1365 sub getbug {
1366     &dlen("getbug $ref");
1367     $lowstate eq 'idle' || die "$state ?";
1368     if (($data = &lockreadbug($ref))) {
1369         $sref= $ref;
1370         $lowstate= "open";
1371         &dlex("getbug => 1");
1372         $extramessage='';
1373         return 1;
1374     }
1375     $lowstate= 'idle';
1376     &dlex("getbug => 0");
1377     return 0;
1378 }
1379
1380 sub cancelbug {
1381     &dlen("cancelbug");
1382     $lowstate eq 'open' || die "$state ?";
1383     &unfilelock;
1384     $lowstate= 'idle';
1385     &dlex("cancelbug");
1386 }
1387
1388 sub savebug {
1389     &dlen("savebug $ref");
1390     $lowstate eq 'open' || die "$lowstate ?";
1391     length($action) || die;
1392     $ref == $sref || die "read $sref but saving $ref ?";
1393     my $hash = get_hashname($ref);
1394     open(L,">>db-h/$hash/$ref.log") || &quit("opening db-h/$hash/$ref.log: $!");
1395     print(L
1396           "\6\n".
1397           "<strong>".&sani($action)."</strong>\n".
1398           "Request was from <code>".&sani($header{'from'})."</code>\n".
1399           "to <code>".&sani($controlrequestaddr)."</code>. \n".
1400           "\3\n".
1401           "\7\n",@{escapelog(@log)},"\n\3\n") || &quit("writing db-h/$hash/$ref.log: $!");
1402     close(L) || &quit("closing db-h/$hash/$ref.log: $!");
1403     unlockwritebug($ref, $data);
1404     $lowstate= "idle";
1405     &dlex("savebug");
1406 }
1407
1408 sub dlen {
1409     return if !$dl;
1410     &transcript("C> @_ ($state $lowstate $mergelowstate)\n");
1411 }
1412
1413 sub dlex {
1414     return if !$dl;
1415     &transcript("R> @_ ($state $lowstate $mergelowstate)\n");
1416 }
1417
1418 sub transcript {
1419     print $_[0] if $debug;
1420     $transcript.= $_[0];
1421 }
1422
1423 sub urlsanit {
1424     my $url = shift;
1425     $url =~ s/%/%25/g;
1426     $url =~ s/\+/%2b/g;
1427     my %saniarray = ('<','lt', '>','gt', '&','amp', '"','quot');
1428     $url =~ s/([<>&"])/\&$saniarray{$1};/g;
1429     return $url;
1430 }
1431
1432 sub sendlynxdoc {
1433     &sendlynxdocraw;
1434     &transcript("\n");
1435     $ok++;
1436 }
1437
1438 sub sendtxthelp {
1439     &sendtxthelpraw;
1440     &transcript("\n");
1441     $ok++;
1442 }
1443
1444 sub sendtxthelpraw {
1445     local ($relpath,$description) = @_;
1446     $doc='';
1447     open(D,"$gDocDir/$relpath") || &quit("open doc file $relpath: $!");
1448     while(<D>) { $doc.=$_; }
1449     close(D);
1450     &transcript("Sending $description in separate message.\n");
1451     &sendmailmessage(<<END.$doc,$replyto);
1452 From: $gMaintainerEmail ($gProject $gBug Tracking System)
1453 To: $replyto
1454 Subject: $gProject $gBug help: $description
1455 References: $header{'message-id'}
1456 In-Reply-To: $header{'message-id'}
1457 Message-ID: <handler.s.$nn.help.$midix\@$gEmailDomain>
1458 Precedence: bulk
1459 X-$gProject-PR-Message: doc-text $relpath
1460
1461 END
1462     $ok++;
1463 }
1464
1465 sub sendlynxdocraw {
1466     local ($relpath,$description) = @_;
1467     $doc='';
1468     open(L,"lynx -nolist -dump http://$gCGIDomain/\Q$relpath\E 2>&1 |") || &quit("fork for lynx: $!");
1469     while(<L>) { $doc.=$_; }
1470     $!=0; close(L);
1471     if ($? == 255 && $doc =~ m/^\n*lynx: Can\'t access start file/) {
1472         &transcript("Information ($description) is not available -\n".
1473                     "perhaps the $gBug does not exist or is not on the WWW yet.\n");
1474          $ok++;
1475     } elsif ($?) {
1476         &transcript("Error getting $description (code $? $!):\n$doc\n");
1477     } else {
1478         &transcript("Sending $description.\n");
1479         &sendmailmessage(<<END.$doc,$replyto);
1480 From: $gMaintainerEmail ($gProject $gBug Tracking System)
1481 To: $replyto
1482 Subject: $gProject $gBugs information: $description
1483 References: $header{'message-id'}
1484 In-Reply-To: $header{'message-id'}
1485 Message-ID: <handler.s.$nn.info.$midix\@$gEmailDomain>
1486 Precedence: bulk
1487 X-$gProject-PR-Message: doc-html $relpath
1488
1489 END
1490          $ok++;
1491     }
1492 }
1493
1494 sub addccaddress {
1495     my ($cca) = @_;
1496     $maintccreasons{$cca}{''}{$ref}= 1;
1497 }
1498
1499 sub addmaintainers {
1500     # Data structure is:
1501     #   maintainer email address &c -> assoc of packages -> assoc of bug#'s
1502     my $data = shift;
1503     my ($p, $addmaint);
1504     &ensuremaintainersloaded;
1505     $anymaintfound=0; $anymaintnotfound=0;
1506     for $p (split(m/[ \t?,():]+/, $data->{package})) {
1507         $p =~ y/A-Z/a-z/;
1508         $p =~ /([a-z0-9.+-]+)/;
1509         $p = $1;
1510         next unless defined $p;
1511         if (defined $gSubscriptionDomain) {
1512             if (defined($pkgsrc{$p})) {
1513                 addbcc("$pkgsrc{$p}\@$gSubscriptionDomain");
1514             } else {
1515                 addbcc("$p\@$gSubscriptionDomain");
1516             }
1517         }
1518         if (defined $data->{severity} and defined $gStrongList and
1519                 isstrongseverity($data->{severity})) {
1520             addbcc("$gStrongList\@$gListDomain");
1521         }
1522         if (defined($maintainerof{$p})) {
1523             $addmaint= $maintainerof{$p};
1524             &transcript("MR|$addmaint|$p|$ref|\n") if $dl>2;
1525             $maintccreasons{$addmaint}{$p}{$ref}= 1;
1526             print "maintainer add >$p|$addmaint<\n" if $debug;
1527         } else { 
1528             print "maintainer none >$p<\n" if $debug; 
1529             &transcript("Warning: Unknown package '$p'\n");
1530             &transcript("MR|unknown-package|$p|$ref|\n") if $dl>2;
1531             $maintccreasons{$gUnknownMaintainerEmail}{$p}{$ref}= 1;
1532         }
1533     }
1534
1535     if (length $data->{owner}) {
1536         $addmaint = $data->{owner};
1537         &transcript("MO|$addmaint|$data->{package}|$ref|\n") if $dl>2;
1538         $maintccreasons{$addmaint}{$data->{package}}{$ref} = 1;
1539         print "owner add >$data->{package}|$addmaint<\n" if $debug;
1540     }
1541 }
1542
1543 sub ensuremaintainersloaded {
1544     my ($a,$b);
1545     return if $maintainersloaded++;
1546     open(MAINT,"$gMaintainerFile") || die &quit("maintainers open: $!");
1547     while (<MAINT>) {
1548         m/^\n$/ && next;
1549         m/^\s*$/ && next;
1550         m/^(\S+)\s+(\S.*\S)\s*\n$/ || &quit("maintainers bogus \`$_'");
1551         $a= $1; $b= $2; $a =~ y/A-Z/a-z/;
1552         $maintainerof{$a}= $2;
1553     }
1554     close(MAINT);
1555     open(MAINT,"$gMaintainerFileOverride") || die &quit("maintainers.override open: $!");
1556     while (<MAINT>) {
1557         m/^\n$/ && next;
1558         m/^\s*$/ && next;
1559         m/^(\S+)\s+(\S.*\S)\s*\n$/ || &quit("maintainers.override bogus \`$_'");
1560         $a= $1; $b= $2; $a =~ y/A-Z/a-z/;
1561         $maintainerof{$a}= $2;
1562     }
1563
1564     open(SOURCES, "$gPackageSource") || &quit("pkgsrc open: $!");
1565     while (<SOURCES>) {
1566         next unless m/^(\S+)\s+\S+\s+(\S.*\S)\s*$/;
1567         my ($a, $b) = ($1, $2);
1568         $pkgsrc{lc($a)} = $b;
1569     }
1570     close(SOURCES);
1571 }
1572
1573 sub sendinfo {
1574     local ($wherefrom,$path,$description) = @_;
1575     if ($wherefrom eq "ftp.d.o") {
1576       $doc = `lynx -nolist -dump http://ftp.debian.org/debian/indices/$path.gz 2>&1 | gunzip -cf` or &quit("fork for lynx/gunzip: $!");
1577       $! = 0;
1578       if ($? == 255 && $doc =~ m/^\n*lynx: Can\'t access start file/) {
1579           &transcript("$description is not available.\n");
1580           $ok++; return;
1581       } elsif ($?) {
1582           &transcript("Error getting $description (code $? $!):\n$doc\n");
1583           return;
1584       }
1585     } elsif ($wherefrom eq "local") {
1586       open P, "$path";
1587       $doc = do { local $/; <P> };
1588       close P;
1589     } else {
1590       &transcript("internal errror: info files location unknown.\n");
1591       $ok++; return;
1592     }
1593     &transcript("Sending $description.\n");
1594     &sendmailmessage(<<END.$doc,$replyto);
1595 From: $gMaintainerEmail ($gProject $gBug Tracking System)
1596 To: $replyto
1597 Subject: $gProject $gBugs information: $description
1598 References: $header{'message-id'}
1599 In-Reply-To: $header{'message-id'}
1600 Message-ID: <handler.s.$nn.info.$midix\@$gEmailDomain>
1601 Precedence: bulk
1602 X-$gProject-PR-Message: getinfo
1603
1604 $description follows:
1605
1606 END
1607     $ok++;
1608     &transcript("\n");
1609 }