X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=scripts%2Fimport_vger_from_mbox;h=c33e42e45c2823e1e87e9a2139fea60efc132468;hb=25fb42242320ffb55655d89268ddbb468eab9a6a;hp=0e5ba6b47b73fc0994f99f1dab6669329d74cd28;hpb=95bdac7f09c69036efed537a4d03d5bdd2ae4eb6;p=public-inbox.git diff --git a/scripts/import_vger_from_mbox b/scripts/import_vger_from_mbox index 0e5ba6b4..c33e42e4 100644 --- a/scripts/import_vger_from_mbox +++ b/scripts/import_vger_from_mbox @@ -1,21 +1,20 @@ #!/usr/bin/perl -w -# Copyright (C) 2016-2020 all contributors +# Copyright (C) 2016-2021 all contributors # License: AGPL-3.0+ use strict; use warnings; use Getopt::Long qw/:config gnu_getopt no_ignore_case auto_abbrev/; -use PublicInbox::MIME; use PublicInbox::InboxWritable; -use PublicInbox::Import; -use PublicInbox::MDA; my $usage = "usage: $0 NAME EMAIL DIR \$dry_run, 'V|version=i' => \$version, 'F|format=s' => \$variant, + 'filter=s' => \$filter, ); GetOptions(%opts) or die $usage; if ($variant ne 'mboxrd' && $variant ne 'mboxo') { @@ -29,7 +28,7 @@ my $ibx = { name => $name, version => $version, address => [ $email ], - filter => 'PublicInbox::Filter::Vger', + filter => $filter, }; $ibx = PublicInbox::Inbox->new($ibx); unless ($dry_run) {