Re: new toy

[email protected] (H . Merijn Brand) Mon, 27 Aug 2001 16:34:53 +0200
Newsgroups perl.bugmongers
Message-ID <[email protected]>
On Mon 27 Aug 2001 16:29, [email protected] (Robert Spier) wrote:
> [email protected] writes:
> 
> Nothing special.  It let me type closebug 20000102.0001 and then
> prompted for content of the note.  When I was on a bug closing binge
> where lots of bugs had similar things, I'd just use:
>     echo 'fixed in perl-current' | closebug 12345...
> 
> #!/usr/bin/perl -w
> 
> use strict;
> my $bugid = $ARGV[0] || die "No bugid specified";
> open(MAIL,"|/usr/lib/sendmail -t") || die "can't open sendmail";
> print MAIL 
> qq{From: user+bug$bugid\@host.obfuscated.com
> Subject: [ID $bugid]
> To: close_$bugid\@bugs.perl.org
> 
> };
> print MAIL $_ while(<STDIN>);
> close MAIL;

A pattern we discovered during p5p diner in YAPC::Europe is that there are
quite a few bugs in the database that *might* be closed based on the fact that
in the chain of reply messages the text "Thanks, applied" appears. We cannot
do this blindly however, since some of those applied patches have nothing to
do with the original posted bug report, but with (one of its) spinnoffs.

Just a hint towards diggers that are subscribed to bugmongers ...

-- 
H.Merijn Brand    Amsterdam Perl Mongers (http://www.amsterdam.pm.org/)
using perl-5.6.1, 5.7.1 & 628 on HP-UX 10.20 & 11.00, AIX 4.2, AIX 4.3,
     WinNT 4, Win2K pro & WinCE 2.11 often with Tk800.022 &/| DBD-Unify
ftp://ftp.funet.fi/pub/languages/perl/CPAN/authors/id/H/HM/HMBRAND/