]> git.donarmstrong.com Git - debbugs.git/blob - cgi/bugreport.cgi
set repeatmerged to yes by default
[debbugs.git] / cgi / bugreport.cgi
1 #!/usr/bin/perl -wT
2
3 use warnings;
4 use strict;
5 use POSIX qw(strftime tzset);
6 use MIME::Parser;
7 use MIME::Decoder;
8 use IO::Scalar;
9 use IO::File;
10
11 use Debbugs::Config qw(:globals :text);
12
13 # for read_log_records
14 use Debbugs::Log;
15 use Debbugs::MIME qw(convert_to_utf8 decode_rfc1522 create_mime_message);
16 use Debbugs::CGI qw(:url :html :util);
17 use Debbugs::Common qw(buglog);
18 use Debbugs::Packages qw(getpkgsrc);
19 use Debbugs::Status qw(get_bug_status isstrongseverity);
20
21 use Scalar::Util qw(looks_like_number);
22 use CGI::Simple;
23 my $q = new CGI::Simple;
24
25 my %param = cgi_parameters(query => $q,
26                            single => [qw(bug msg att boring terse),
27                                       qw(reverse mbox mime trim),
28                                       qw(mboxstat mboxmaint archive),
29                                       qw(repeatmerged)
30                                      ],
31                            default => {msg       => '',
32                                        boring    => 'no',
33                                        terse     => 'no',
34                                        reverse   => 'no',
35                                        mbox      => 'no',
36                                        mime      => 'no',
37                                        mboxstat  => 'no',
38                                        mboxmaint => 'no',
39                                        archive   => 'no',
40                                        repeatmerged => 'yes',
41                                       },
42                           );
43 # This is craptacular.
44
45 my $tail_html;
46
47 my $ref = $param{bug} or quitcgi("No bug number");
48 $ref =~ /(\d+)/ or quitcgi("Invalid bug number");
49 $ref = $1;
50 my $short = "#$ref";
51 my $msg = $param{'msg'};
52 my $att = $param{'att'};
53 my $boring = $param{'boring'} eq 'yes';
54 my $terse = $param{'terse'} eq 'yes';
55 my $reverse = $param{'reverse'} eq 'yes';
56 my $mbox = $param{'mbox'} eq 'yes';
57 my $mime = $param{'mime'} eq 'yes';
58
59 my $trim_headers = ($param{trim} || ($msg?'no':'yes')) eq 'yes';
60
61 my $mbox_status_message = $param{mboxstat} eq 'yes';
62 my $mbox_maint = $param{mboxmaint} eq 'yes';
63 $mbox = 1 if $mbox_status_message or $mbox_maint;
64
65
66 # Not used by this script directly, but fetch these so that pkgurl() and
67 # friends can propagate them correctly.
68 my $archive = $param{'archive'} eq 'yes';
69 my $repeatmerged = $param{'repeatmerged'} eq 'yes';
70
71 my $buglog = buglog($ref);
72
73 if (defined $ENV{REQUEST_METHOD} and $ENV{REQUEST_METHOD} eq 'HEAD' and not defined($att) and not $mbox) {
74     print "Content-Type: text/html; charset=utf-8\n";
75     my @stat = stat $buglog;
76     if (@stat) {
77         my $mtime = strftime '%a, %d %b %Y %T GMT', gmtime($stat[9]);
78         print "Last-Modified: $mtime\n";
79     }
80     print "\n";
81     exit 0;
82 }
83
84 sub display_entity ($$$$\$\@);
85 sub display_entity ($$$$\$\@) {
86     my $entity = shift;
87     my $ref = shift;
88     my $top = shift;
89     my $xmessage = shift;
90     my $this = shift;
91     my $attachments = shift;
92
93     my $head = $entity->head;
94     my $disposition = $head->mime_attr('content-disposition');
95     $disposition = 'inline' if not defined $disposition or $disposition eq '';
96     my $type = $entity->effective_type;
97     my $filename = $entity->head->recommended_filename;
98     $filename = '' unless defined $filename;
99     $filename = decode_rfc1522($filename);
100
101     if ($top and not $terse) {
102          my $header = $entity->head;
103          $$this .= "<pre class=\"headers\">\n";
104          if ($trim_headers) {
105               my @headers;
106               foreach (qw(From To Cc Subject Date)) {
107                    my $head_field = $head->get($_);
108                    next unless defined $head_field and $head_field ne '';
109                    push @headers, qq(<b>$_:</b> ) . html_escape(decode_rfc1522($head_field));
110               }
111               $$this .= join(qq(), @headers) unless $terse;
112          } else {
113               $$this .= html_escape(decode_rfc1522($entity->head->stringify));
114          }
115          $$this .= "</pre>\n";
116     }
117
118     unless (($top and $type =~ m[^text(?:/plain)?(?:;|$)]) or
119             ($type =~ m[^multipart/])) {
120         push @$attachments, $entity;
121         my @dlargs = ($ref, msg=>$xmessage, att=>$#$attachments);
122         push @dlargs, (filename=>$filename) if $filename ne '';
123         my $printname = $filename;
124         $printname = 'Message part ' . ($#$attachments + 1) if $filename eq '';
125         $$this .= '<pre class="mime">[<a href="' . bug_url(@dlargs) . qq{">$printname</a> } .
126                   "($type, $disposition)]</pre>\n";
127
128         if ($msg and defined($att) and $att eq $#$attachments) {
129             my $head = $entity->head;
130             chomp(my $type = $entity->effective_type);
131             my $body = $entity->stringify_body;
132             print "Content-Type: $type";
133             my ($charset) = $head->get('Content-Type:') =~ m/charset\s*=\s*\"?([\w-]+)\"?/i;
134             print qq(; charset="$charset") if defined $charset;
135             print "\n";
136             if ($filename ne '') {
137                 my $qf = $filename;
138                 $qf =~ s/"/\\"/g;
139                 $qf =~ s[.*/][];
140                 print qq{Content-Disposition: inline; filename="$qf"\n};
141             }
142             print "\n";
143             my $decoder = new MIME::Decoder($head->mime_encoding);
144             $decoder->decode(new IO::Scalar(\$body), \*STDOUT);
145             exit(0);
146         }
147     }
148
149     return if not $top and $disposition eq 'attachment' and not defined($att);
150     return unless ($type =~ m[^text/?] and
151                    $type !~ m[^text/(?:html|enriched)(?:;|$)]) or
152                   $type =~ m[^application/pgp(?:;|$)] or
153                   $entity->parts;
154
155     if ($entity->is_multipart) {
156         my @parts = $entity->parts;
157         foreach my $part (@parts) {
158             display_entity($part, $ref, 0, $xmessage,
159                            $$this, @$attachments);
160             $$this .= "\n";
161         }
162     } elsif ($entity->parts) {
163         # We must be dealing with a nested message.
164         $$this .= "<blockquote>\n";
165         my @parts = $entity->parts;
166         foreach my $part (@parts) {
167             display_entity($part, $ref, 1, $xmessage,
168                            $$this, @$attachments);
169             $$this .= "\n";
170         }
171         $$this .= "</blockquote>\n";
172     } else {
173          if (not $terse) {
174               my $content_type = $entity->head->get('Content-Type:') || "text/html";
175               my ($charset) = $content_type =~ m/charset\s*=\s*\"?([\w-]+)\"?/i;
176               my $body = $entity->bodyhandle->as_string;
177               $body = convert_to_utf8($body,$charset) if defined $charset;
178               $body = html_escape($body);
179               # Add links to URLs
180               $body =~ s,((ftp|http|https)://[\S~-]+?/?)((\&gt\;)?[)]?[']?[:.\,]?(\s|$)),<a href=\"$1\">$1</a>$3,go;
181               # Add links to bug closures
182               $body =~ s[(closes:\s*(?:bug)?\#?\s?\d+(?:,?\s*(?:bug)?\#?\s?\d+)*)
183                         ][my $temp = $1; $temp =~ s{(\d+)}{qq(<a href=").bug_url($1).qq(">$1</a>)}ge; $temp;]gxie;
184               $$this .= qq(<pre class="message">$body</pre>\n);
185          }
186     }
187 }
188
189 my %maintainer = %{getmaintainers()};
190 my %pkgsrc = %{getpkgsrc()};
191
192 my $indexentry;
193 my $showseverity;
194
195 my $tpack;
196 my $tmain;
197
198 my $dtime = strftime "%a, %e %b %Y %T UTC", gmtime;
199 $tail_html = $gHTMLTail;
200 $tail_html =~ s/SUBSTITUTE_DTIME/$dtime/;
201
202 my %status = %{get_bug_status(bug=>$ref)};
203 unless (%status) {
204     print <<EOF;
205 Content-Type: text/html; charset=utf-8
206
207 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
208 <html>
209 <head><title>$short - $gProject $gBug report logs</title></head>
210 <body>
211 <h1>$gProject $gBug report logs - $short</h1>
212 <p>There is no record of $gBug $short.
213 Try the <a href="http://$gWebDomain/">search page</a> instead.</p>
214 $tail_html</body></html>
215 EOF
216     exit 0;
217 }
218
219 $|=1;
220
221 $tpack = lc $status{'package'};
222 my @tpacks = splitpackages($tpack);
223
224 if  ($status{severity} eq 'normal') {
225         $showseverity = '';
226 } elsif (isstrongseverity($status{severity})) {
227         $showseverity = "Severity: <em class=\"severity\">$status{severity}</em>;\n";
228 } else {
229         $showseverity = "Severity: $status{severity};\n";
230 }
231
232 $indexentry .= "<div class=\"msgreceived\">\n";
233 $indexentry .= htmlize_packagelinks($status{package}, 0) . ";\n";
234
235 foreach my $pkg (@tpacks) {
236     my $tmaint = defined($maintainer{$pkg}) ? $maintainer{$pkg} : '(unknown)';
237     my $tsrc = defined($pkgsrc{$pkg}) ? $pkgsrc{$pkg} : '(unknown)';
238
239     $indexentry .=
240             htmlize_maintlinks(sub { $_[0] == 1 ? "Maintainer for $pkg is\n"
241                                             : "Maintainers for $pkg are\n" },
242                            $tmaint);
243     $indexentry .= ";\nSource for $pkg is\n".
244             '<a href="'.pkg_url(src=>$tsrc)."\">$tsrc</a>" if ($tsrc ne "(unknown)");
245     $indexentry .= ".\n";
246 }
247
248 $indexentry .= "<br>";
249 $indexentry .= htmlize_addresslinks("Reported by: ", \&submitterurl,
250                                 $status{originator}) . ";\n";
251 $indexentry .= sprintf "Date: %s.\n",
252                 (strftime "%a, %e %b %Y %T UTC", localtime($status{date}));
253
254 $indexentry .= "<br>Owned by: " . html_escape($status{owner}) . ".\n"
255               if length $status{owner};
256
257 $indexentry .= "</div>\n";
258
259 my @descstates;
260
261 $indexentry .= "<h3>$showseverity";
262 $indexentry .= sprintf "Tags: %s;\n", 
263                 html_escape(join(", ", sort(split(/\s+/, $status{tags}))))
264                         if length($status{tags});
265 $indexentry .= "<br>" if (length($showseverity) or length($status{tags}));
266
267 my @merged= split(/ /,$status{mergedwith});
268 if (@merged) {
269         my $descmerged = 'Merged with ';
270         my $mseparator = '';
271         for my $m (@merged) {
272                 $descmerged .= $mseparator."<a href=\"" . bug_url($m) . "\">#$m</a>";
273                 $mseparator= ",\n";
274         }
275         push @descstates, $descmerged;
276 }
277
278 if (@{$status{found_versions}}) {
279     my $foundtext = 'Found in ';
280     $foundtext .= (@{$status{found_versions}} == 1) ? 'version ' : 'versions ';
281     $foundtext .= join ', ', map html_escape($_), @{$status{found_versions}};
282     push @descstates, $foundtext;
283 }
284
285 if (@{$status{fixed_versions}}) {
286     my $fixedtext = '<strong>Fixed</strong> in ';
287     $fixedtext .= (@{$status{fixed_versions}} == 1) ? 'version ' : 'versions ';
288     $fixedtext .= join ', ', map html_escape($_), @{$status{fixed_versions}};
289     if (length($status{done})) {
290         $fixedtext .= ' by ' . html_escape(decode_rfc1522($status{done}));
291     }
292     push @descstates, $fixedtext;
293     push @descstates, '<a href="'.
294          version_url($status{package},
295                      $status{found_versions},
296                      $status{fixed_versions},
297                     ).qq{">Version Graph</a>};
298
299 } elsif (length($status{done})) {
300     push @descstates, "<strong>Done:</strong> ".html_escape(decode_rfc1522($status{done}));
301 } elsif (length($status{forwarded})) {
302     push @descstates, "<strong>Forwarded</strong> to ".maybelink($status{forwarded});
303 }
304
305
306 my @blockedby= split(/ /, $status{blockedby});
307 if (@blockedby && $status{"pending"} ne 'fixed' && ! length($status{done})) {
308     for my $b (@blockedby) {
309         my %s = %{get_bug_status($b)};
310         next if $s{"pending"} eq 'fixed' || length $s{done};
311         push @descstates, "Fix blocked by <a href=\"" . bug_url($b) . "\">#$b</a>: ".html_escape($s{subject});
312     }
313 }
314
315 my @blocks= split(/ /, $status{blocks});
316 if (@blocks && $status{"pending"} ne 'fixed' && ! length($status{done})) {
317     for my $b (@blocks) {
318         my %s = %{get_bug_status($b)};
319         next if $s{"pending"} eq 'fixed' || length $s{done};
320         push @descstates, "Blocking fix for <a href=\"" . bug_url($b) . "\">#$b</a>: ".html_escape($s{subject});
321     }
322 }
323
324 if ($buglog !~ m#^\Q$gSpoolDir/db#) {
325     push @descstates, "Bug is archived. No further changes may be made";
326 }
327
328 $indexentry .= join(";\n<br>", @descstates) . ".\n" if @descstates;
329 $indexentry .= "</h3>\n";
330
331 my $descriptivehead = $indexentry;
332
333 my $buglogfh;
334 if ($buglog =~ m/\.gz$/) {
335     my $oldpath = $ENV{'PATH'};
336     $ENV{'PATH'} = '/bin:/usr/bin';
337     $buglogfh = new IO::File "zcat $buglog |" or &quitcgi("open log for $ref: $!");
338     $ENV{'PATH'} = $oldpath;
339 } else {
340     $buglogfh = new IO::File "<$buglog" or &quitcgi("open log for $ref: $!");
341 }
342
343
344 my @records;
345 eval{
346      @records = read_log_records($buglogfh);
347 };
348 if ($@) {
349      quitcgi("Bad bug log for $gBug $ref. Unable to read records: $@");
350 }
351 undef $buglogfh;
352
353 =head2 handle_email_message
354
355      handle_email_message($record->{text},
356                           ref        => $bug_number,
357                           msg_number => $msg_number,
358                          );
359
360 Returns a decoded e-mail message and displays entities/attachments as
361 appropriate.
362
363
364 =cut
365
366 sub handle_email_message{
367      my ($email,%options) = @_;
368
369      my $output = '';
370      my $parser = new MIME::Parser;
371      # Because we are using memory, not tempfiles, there's no need to
372      # clean up here like in Debbugs::MIME
373      $parser->tmp_to_core(1);
374      $parser->output_to_core(1);
375      my $entity = $parser->parse_data( $email);
376      my @attachments = ();
377      display_entity($entity, $options{ref}, 1, $options{msg_number}, $output, @attachments);
378      return $output;
379
380 }
381
382 =head2 handle_record
383
384      push @log, handle_record($record,$ref,$msg_num);
385
386 Deals with a record in a bug log as returned by
387 L<Debbugs::Log::read_log_records>; returns the log information that
388 should be output to the browser.
389
390 =cut
391
392 sub handle_record{
393      my ($record,$bug_number,$msg_number,$seen_msg_ids) = @_;
394
395      my $output = '';
396      local $_ = $record->{type};
397      if (/html/) {
398           my $class = $record->{text} =~ /^<strong>(?:Acknowledgement|Reply|Information|Report|Notification)/ ? 'infmessage':'msgreceived';
399           $output .= decode_rfc1522($record->{text});
400           # Link to forwarded http:// urls in the midst of the report
401           # (even though these links already exist at the top)
402           $output =~ s,((?:ftp|http|https)://[\S~-]+?/?)([\)\'\:\.\,]?(?:\s|\.<|$)),<a href=\"$1\">$1</a>$2,go;
403           # Add links to the cloned bugs
404           $output =~ s{(Bug )(\d+)( cloned as bugs? )(\d+)(?:\-(\d+)|)}{$1.bug_links($2).$3.bug_links($4,$5)}eo;
405           # Add links to merged bugs
406           $output =~ s{(?<=Merged )([\d\s]+)(?=\.)}{join(' ',map {bug_links($_)} (split /\s+/, $1))}eo;
407           # Add links to blocked bugs
408           $output =~ s{(?<=Blocking bugs)(?:(of )(\d+))?( (?:added|set to|removed):\s+)([\d\s\,]+)}
409                       {(defined $2?$1.bug_links($2):'').$3.
410                             join(' ',map {bug_links($_)} (split /\,?\s+/, $4))}eo;
411           # Add links to reassigned packages
412           $output =~ s{(Bug reassigned from package \`)([^\']+)(' to \`)([^\']+)(')}
413           {$1.q(<a href=").pkg_url(pkg=>$2).qq(">$2</a>).$3.q(<a href=").pkg_url(pkg=>$4).qq(">$4</a>).$5}eo;
414           $output .= '<a href="' . bug_url($ref, msg => ($msg_number+1)) . '">Full text</a> and <a href="' .
415                bug_url($ref, msg => ($msg_number+1), mbox => 'yes') . '">rfc822 format</a> available.';
416
417           $output = qq(<div class="$class"><hr>\n<a name="$msg_number"></a>\n) . $output . "</div>\n";
418      }
419      elsif (/recips/) {
420           my ($msg_id) = $record->{text} =~ /^Message-Id:\s+<(.+)>/im;
421           if (defined $msg_id and exists $$seen_msg_ids{$msg_id}) {
422                return ();
423           }
424           elsif (defined $msg_id) {
425                $$seen_msg_ids{$msg_id} = 1;
426           }
427           $output .= qq(<hr><a name="$msg_number"></a>\n);
428           $output .= 'View this message in <a href="' . bug_url($ref, "msg=$msg_number", "mbox") . '">rfc822 format</a>';
429           $output .= handle_email_message($record->{text},
430                                     ref        => $bug_number,
431                                     msg_number => $msg_number,
432                                    );
433      }
434      elsif (/autocheck/) {
435           # Do nothing
436      }
437      elsif (/incoming-recv/) {
438           my ($msg_id) = $record->{text} =~ /^Message-Id:\s+<(.+)>/im;
439           if (defined $msg_id and exists $$seen_msg_ids{$msg_id}) {
440                return ();
441           }
442           elsif (defined $msg_id) {
443                $$seen_msg_ids{$msg_id} = 1;
444           }
445           # Incomming Mail Message
446           my ($received,$hostname) = $record->{text} =~ m/Received: \(at (\S+)\) by (\S+)\;/;
447           $output .= qq|<hr><p class="msgreceived"><a name="$msg_number"></a><a name="msg$msg_number">Message received</a> at |.
448                html_escape("$received\@$hostname") . q| (<a href="| . bug_url($ref, msg=>$msg_number) . '">full text</a>'.q|, <a href="| . bug_url($ref, msg=>$msg_number,mbox=>'yes') .'">mbox</a>)'.":</p>\n";
449           $output .= handle_email_message($record->{text},
450                                     ref        => $bug_number,
451                                     msg_number => $msg_number,
452                                    );
453      }
454      else {
455           die "Unknown record type $_";
456      }
457      return $output;
458 }
459
460 my $log='';
461 my $msg_num = 0;
462 my $skip_next = 0;
463 if (looks_like_number($msg) and ($msg-1) <= $#records) {
464      @records = ($records[$msg-1]);
465      $msg_num = $msg - 1;
466 }
467 my @log;
468 if ( $mbox ) {
469      my $date = strftime "%a %b %d %T %Y", localtime;
470      if (@records > 1) {
471           print qq(Content-Disposition: attachment; filename="bug_${ref}.mbox"\n);
472           print "Content-Type: text/plain\n\n";
473      }
474      else {
475           $msg_num++;
476           print qq(Content-Disposition: attachment; filename="bug_${ref}_message_${msg_num}.mbox"\n);
477           print "Content-Type: message/rfc822\n\n";
478      }
479      if ($mbox_status_message and @records > 1) {
480           my $status_message='';
481           my @status_fields = (retitle   => 'subject',
482                                package   => 'package',
483                                submitter => 'originator',
484                                severity  => 'severity',
485                                tag       => 'tags',
486                                owner     => 'owner',
487                                blocks    => 'blocks',
488                                forward   => 'forward',
489                               );
490           my ($key,$value);
491           while (($key,$value) = splice(@status_fields,0,2)) {
492                if (defined $status{$value} and length $status{$value}) {
493                     $status_message .= qq($key $ref $status{$value}\n);
494                }
495           }
496           print STDOUT qq(From unknown $date\n),
497                create_mime_message([From       => "$gBug#$ref <$ref\@$gEmailDomain>",
498                                     To         => "$gBug#$ref <$ref\@$gEmailDomain>",
499                                     Subject    => "Status: $status{subject}",
500                                     "Reply-To" => "$gBug#$ref <$ref\@$gEmailDomain>",
501                                    ],
502                                    <<END,);
503 $status_message
504 thanks
505
506
507 END
508      }
509      my $message_number=0;
510      my %seen_message_ids;
511      for my $record (@records) {
512           next if $record->{type} !~ /^(?:recips|incoming-recv)$/;
513           my $wanted_type = $mbox_maint?'recips':'incoming-recv';
514           # we want to include control messages anyway
515           my $record_wanted_anyway = 0;
516           my ($msg_id) = $record->{text} =~ /^Message-Id:\s+<(.+)>/im;
517           next if exists $seen_message_ids{$msg_id};
518           $seen_message_ids{$msg_id} = 1;
519           next if $msg_id =~/handler\..+\.ack(?:info)?\@/;
520           $record_wanted_anyway = 1 if $record->{text} =~ /^Received: \(at control\)/;
521           next if not $boring and $record->{type} ne $wanted_type and not $record_wanted_anyway and @records > 1;
522           my @lines = split( "\n", $record->{text}, -1 );
523           if ( $lines[ 1 ] =~ m/^From / ) {
524                my $tmp = $lines[ 0 ];
525                $lines[ 0 ] = $lines[ 1 ];
526                $lines[ 1 ] = $tmp;
527           }
528           if ( !( $lines[ 0 ] =~ m/^From / ) ) {
529                unshift @lines, "From unknown $date";
530           }
531           map { s/^(>*From )/>$1/ } @lines[ 1 .. $#lines ];
532           print join( "\n", @lines ) . "\n";
533      }
534      exit 0;
535 }
536
537 else {
538      my %seen_msg_ids;
539      for my $record (@records) {
540           $msg_num++;
541           if ($skip_next) {
542                $skip_next = 0;
543                next;
544           }
545           $skip_next = 1 if $record->{type} eq 'html' and not $boring;
546           push @log, handle_record($record,$ref,$msg_num,\%seen_msg_ids);
547      }
548 }
549
550 @log = reverse @log if $reverse;
551 $log = join("\n",@log);
552
553
554 print "Content-Type: text/html; charset=utf-8\n\n";
555
556 my $title = html_escape($status{subject});
557
558 my $dummy2 = $gWebHostBugDir;
559
560 print "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\n";
561 print <<END;
562 <HTML><HEAD>
563 <TITLE>$short - $title - $gProject $gBug report logs</TITLE>
564 <meta http-equiv="Content-Type" content="text/html;charset=utf-8">
565 <link rel="stylesheet" href="$gWebHostBugDir/css/bugs.css" type="text/css">
566 <script type="text/javascript">
567 <!--
568 function toggle_infmessages()
569 {
570         allDivs=document.getElementsByTagName("div");
571         for (var i = 0 ; i < allDivs.length ; i++ )
572         {
573                 if (allDivs[i].className == "infmessage")
574                 {
575                         allDivs[i].style.display=(allDivs[i].style.display == 'none') ? 'block' : 'none';
576                 }
577         }
578 }
579 -->
580 </script>
581 </HEAD>
582 <BODY>
583 END
584 print "<H1>" . "$gProject $gBug report logs - <A HREF=\"mailto:$ref\@$gEmailDomain\">$short</A>" .
585       "<BR>" . $title . "</H1>\n";
586
587 print "$descriptivehead\n";
588 print qq(<p><a href="mailto:$ref\@$gEmailDomain">Reply</a> ),
589      qq(or <a href="mailto:$ref-subscribe\@$gEmailDomain">subscribe</a> ),
590      qq(to this bug.</p>\n);
591 print qq(<p><a href="javascript:toggle_infmessages();">Toggle useless messages</a></p>);
592 printf qq(<div class="msgreceived"><p>View this report as an <a href="%s">mbox folder</a>, ).
593      qq(<a href="%s">status mbox</a>, <a href="%s">maintainer mbox</a></p></div>\n),
594      html_escape(bug_url($ref, mbox=>'yes')),
595      html_escape(bug_url($ref, mbox=>'yes',mboxstatus=>'yes')),
596      html_escape(bug_url($ref, mbox=>'yes',mboxmaint=>'yes'));
597 print "$log";
598 print "<HR>";
599 print "<p class=\"msgreceived\">Send a report that <a href=\"/cgi-bin/bugspam.cgi?bug=$ref\">this bug log contains spam</a>.</p>\n<HR>\n";
600 print $tail_html;
601
602 print "</BODY></HTML>\n";
603
604 exit 0;