]> git.donarmstrong.com Git - debbugs.git/blob - scripts/service.in
fdf1fa808b07be3b9ec621aa1a75eb6c400eb3ed
[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 = $data->{fixed_versions}[-1];
517                         # TODO: what if $data->{package} is a source package?
518                         addfoundversions($data, $data->{package}, $version, 'binary');
519                         if (defined $lastfixed and not grep { $_ eq $lastfixed } @{$data->{fixed_versions}}) {
520                             $data->{done} = '';
521                         }
522                     } else {
523                         # Versionless found; assume old-style "not fixed at
524                         # all".
525                         $data->{fixed_versions} = [];
526                         $data->{done} = '';
527                     }
528                 } while (&getnextbug);
529             }
530         }
531     } elsif (m/^notfound\s+\#?(-?\d+)\s+(\d.*)$/i) {
532         $ok++;
533         $ref= $1;
534         $version= $2;
535         if (&setbug) {
536             $action= "$gBug marked as not found in version $version.";
537             if (length($data->{done})) {
538                 $extramessage= "(By the way, this $gBug is currently marked as done.)\n";
539             }
540             do {
541                 &addmaintainers($data);
542                 removefoundversions($data, $data->{package}, $version, 'binary');
543             } while (&getnextbug);
544         }
545     } elsif (m/^submitter\s+\#?(-?\d+)\s+\!$/i ? ($newsubmitter=$replyto, 1) :
546              m/^submitter\s+\#?(-?\d+)\s+(\S.*\S)$/i ? ($newsubmitter=$2, 1) : 0) {
547         $ok++;
548         $ref= $1;
549         $bug_affected{$ref}=1;
550         if ($ref =~ m/^-\d+$/ && defined $clonebugs{$ref}) {
551             $ref = $clonebugs{$ref};
552         }
553         if (&getbug) {
554             if (&checkpkglimit) {
555                 &foundbug;
556                 &addmaintainers($data);
557                 $oldsubmitter= $data->{originator};
558                 $data->{originator}= $newsubmitter;
559                 $action= "Changed $gBug submitter from $oldsubmitter to $newsubmitter.";
560                 &savebug;
561                 &transcript("$action\n");
562                 if (length($data->{done})) {
563                     &transcript("(By the way, that $gBug is currently marked as done.)\n");
564                 }
565                 &transcript("\n");
566                 $message= <<END;
567 From: $gMaintainerEmail ($gProject $gBug Tracking System)
568 To: $oldsubmitter
569 Subject: $gBug#$ref submitter address changed
570          ($header{'subject'})
571 References: $header{'message-id'} $data->{msgid}
572 In-Reply-To: $data->{msgid}
573 Message-ID: <handler.$ref.$nn.newsubmitter.$midix\@$gEmailDomain>
574 Reply-To: $ref\@$gEmailDomain
575 X-$gProject-PR-Message: submitter-changed $ref
576
577 The submitter address recorded for your $gBug report
578 #$ref: $data->{subject}
579 has been changed.
580
581 The old submitter address for this report was
582 $oldsubmitter.
583 The new submitter address is
584 $newsubmitter.
585
586 This change was made by
587 $replyto.
588 If it was incorrect, please contact them directly.
589
590 $gMaintainer
591 (administrator, $gProject $gBugs database)
592
593 END
594                 &sendmailmessage($message,$oldsubmitter);
595             } else {
596                 &cancelbug;
597             }
598         } else {
599             &notfoundbug;
600         }
601     } elsif (m/^forwarded\s+\#?(-?\d+)\s+(\S.*\S)$/i) {
602         $ok++;
603         $ref= $1; $whereto= $2;
604         $bug_affected{$ref}=1;
605         if (&setbug) {
606             if (length($data->{forwarded})) {
607     $action= "Forwarded-to-address changed from $data->{forwarded} to $whereto.";
608             } else {
609     $action= "Noted your statement that $gBug has been forwarded to $whereto.";
610             }
611             if (length($data->{done})) {
612                 $extramessage= "(By the way, this $gBug is currently marked as done.)\n";
613             }
614             do {
615                 &addmaintainers($data);
616                 if (length($gForwardList)>0 && length($gListDomain)>0 ) {
617                      &addccaddress("$gForwardList\@$gListDomain"); 
618                 }
619                 $data->{forwarded}= $whereto;
620             } while (&getnextbug);
621         }
622     } elsif (m/^notforwarded\s+\#?(-?\d+)$/i) {
623         $ok++;
624         $ref= $1;
625         $bug_affected{$ref}=1;
626         if (&setbug) {
627             if (!length($data->{forwarded})) {
628                 &transcript("$gBug is not marked as having been forwarded.\n\n");
629                 &nochangebug;
630             } else {
631     $action= "Removed annotation that $gBug had been forwarded to $data->{forwarded}.";
632                 do {
633                     &addmaintainers($data);
634                     $data->{forwarded}= '';
635                 } while (&getnextbug);
636             }
637         }
638     } elsif (m/^severity\s+\#?(-?\d+)\s+([-0-9a-z]+)$/i ||
639         m/^priority\s+\#?(-?\d+)\s+([-0-9a-z]+)$/i) {
640         $ok++;
641         $ref= $1;
642         $bug_affected{$ref}=1;
643         $newseverity= $2;
644         if (!grep($_ eq $newseverity, @gSeverityList, "$gDefaultSeverity")) {
645             &transcript("Severity level \`$newseverity' is not known.\n".
646                         "Recognized are: $gShowSeverities.\n\n");
647         } elsif (exists $gObsoleteSeverities{$newseverity}) {
648             &transcript("Severity level \`$newseverity' is obsolete. " .
649                         "$gObsoleteSeverities{$newseverity}\n\n");
650         } elsif (&setbug) {
651             $printseverity= $data->{severity};
652             $printseverity= "$gDefaultSeverity" if $printseverity eq '';
653             $action= "Severity set to \`$newseverity' from \`$printseverity'";
654             do {
655                 &addmaintainers($data);
656                 if (defined $gStrongList and isstrongseverity($newseverity)) {
657                     addbcc("$gStrongList\@$gListDomain");
658                 }
659                 $data->{severity}= $newseverity;
660             } while (&getnextbug);
661         }
662     } elsif (m/^tags?\s+\#?(-?\d+)\s+(([=+-])\s*)?(\S.*)?$/i) {
663         $ok++;
664         $ref = $1; $addsubcode = $3; $tags = $4;
665         $bug_affected{$ref}=1;
666         $addsub = "add";
667         if (defined $addsubcode) {
668             $addsub = "sub" if ($addsubcode eq "-");
669             $addsub = "add" if ($addsubcode eq "+");
670             $addsub = "set" if ($addsubcode eq "=");
671         }
672         my @okaytags = ();
673         my @badtags = ();
674         foreach my $t (split /[\s,]+/, $tags) {
675             if (!grep($_ eq $t, @gTags)) {
676                 push @badtags, $t;
677             } else {
678                 push @okaytags, $t;
679             }
680         }
681         if (@badtags) {
682             &transcript("Unknown tag/s: ".join(', ', @badtags).".\n".
683                         "Recognized are: ".join(' ', @gTags).".\n\n");
684         }
685         if (&setbug) {
686             if ($data->{keywords} eq '') {
687                 &transcript("There were no tags set.\n");
688             } else {
689                 &transcript("Tags were: $data->{keywords}\n");
690             }
691             if ($addsub eq "set") {
692                 $action= "Tags set to: " . join(", ", @okaytags);
693             } elsif ($addsub eq "add") {
694                 $action= "Tags added: " . join(", ", @okaytags);
695             } elsif ($addsub eq "sub") {
696                 $action= "Tags removed: " . join(", ", @okaytags);
697             }
698             do {
699                 &addmaintainers($data);
700                 $data->{keywords} = '' if ($addsub eq "set");
701                 # Allow removing obsolete tags.
702                 if ($addsub eq "sub") {
703                     foreach my $t (@badtags) {
704                         $data->{keywords} = join ' ', grep $_ ne $t, 
705                             split ' ', $data->{keywords};
706                     }
707                 }
708                 # Now process all other additions and subtractions.
709                 foreach my $t (@okaytags) {
710                     $data->{keywords} = join ' ', grep $_ ne $t, 
711                         split ' ', $data->{keywords};
712                     $data->{keywords} = "$t $data->{keywords}" unless($addsub eq "sub");
713                 }
714                 $data->{keywords} =~ s/\s*$//;
715             } while (&getnextbug);
716         }
717     } elsif (m/^(un)?block\s+\#?(-?\d+)\s+(by|with)\s+\s*(\S.*)?$/i) {
718         $ok++;
719         my $bugnum = $2; my $blockers = $4;
720         $addsub = "add";
721         $addsub = "sub" if ($1 eq "un");
722         
723         my @okayblockers;
724         my @badblockers;
725         foreach my $b (split /[\s,]+/, $blockers) {
726             $b=~s/^\#//;
727             if ($b=~/[0-9]+/) {
728                 $ref=$b;
729                 if (&getbug) {
730                     push @okayblockers, $b;
731
732                     # add to the list all bugs that are merged with $b,
733                     # because all of their data must be kept in sync
734                     @thisbugmergelist= split(/ /,$data->{mergedwith});
735                     &cancelbug;
736
737                     foreach $ref (@thisbugmergelist) {
738                         if (&getbug) {
739                            push @okayblockers, $ref;
740                            &cancelbug;
741                         }
742                     }
743                 }
744                 else {
745                     &notfoundbug;
746                     push @badblockers, $b;
747                 }
748             }
749             else {
750                 push @badblockers, $b;
751             }
752         }
753         if (@badblockers) {
754             &transcript("Unknown blocking bug/s: ".join(', ', @badblockers).".\n");
755         }
756         
757         $ref=$bugnum;
758         if (&setbug) {
759             if ($data->{blockedby} eq '') {
760                 &transcript("Was not blocked by any bugs.\n");
761             } else {
762                 &transcript("Was blocked by: $data->{blockedby}\n");
763             }
764             if ($addsub eq "set") {
765                 $action= "Blocking bugs of $bugnum set to: " . join(", ", @okayblockers);
766             } elsif ($addsub eq "add") {
767                 $action= "Blocking bugs of $bugnum added: " . join(", ", @okayblockers);
768             } elsif ($addsub eq "sub") {
769                 $action= "Blocking bugs of $bugnum removed: " . join(", ", @okayblockers);
770             }
771             my %removedblocks;
772             my %addedblocks;
773             do {
774                 &addmaintainers($data);
775                 my @oldblockerlist = split ' ', $data->{blockedby};
776                 $data->{blockedby} = '' if ($addsub eq "set");
777                 foreach my $b (@okayblockers) {
778                         $data->{blockedby} = manipset($data->{blockedby}, $b,
779                                 ($addsub ne "sub"));
780                 }
781
782                 foreach my $b (@oldblockerlist) {
783                         if (! grep { $_ eq $b } split ' ', $data->{blockedby}) {
784                                 push @{$removedblocks{$b}}, $ref;
785                         }
786                 }
787                 foreach my $b (split ' ', $data->{blockedby}) {
788                         if (! grep { $_ eq $b } @oldblockerlist) {
789                                 push @{$addedblocks{$b}}, $ref;
790                         }
791                 }
792             } while (&getnextbug);
793
794             # Now that the blockedby data is updated, change blocks data
795             # to match the changes.
796             foreach $ref (keys %addedblocks) {
797                 if (&getbug) {
798                     foreach my $b (@{$addedblocks{$ref}}) {
799                         $data->{blocks} = manipset($data->{blocks}, $b, 1);
800                     }
801                     &savebug;
802                 }
803             }
804             foreach $ref (keys %removedblocks) {
805                 if (&getbug) {
806                     foreach my $b (@{$removedblocks{$ref}}) {
807                         $data->{blocks} = manipset($data->{blocks}, $b, 0);
808                     }
809                     &savebug;
810                 }
811             }
812         }
813     } elsif (m/^retitle\s+\#?(-?\d+)\s+(\S.*\S)\s*$/i) {
814         $ok++;
815         $ref= $1; $newtitle= $2;
816         $bug_affected{$ref}=1;
817         if ($ref =~ m/^-\d+$/ && defined $clonebugs{$ref}) {
818             $ref = $clonebugs{$ref};
819         }
820         if (&getbug) {
821             if (&checkpkglimit) {
822                 &foundbug;
823                 &addmaintainers($data);
824                 $data->{subject}= $newtitle;
825                 $action= "Changed $gBug title.";
826                 &savebug;
827                 &transcript("$action\n");
828                 if (length($data->{done})) {
829                     &transcript("(By the way, that $gBug is currently marked as done.)\n");
830                 }
831                 &transcript("\n");
832             } else {
833                 &cancelbug;
834             }
835         } else {
836             &notfoundbug;
837         }
838     } elsif (m/^unmerge\s+\#?(-?\d+)$/i) {
839         $ok++;
840         $ref= $1;
841         $bug_affected{$ref} = 1;
842         if (&setbug) {
843             if (!length($data->{mergedwith})) {
844                 &transcript("$gBug is not marked as being merged with any others.\n\n");
845                 &nochangebug;
846             } else {
847                 $mergelowstate eq 'locked' || die "$mergelowstate ?";
848                 $action= "Disconnected #$ref from all other report(s).";
849                 @newmergelist= split(/ /,$data->{mergedwith});
850                 $discref= $ref;
851                 @bug_affected{@newmergelist} = 1 x @newmergelist;
852                 do {
853                     &addmaintainers($data);
854                     $data->{mergedwith}= ($ref == $discref) ? ''
855                         : join(' ',grep($_ ne $ref,@newmergelist));
856                 } while (&getnextbug);
857             }
858         }
859     } elsif (m/^merge\s+#?(-?\d+(\s+#?-?\d+)+)\s*$/i) {
860         $ok++;
861         my @tomerge= sort { $a <=> $b } split(/\s+#?/,$1);
862         my @newmergelist= ();
863         my %tags = ();
864         my %found = ();
865         my %fixed = ();
866         &getmerge;
867         while (defined($ref= shift(@tomerge))) {
868             &transcript("D| checking merge $ref\n") if $dl;
869             $ref+= 0;
870             if ($ref =~ m/^-\d+$/ && defined $clonebugs{$ref}) {
871                 $ref = $clonebugs{$ref};
872             }
873             next if grep($_ == $ref,@newmergelist);
874             if (!&getbug) { &notfoundbug; @newmergelist=(); last }
875             if (!&checkpkglimit) { &cancelbug; @newmergelist=(); last; }
876             &foundbug;
877             &transcript("D| adding $ref ($data->{mergedwith})\n") if $dl;
878             $mismatch= '';
879             &checkmatch('package','m_package',$data->{package},@newmergelist);
880             &checkmatch('forwarded addr','m_forwarded',$data->{forwarded},@newmergelist);
881             $data->{severity} = '$gDefaultSeverity' if $data->{severity} eq '';
882             &checkmatch('severity','m_severity',$data->{severity},@newmergelist);
883             &checkmatch('blocks','m_blocks',$data->{blocks},@newmergelist);
884             &checkmatch('blocked-by','m_blockedby',$data->{blockedby},@newmergelist);
885             &checkmatch('done mark','m_done',length($data->{done}) ? 'done' : 'open',@newmergelist);
886             &checkmatch('owner','m_owner',$data->{owner},@newmergelist);
887             foreach my $t (split /\s+/, $data->{keywords}) { $tags{$t} = 1; }
888             foreach my $f (@{$data->{found_versions}}) { $found{$f} = 1; }
889             foreach my $f (@{$data->{fixed_versions}}) { $fixed{$f} = 1; }
890             if (length($mismatch)) {
891                 &transcript("Mismatch - only $gBugs in same state can be merged:\n".
892                             $mismatch."\n");
893                 &cancelbug; @newmergelist=(); last;
894             }
895             push(@newmergelist,$ref);
896             push(@tomerge,split(/ /,$data->{mergedwith}));
897             &cancelbug;
898         }
899         if (@newmergelist) {
900             @newmergelist= sort { $a <=> $b } @newmergelist;
901             $action= "Merged @newmergelist.";
902             delete @fixed{keys %found};
903             for $ref (@newmergelist) {
904                 &getbug || die "huh ?  $gBug $ref disappeared during merge";
905                 &addmaintainers($data);
906                 @bug_affected{@newmergelist} = 1 x @newmergelist;
907                 $data->{mergedwith}= join(' ',grep($_ != $ref,@newmergelist));
908                 $data->{keywords}= join(' ', keys %tags);
909                 $data->{found_versions}= [sort keys %found];
910                 $data->{fixed_versions}= [sort keys %fixed];
911                 &savebug;
912             }
913             &transcript("$action\n\n");
914         }
915         &endmerge;
916     } elsif (m/^forcemerge\s+\#?(-?\d+(?:\s+\#?-?\d+)+)\s*$/i) {
917         $ok++;
918         my @temp = split /\s+\#?/,$1;
919         my $master_bug = shift @temp;
920         my $master_bug_data;
921         my @tomerge = sort { $a <=> $b } @temp;
922         unshift @tomerge,$master_bug;
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,@newmergelist) = @_;
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 }