From 6fca0d67e7a657452de154e74ad02bf3657db5a1 Mon Sep 17 00:00:00 2001 From: Guilhem Moulin Date: Mon, 29 May 2017 18:04:19 +0200 Subject: Ensure the lower bound of UID ranges is at least 1. --- Changelog | 1 + lib/Net/IMAP/InterIMAP.pm | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Changelog b/Changelog index 755c8cb..36cbb23 100644 --- a/Changelog +++ b/Changelog @@ -3,6 +3,7 @@ interimap (0.4) UNRELEASED * pullimap: replace non RFC 5321-compliant envelope sender addresses (received by the IMAP FETCH ENVELOPE command) by the null sender address <>. + - Ensure the lower bound of UID ranges is at least 1. -- Guilhem Moulin Tue, 06 Dec 2016 17:37:01 +0100 diff --git a/lib/Net/IMAP/InterIMAP.pm b/lib/Net/IMAP/InterIMAP.pm index 7a1ba34..6f148b7 100644 --- a/lib/Net/IMAP/InterIMAP.pm +++ b/lib/Net/IMAP/InterIMAP.pm @@ -1185,7 +1185,7 @@ sub pull_new_messages($$&@) { do { my $range = ''; my $first; - my $since = $self->{_PCACHE}->{$mailbox}->{UIDNEXT} // 1; + my $since = $self->{_PCACHE}->{$mailbox}->{UIDNEXT} || 1; foreach my $uid (@ignore) { if ($since < $uid) { $first //= $since; -- cgit v1.2.3