X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=scripts%2Fimport_slrnspool;h=480e7b4fa5ade57aa42d36de01e9861a964e75cd;hb=e39585ee2bdcbeaab7b6bd33b3568021042d0879;hp=e7ea45c1242a7f616201f4fe7718543e7730ec1b;hpb=7715c70e5a8667fbd9eade0cffb6ab05a714dd5d;p=public-inbox.git diff --git a/scripts/import_slrnspool b/scripts/import_slrnspool index e7ea45c1..480e7b4f 100755 --- a/scripts/import_slrnspool +++ b/scripts/import_slrnspool @@ -1,5 +1,5 @@ #!/usr/bin/perl -w -# Copyright (C) 2015-2018 all contributors +# Copyright (C) 2015-2020 all contributors # License: AGPL-3.0+ # # Incremental (or one-shot) importer of a slrnpull news spool @@ -26,7 +26,7 @@ my $config = PublicInbox::Config->new; my $ibx = $config->lookup($recipient); my $git = $ibx->git; my $im; -if (($ibx->{version} || 1) == 2) { +if ($ibx->version == 2) { require PublicInbox::V2Writable; $im = PublicInbox::V2Writable->new($ibx); $im->{parallel} = 0; # pointless to be parallel for a single message @@ -47,7 +47,7 @@ sub get_min { my $out = $git->qx('config', "--file=$f", key($ibx)); $out ||= 0; chomp $out; - $out =~ /\A\d+\z/ and return $out; + $out =~ /\A[0-9]+\z/ and return $out; 0; } @@ -70,7 +70,7 @@ for (; $exit == 0 && $n < $max; $n++) { $max = $n + $max_gap; print STDERR $fn, "\n"; - my $mime = PublicInbox::MIME->new(eval { local $/; <$fh> }); + my $mime = PublicInbox::MIME->new(do { local $/; <$fh> }); $filter->scrub($mime); $im->add($mime);