On Thu, Jan 15, 2009 at 18:24, Petr Baudis <pasky@xxxxxxx> wrote: > > 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"; -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html