The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

IO::Socket::CLI::IMAPS - Command-line interface to an SSL IMAP server.

VERSION

version 0.041

SYNOPSIS

 use IO::Socket::CLI::IMAPS;
 my $imap = IO::Socket::CLI::IMAPS->new(HOST => '192.168.1.3');
 $imap->read();
 do {
     $imap->prompt();
     $imap->read();
 } while ($imap->is_open());

DESCRIPTION

IO::Socket::CLI::IMAPS provides a command-line interface to IO::Socket::INET6 and IO::Socket::SSL.

METHODS

See IO::Socket::CLI.

BUGS

Does not verify SSL connections. Has not been tried with STARTTLS.

COPYRIGHT AND LICENSE

Copyright (C) 2012-2014 by Ashley Willis <ashley+perl@gitable.org>

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.12.4 or, at your option, any later version of Perl 5 you may have available.

SEE ALSO

IO::Socket::CLI

IO::Socket::INET6

IO::Socket::INET

IO::Socket::SSL

IO::Socket