about summary refs log tree commit homepage
path: root/lib/PublicInbox/AltId.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/AltId.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/AltId.pm')
-rw-r--r--lib/PublicInbox/AltId.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/PublicInbox/AltId.pm b/lib/PublicInbox/AltId.pm
index 6fdc3a2d..73fecd5e 100644
--- a/lib/PublicInbox/AltId.pm
+++ b/lib/PublicInbox/AltId.pm
@@ -9,7 +9,7 @@ use URI::Escape qw(uri_unescape);
 # spec: TYPE:PREFIX:param1=value1&param2=value2&...
 # Example: serial:gmane:file=/path/to/altmsgmap.sqlite3
 sub new {
-        my ($class, $inbox, $spec) = @_;
+        my ($class, $inbox, $spec, $writable) = @_;
         my ($type, $prefix, $query) = split(/:/, $spec, 3);
         $type eq 'serial' or die "non-serial not supported, yet\n";
 
@@ -25,7 +25,7 @@ sub new {
                 $f = "$inbox->{mainrepo}/public-inbox/$f";
         }
         bless {
-                mm_alt => PublicInbox::Msgmap->new_file($f),
+                mm_alt => PublicInbox::Msgmap->new_file($f, $writable),
                 xprefix => 'X'.uc($prefix),
         }, $class;
 }