about summary refs log tree commit homepage
path: root/lib/PublicInbox/WatchMaildir.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2017-06-21 23:33:49 +0000
committerEric Wong <e@80x24.org>2017-06-22 00:31:58 +0000
commit9b80f2bedbe5a8a9154dfa0ba3c7e63012287bea (patch)
tree03fbd5e076b24e9a1fa9e8e942cc8a7fc810452b /lib/PublicInbox/WatchMaildir.pm
parent3ef89f98a662a135ae18dddf3ff3e61e8e3ca996 (diff)
downloadpublic-inbox-9b80f2bedbe5a8a9154dfa0ba3c7e63012287bea.tar.gz
Unfortunately, it appears we have to reject this and instead add
support filtering at View time(*), due to DKIM signatures in
messages from ruby-lang.org.

(*) which may not be worth it
Diffstat (limited to 'lib/PublicInbox/WatchMaildir.pm')
-rw-r--r--lib/PublicInbox/WatchMaildir.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/PublicInbox/WatchMaildir.pm b/lib/PublicInbox/WatchMaildir.pm
index c436742c..8588f16c 100644
--- a/lib/PublicInbox/WatchMaildir.pm
+++ b/lib/PublicInbox/WatchMaildir.pm
@@ -242,7 +242,7 @@ sub _scrubber_for {
         my ($inbox) = @_;
         my $f = $inbox->{filter};
         if ($f && $f =~ /::/) {
-                my @args;
+                my @args = (-inbox => $inbox);
                 # basic line splitting, only
                 # Perhaps we can have proper quote splitting one day...
                 ($f, @args) = split(/\s+/, $f) if $f =~ /\s+/;