]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/Inbox.pm
inbox: remove POSIX strftime import
[public-inbox.git] / lib / PublicInbox / Inbox.pm
index 0d28dd04023e95338e456c8ac2f7403f71bcca12..76aeefbdd0e4b4c2c0d1d0bdc4353fd3d2e54d08 100644 (file)
@@ -9,7 +9,6 @@ use PublicInbox::Git;
 use PublicInbox::MID qw(mid2path);
 use Devel::Peek qw(SvREFCNT);
 use PublicInbox::MIME;
-use POSIX qw(strftime);
 
 my $cleanup_timer;
 eval {
@@ -95,6 +94,15 @@ sub new {
        if (defined $dir && -f "$dir/inbox.lock") {
                $opts->{version} = 2;
        }
+
+       # allow any combination of multi-line or comma-delimited hide entries
+       my $hide = {};
+       if (defined(my $h = $opts->{hide})) {
+               foreach my $v (@$h) {
+                       $hide->{$_} = 1 foreach (split(/\s*,\s*/, $v));
+               }
+               $opts->{-hide} = $hide;
+       }
        bless $opts, $class;
 }