"Jacob Helwig" [off-list ref] writes:
On Thu, Jan 15, 2009 at 18:24, Petr Baudis [off-list ref] wrote:
quoted
IIRC I found no way to actually make a gmane link since it requires POST
query for the searches or something.
$ cat bin/gmane-links.pl
#!/usr/bin/perl
use strict;
use warnings;
use Mail::Summary::Tools::ArchiveLink::Gmane;
unless ($ARGV[0]) {
print STDERR "Must provide a message-id.\n";
exit 1;
}
my $link = Mail::Summary::Tools::ArchiveLink::Gmane->new(message_id =>
$ARGV[0]);
print "Thread: " . $link->thread_uri() . "\n";
print "Message: " . $link->message_uri() . "\n";
Not quite, if message_id means what I think it means.
Pasky searches for the title of the message, and he does not have the
Message-ID header of the original message.