the server to search old mail and EXPUNGE them.
- Ensure the lower bound of UID ranges is at least 1.
- Fix manpage generation with pandoc >=2.1.
+ - Specify minimum Perl and Net::SSLeay versions.
-- Guilhem Moulin <guilhem@guilhem.org> Tue, 06 Dec 2016 17:37:01 +0100
-InterIMAP depends on the following Perl modules:
+InterIMAP depends on Perl >=5.20 and the following Perl modules:
- Compress::Raw::Zlib (core module)
- Config::Tiny
- Getopt::Long (core module)
- MIME::Base64 (core module) if authentication is required
- List::Util (core module)
- - Net::SSLeay
+ - Net::SSLeay >=1.73
- POSIX (core module)
- Socket (core module)
- Time::HiRes (core module) if 'logfile' is set
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#----------------------------------------------------------------------
+use v5.14.2;
use strict;
use warnings;
use Config::Tiny ();
use Errno qw/EEXIST EINTR/;
use Fcntl qw/F_GETFD F_SETFD FD_CLOEXEC/;
-use Net::SSLeay ();
+use Net::SSLeay 1.73 ();
use List::Util qw/all first/;
use POSIX ':signal_h';
use Socket qw/SOCK_STREAM IPPROTO_TCP AF_INET AF_INET6 SOCK_RAW :addrinfo/;
use strict;
use warnings;
+use v5.20.2;
our $VERSION = '0.3';
my $NAME = 'pullimap';