Mail::Box::IMAP4::SSL - handle IMAP4 folders with SSL


Mail-Box-IMAP4-SSL documentation  | view source Contained in the Mail-Box-IMAP4-SSL distribution.

Index


NAME

Top

Mail::Box::IMAP4::SSL - handle IMAP4 folders with SSL

VERSION

Top

This documentation describes version 0.02.

INHERITANCE

Top

     Mail::Box::IMAP4::SSL
       is a Mail::Box::IMAP4
       is a Mail::Box::Net
       is a Mail::Box
       is a Mail::Reporter

SYNOPSIS

Top

     use Mail::Box::IMAP4::SSL;
     my $folder = new Mail::Box::IMAP4::SSL(
         username => 'johndoe',
         password => 'x_marks_the_spot',
         server_name => 'imap.example.com',
     );

DESCRIPTION

Top

This is a thin subclass of Mail::Box::IMAP4 to provide IMAP over SSL (aka IMAPS). It hides the complexity of setting up Mail::Box::IMAP4 with IO::Socket::SSL, Mail::IMAPClient and Mail::Transport::IMAP4.

In all other respects, it resembles Mail::Box::IMAP4. See that module for documentation.

METHODS

Top

Mail::Box::IMAP4::SSL->new( %options )

     my $folder = new Mail::Box::IMAP4::SSL(
         username => 'johndoe',
         password => 'x_marks_the_spot',
         server_name => 'imap.example.com',
         %other_options
     );

The username, password and server_name options arguments are required. The server_port option is automatically set to the standard IMAPS port 993, but can be changed if needed. See Mail::Box::IMAP4 for additional options.

Note: It is an error to provide a transporter options, as this class exists only to create an SSL-secured transporter for Mail::Box::IMAP4.

BUGS

Top

Please report any bugs or feature requests using the CPAN Request Tracker. Bugs can be submitted through the web interface at http://rt.cpan.org/Dist/Display.html?Queue=Mail::Box::IMAP4::SSL

When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.

Please limit your bug/feature reports to SSL-specific issues. All other issues should be directed to the maintainer of Mail::Box::IMAP4.

SEE ALSO

Top

AUTHOR

Top

David A. Golden (DAGOLDEN)

COPYRIGHT AND LICENSE

Top


Mail-Box-IMAP4-SSL documentation  | view source Contained in the Mail-Box-IMAP4-SSL distribution.