]> Sergey Matveev's repositories - public-inbox.git/commitdiff
imap: support out-of-bounds ranges
authorEric Wong <e@yhbt.net>
Wed, 10 Jun 2020 07:04:35 +0000 (07:04 +0000)
committerEric Wong <e@yhbt.net>
Sat, 13 Jun 2020 07:55:45 +0000 (07:55 +0000)
"$UID_START:*" needs to return at least one message according
to RFC 3501 section 6.4.8.

While we're in the area, coerce ranges to (unsigned) integers by
adding zero ("+ 0") to reduce memory overhead.

lib/PublicInbox/IMAP.pm
t/imapd.t

index 3815141a15ec399716b3e1fc58dbccd4d4636bb0..ffa76bb0266a0534b27e85c4f212e111cc611bdd 100644 (file)
@@ -455,11 +455,13 @@ sub range_step ($$) {
                $$range_csv = undef;
        }
        if ($range =~ /\A([0-9]+):([0-9]+)\z/) {
-               ($beg, $end) = ($1, $2);
+               ($beg, $end) = ($1 + 0, $2 + 0);
        } elsif ($range =~ /\A([0-9]+):\*\z/) {
-               ($beg, $end) =  ($1, $ibx->mm->max // 0);
+               $beg = $1 + 0;
+               $end = $ibx->mm->max // 0;
+               $beg = $end if $beg > $end;
        } elsif ($range =~ /\A[0-9]+\z/) {
-               $beg = $end = $range;
+               $beg = $end = $range + 0;
        } else {
                return 'BAD fetch range';
        }
index 3d0be3408467785a96dfa5eb0b22e35d1f18ab4a..2c4315dec30fb19b003a790944ebb2c7e0227a0d 100644 (file)
--- a/t/imapd.t
+++ b/t/imapd.t
@@ -116,6 +116,19 @@ $ret = $mic->search('uid 1:*') or BAIL_OUT "SEARCH FAIL $@";
 is_deeply($ret, [ 1 ], 'search UID 1:* works');
 
 is_deeply(scalar $mic->flags('1'), [], '->flags works');
+{
+       # RFC 3501 section 6.4.8 states:
+       # Also note that a UID range of 559:* always includes the
+       # UID of the last message in the mailbox, even if 559 is
+       # higher than any assigned UID value.
+       my $exp = $mic->fetch_hash(1, 'UID');
+       $ret = $mic->fetch_hash('559:*', 'UID');
+       is_deeply($ret, $exp, 'beginning range too big');
+       for my $r (qw(559:558 558:559)) {
+               $ret = $mic->fetch_hash($r, 'UID');
+               is_deeply($ret, {}, "out-of-range UID FETCH $r");
+       }
+}
 
 for my $r ('1:*', '1') {
        $ret = $mic->fetch_hash($r, 'RFC822') or BAIL_OUT "FETCH $@";