about summary refs log tree commit homepage
path: root/scripts/import_slrnspool
diff options
context:
space:
mode:
authorEric Wong <e@yhbt.net>2020-05-19 09:06:58 +0000
committerEric Wong <e@yhbt.net>2020-05-20 23:58:18 +0000
commitcfeee9edb97360a5dc328a72b93d5daf18888a41 (patch)
treec436c8f6d60ce1afdf4ab174f6fbc8eed3df6d9f /scripts/import_slrnspool
parentd4e0a141a691e25ca085660c4caca59b05a7827b (diff)
downloadpublic-inbox-cfeee9edb97360a5dc328a72b93d5daf18888a41.tar.gz
These aren't really supported and will probably be replaced with
better tools, but PublicInbox::Eml should be readily available
to anybody who already has our source tree.
Diffstat (limited to 'scripts/import_slrnspool')
-rwxr-xr-xscripts/import_slrnspool4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/import_slrnspool b/scripts/import_slrnspool
index 480e7b4f..bdcc605c 100755
--- a/scripts/import_slrnspool
+++ b/scripts/import_slrnspool
@@ -11,7 +11,7 @@
 use strict;
 use warnings;
 use PublicInbox::Config;
-use PublicInbox::MIME;
+use PublicInbox::Eml;
 use PublicInbox::Import;
 use PublicInbox::Git;
 sub usage { "Usage:\n".join('',grep(/\t/, `head -n 10 $0`)) }
@@ -70,7 +70,7 @@ for (; $exit == 0 && $n < $max; $n++) {
         $max = $n + $max_gap;
         print STDERR $fn, "\n";
 
-        my $mime = PublicInbox::MIME->new(do { local $/; <$fh> });
+        my $mime = PublicInbox::Eml->new(do { local $/; <$fh> });
         $filter->scrub($mime);
         $im->add($mime);