about summary refs log tree commit homepage
path: root/lib
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2015-10-03 10:18:07 +0000
committerEric Wong <e@80x24.org>2015-10-03 10:40:13 +0000
commit9bc8cf2e9866393470cdb76a2af39d63f4246204 (patch)
treebd6d055ddc1ab7d153eeefbd91ed69fe6504c64d /lib
parentc68a1fcd75f103d08f8c2dabf9b3a1db4239f59c (diff)
downloadpublic-inbox-9bc8cf2e9866393470cdb76a2af39d63f4246204.tar.gz
For list where we are not the primary archival entry point,
defaulting to filter=scrub makes sense since their list
conventions may be more tolerant of HTML and other crap
than we are.
Diffstat (limited to 'lib')
-rw-r--r--lib/PublicInbox/Config.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/PublicInbox/Config.pm b/lib/PublicInbox/Config.pm
index 315d788b..0d73a867 100644
--- a/lib/PublicInbox/Config.pm
+++ b/lib/PublicInbox/Config.pm
@@ -61,7 +61,7 @@ sub lookup {
         defined $pfx or return;
 
         my %rv;
-        foreach my $k (qw(mainrepo address)) {
+        foreach my $k (qw(mainrepo address filter)) {
                 my $v = $self->{"$pfx.$k"};
                 $rv{$k} = $v if defined $v;
         }