diff options
Diffstat (limited to 'lib/Net')
| -rw-r--r-- | lib/Net/IMAP/InterIMAP.pm | 7 | 
1 files changed, 4 insertions, 3 deletions
| diff --git a/lib/Net/IMAP/InterIMAP.pm b/lib/Net/IMAP/InterIMAP.pm index a171554..55a18a0 100644 --- a/lib/Net/IMAP/InterIMAP.pm +++ b/lib/Net/IMAP/InterIMAP.pm @@ -1,6 +1,6 @@  #----------------------------------------------------------------------  # A minimal IMAP4 client for QRESYNC-capable servers -# Copyright © 2015-2020 Guilhem Moulin <guilhem@fripost.org> +# Copyright © 2015-2022 Guilhem Moulin <guilhem@fripost.org>  #  # This program is free software: you can redistribute it and/or modify  # it under the terms of the GNU General Public License as published by @@ -16,7 +16,7 @@  # along with this program.  If not, see <https://www.gnu.org/licenses/>.  #---------------------------------------------------------------------- -package Net::IMAP::InterIMAP v0.5.6; +package Net::IMAP::InterIMAP v0.5.7;  use v5.20.0;  use warnings;  use strict; @@ -1312,7 +1312,8 @@ sub pull_new_messages($$&@) {          # 2^32-1: don't use '*' since the highest UID can be known already          $range .= "$since:4294967295"; -        $UIDNEXT = $cache->{UIDNEXT} // $self->panic(); # sanity check +        $UIDNEXT = $cache->{UIDNEXT} // +            $self->panic("Unknown UIDNEXT value - non-compliant server?");          $self->fetch($range, "($attrs)", sub($) {              my $mail = shift;              $UIDNEXT = $mail->{UID} + 1 if $UIDNEXT <= $mail->{UID}; | 
