]> Sergey Matveev's repositories - public-inbox.git/commitdiff
add scripts/xhdr-num2mid example
authorEric Wong <e@80x24.org>
Thu, 28 Jul 2016 22:00:08 +0000 (22:00 +0000)
committerEric Wong <e@80x24.org>
Thu, 28 Jul 2016 22:00:08 +0000 (22:00 +0000)
This is used to quickly generate an article number to Message-ID
mapping.

Usage:

NNTPSERVER=news.example.org ./scripts/xhdr-num2mid GROUP >file

MANIFEST
scripts/xhdr-num2mid [new file with mode: 0755]

index 297301d25cf2e9e63e5fe178e554b37a237672f1..308da06201fe6af4616a451a96c14f807c281317 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -102,6 +102,7 @@ scripts/import_vger_from_mbox
 scripts/report-spam
 scripts/slrnspool2maildir
 scripts/ssoma-replay
+scripts/xhdr-num2mid
 t/address.t
 t/cgi.t
 t/check-www-inbox.perl
diff --git a/scripts/xhdr-num2mid b/scripts/xhdr-num2mid
new file mode 100755 (executable)
index 0000000..f1e7ea3
--- /dev/null
@@ -0,0 +1,30 @@
+#!/usr/bin/perl -w
+# Copyright (C) 2016 all contributors <meta@public-inbox.org>
+# License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
+# Useful for mapping article IDs from existing NNTP servers to MIDs
+use strict;
+use warnings;
+use Net::NNTP;
+use Data::Dumper;
+my $usage = "usage: NNTPSERVER=news.example.org $0 GROUP [FIRST_NUM]\n";
+my $group = shift or die $usage;
+my $nntp = Net::NNTP->new($ENV{NNTPSERVER} || '127.0.0.1');
+my ($num, $first, $last) = $nntp->group($group);
+die "Invalid group\n" if !(defined $num && defined $first && defined $last);
+my $arg_first = shift;
+if (defined $arg_first) {
+       $arg_first =~ /\A\d+\z/ or die $usage;
+       $first = $arg_first;
+}
+
+my $batch = 1000;
+my $i;
+for ($i = $first; $i < $last; $i += $batch) {
+       my $j = $i + $batch;
+       $j = $last if $j > $last;
+       my $num2mid = $nntp->xhdr('Message-ID', "$i-$j");
+       for my $n ($i..$j) {
+               defined(my $mid = $num2mid->{$n}) or next;
+               print "$n $mid\n";
+       }
+}