]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/WatchMaildir.pm
watch: show path for warnings from spam messages
[public-inbox.git] / lib / PublicInbox / WatchMaildir.pm
index ec28a3034ff84962b034ea53fa27ede943e251a9..25b87e938e051dd82877066ec1d7e676ed8427d4 100644 (file)
@@ -188,15 +188,14 @@ sub _try_path {
                warn "unmappable dir: $1\n";
                return;
        }
-       if (!ref($inboxes) && $inboxes eq 'watchspam') {
-               return _remove_spam($self, $path);
-       }
-
        my $warn_cb = $SIG{__WARN__} || sub { print STDERR @_ };
        local $SIG{__WARN__} = sub {
                $warn_cb->("path: $path\n");
                $warn_cb->(@_);
        };
+       if (!ref($inboxes) && $inboxes eq 'watchspam') {
+               return _remove_spam($self, $path);
+       }
        foreach my $ibx (@$inboxes) {
                my $eml = mime_from_path($path) or next;
                import_eml($self, $ibx, $eml);