about summary refs log tree commit homepage
path: root/lib/PublicInbox/NetReader.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2021-07-02 21:02:23 +0000
committerEric Wong <e@80x24.org>2021-07-03 22:09:48 +0000
commit3c3e6ae90d78970da6a6138345a2d1b7466ab9e1 (patch)
tree136cb8323dab4402c9ece04fddf4fedcb8b4caef /lib/PublicInbox/NetReader.pm
parent89af3a8a64cccadce39bf89b31c97e7049034ca5 (diff)
downloadpublic-inbox-3c3e6ae90d78970da6a6138345a2d1b7466ab9e1.tar.gz
IMAP flag-only synchronization doesn't fetch entire messages,
so we can safely bump the batch size iff a user specified one
for full messages to 10000 times that.

Since I sometimes wonder why nothing happens for several seconds
after starting "lei import $URL", we'll also show some progress
during the flag synchronization phase.
Diffstat (limited to 'lib/PublicInbox/NetReader.pm')
-rw-r--r--lib/PublicInbox/NetReader.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/PublicInbox/NetReader.pm b/lib/PublicInbox/NetReader.pm
index 0c2288d8..23445e7a 100644
--- a/lib/PublicInbox/NetReader.pm
+++ b/lib/PublicInbox/NetReader.pm
@@ -462,8 +462,9 @@ sub each_old_flags ($$$$) {
         my ($self, $mic, $uri, $l_uid) = @_;
         $l_uid ||= 1;
         my $sec = uri_section($uri);
-        my $bs = $self->{imap_opt}->{$sec}->{batch_size} // 10000;
+        my $bs = ($self->{imap_opt}->{$sec}->{batch_size} // 1) * 10000;
         my ($eml_cb, @args) = @{$self->{eml_each}};
+        $self->{quiet} or warn "# $uri syncing flags 1:$l_uid\n";
         for (my $n = 1; $n <= $l_uid; $n += $bs) {
                 my $end = $n + $bs;
                 $end = $l_uid if $end > $l_uid;