On Fri, Nov 14, 2008 at 7:34 AM, David Cantrell <[EMAIL PROTECTED]> wrote:
> Does anyone know who sent this report?
> http://www.nntp.perl.org/group/perl.cpan.testers/2008/11/msg2553083.html
>
> The magic lookup thing doesn't provide a valid email address.
It wasn't sent with a valid email address. Just "[EMAIL PROTECTED]" sent
from 209-209-39-77.static.oak.inreach.net. Nothing in the CPAN
Testers architecture requires a valid "From" header.
FWIW -- I keep this script handy to browse full headers on reports.
#!/usr/bin/env perl
use strict;
use warnings;
use Net::NNTP;
my $msg_id = shift @ARGV;
die "Usage: $0 <msg_id>\n" unless $msg_id;
my $nntp = Net::NNTP->new('nntp.perl.org') or die "Couldn't connect\n";
$nntp->reader;
$nntp->group("perl.cpan.testers");
$nntp->article($msg_id, *STDOUT);
-- David