]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/DummyInbox.pm
No ext_urls
[public-inbox.git] / lib / PublicInbox / DummyInbox.pm
index e38f9e5a432a30045864287badd99cef2eacba4b..c516eec40a6352cb8e08c89bf97301288686473f 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2020 all contributors <meta@public-inbox.org>
+# Copyright (C) 2020-2021 all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 #
 # An EXAMINE-able, PublicInbox::Inbox-like object for IMAP.  Some
@@ -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;