]> Sergey Matveev's repositories - public-inbox.git/commitdiff
filter/base: remove MAX_MID_SIZE constant
authorEric Wong <e@80x24.org>
Mon, 28 Oct 2019 10:45:21 +0000 (10:45 +0000)
committerEric Wong <e@80x24.org>
Wed, 30 Oct 2019 08:48:16 +0000 (08:48 +0000)
We don't need it in the filter, here, since we have
one in the MDA package.

lib/PublicInbox/Filter/Base.pm

index 052cd3328aa66a470a9ddb19845edca3a1dcc4ce..7a0c720f679d793cdbc541eae5118e7c012f9152 100644 (file)
@@ -6,7 +6,6 @@ package PublicInbox::Filter::Base;
 use strict;
 use warnings;
 use PublicInbox::MsgIter;
-use constant MAX_MID_SIZE => 244; # max term size - 1 in Xapian
 
 sub No ($) { "*** We only accept plain-text mail, No $_[0] ***" }