about summary refs log tree commit homepage
path: root/lib/PublicInbox/IMAPD.pm
diff options
context:
space:
mode:
authorEric Wong <e@yhbt.net>2020-06-10 07:04:42 +0000
committerEric Wong <e@yhbt.net>2020-06-13 07:55:45 +0000
commitd67fff9abf168c7517311bdd8987ce174a60f2c4 (patch)
tree462f73d4c2f6046988c5c60967eb1d8963d4c5ba /lib/PublicInbox/IMAPD.pm
parent4d1a787a0a3c27a11c266b2f76293d09b858b38e (diff)
downloadpublic-inbox-d67fff9abf168c7517311bdd8987ce174a60f2c4.tar.gz
Having two large numbers separated by a dash can make visual
comparisons difficult when numbers are in the 3,000,000 range
for LKML.  So avoid the $UID_END value, since it can be
calculated from $UID_MIN.  And we can avoid large values of
$UID_MIN, too, by instead storing the block index and just
multiplying it by 50000 (and adding 1) on the server side.

Of course, LKML still goes up to 72, at the moment.
Diffstat (limited to 'lib/PublicInbox/IMAPD.pm')
-rw-r--r--lib/PublicInbox/IMAPD.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/PublicInbox/IMAPD.pm b/lib/PublicInbox/IMAPD.pm
index 6488dc0f..261d7560 100644
--- a/lib/PublicInbox/IMAPD.pm
+++ b/lib/PublicInbox/IMAPD.pm
@@ -31,7 +31,7 @@ sub imapd_refresh_ibx { # pi_config->each_inbox cb
                         join(', ', @$ngname). "\n";
                 return;
         } elsif ($ngname =~ m![^a-z0-9/_\.\-\~\@\+\=:]! ||
-                 $ngname =~ /\.[0-9]+-[0-9]+\z/) {
+                 $ngname =~ /\.[0-9]+\z/) {
                 warn "mailbox name invalid: newsgroup=`$ngname'\n";
                 return;
         }