]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/DummyInbox.pm
rename {pi_config} fields to {pi_cfg}
[public-inbox.git] / lib / PublicInbox / DummyInbox.pm
index e38f9e5a432a30045864287badd99cef2eacba4b..981043ce7ef5305f7822b7c33e5c71e88229d46d 100644 (file)
@@ -7,15 +7,16 @@
 package PublicInbox::DummyInbox;
 use strict;
 
-sub created_at { 0 } # Msgmap::created_at
+sub uidvalidity { 0 } # Msgmap::created_at
 sub mm { shift }
-sub max { undef } # Msgmap::max
-sub msg_range { [] } # Msgmap::msg_range
+sub uid_range { [] } # Over::uid_range
+sub subscribe_unlock { undef };
 
 no warnings 'once';
-*query_xover = \&msg_range;
+*max = \&uidvalidity;
+*query_xover = \&uid_range;
 *over = \&mm;
-*subscribe_unlock = *unsubscribe_unlock =
-       *get_art = *description = *base_url = \&max;
+*isrch = *search = *unsubscribe_unlock =
+       *get_art = *description = *base_url = \&subscribe_unlock;
 
 1;