X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=lib%2FPublicInbox%2FAltId.pm;h=6d16242a33b041cfc00862b75df66266c20a12e3;hb=6512b1245ebc6fe30bb32227c0ef8f912d4988ab;hp=6b03d603e78efdb3caf61bd1baeb69911eb75238;hpb=b58d0f75857b8e3372cfd516f248ef70c9eea150;p=public-inbox.git diff --git a/lib/PublicInbox/AltId.pm b/lib/PublicInbox/AltId.pm index 6b03d603..6d16242a 100644 --- a/lib/PublicInbox/AltId.pm +++ b/lib/PublicInbox/AltId.pm @@ -1,4 +1,4 @@ -# Copyright (C) 2016-2019 all contributors +# Copyright (C) 2016-2020 all contributors # License: AGPL-3.0+ # Used for giving serial numbers to messages. This can be tied to @@ -22,7 +22,7 @@ sub new { my ($class, $ibx, $spec, $writable) = @_; my ($type, $prefix, $query) = split(/:/, $spec, 3); $type eq 'serial' or die "non-serial not supported, yet\n"; - + $prefix =~ /\A\w+\z/ or warn "non-word prefix not searchable\n"; my %params = map { my ($k, $v) = split(/=/, uri_unescape($_), 2); $v = '' unless defined $v; @@ -30,7 +30,7 @@ sub new { } split(/[&;]/, $query); my $f = $params{file} or die "file: required for $type spec $spec\n"; unless (index($f, '/') == 0) { - if (($ibx->{version} || 1) == 1) { + if ($ibx->version == 1) { $f = "$ibx->{inboxdir}/public-inbox/$f"; } else { $f = "$ibx->{inboxdir}/$f"; @@ -39,6 +39,7 @@ sub new { bless { filename => $f, writable => $writable, + prefix => $prefix, xprefix => 'X'.uc($prefix), }, $class; }