Net-IMAP-Simple-SSL

 view release on metacpan or  search on metacpan

META.yml  view on Meta::CPAN

# http://module-build.sourceforge.net/META-spec.html
#XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
name:         Net-IMAP-Simple-SSL
version:      1.3
version_from: lib/Net/IMAP/Simple/SSL.pm
installdirs:  site
requires:
    IO::Socket::SSL:               
    Net::IMAP::Simple:             0.95
    Test::More:                    

distribution_type: module
generated_by: ExtUtils::MakeMaker version 6.17

Makefile.PL  view on Meta::CPAN

use ExtUtils::MakeMaker;

WriteMakefile (
               AUTHOR        => 'Casey West <casey@geeknest.com>',
               ABSTRACT      => "SSL support for Net::IMAP::Simple",
               NAME          => 'Net::IMAP::Simple::SSL',
               PREREQ_PM     => {
                                 'Test::More' => '',
                                 'IO::Socket::SSL' => '',
                                 'Net::IMAP::Simple' => '0.95',
                                },
               VERSION_FROM  => 'lib/Net/IMAP/Simple/SSL.pm',
              );

README  view on Meta::CPAN

  
      $imap->login($user => $pass);
  
      my $total_messages = $imap->select("perl-advocacy");

DESCRIPTION
    This module is a subclass of Net::IMAP::SImple that includes SSL
    support. The interface is identical.

SEE ALSO
    Net::IMAP::Simple, IO::Socket::SSL, perl.

AUTHOR
    Casey West, <casey@geeknest.com>.

COPYRIGHT
      Copyright (c) 2004 Casey West.  All rights reserved.
      This module is free software; you can redistribute it and/or modify it
      under the same terms as Perl itself.

lib/Net/IMAP/Simple/SSL.pm  view on Meta::CPAN

package Net::IMAP::Simple::SSL;
# $Id: SSL.pm,v 1.3 2004/06/29 11:52:38 cwest Exp $
use strict;

use vars qw[$VERSION];
$VERSION = (qw$Revision: 1.3 $)[1];

use IO::Socket::SSL;
use base qw[Net::IMAP::Simple];

sub _port         { 993               }
sub _sock_from    { 'IO::Socket::SSL' }

1;

__END__

=head1 NAME

Net::IMAP::Simple::SSL - SSL support for Net::IMAP::Simple

=head1 SYNOPSIS

lib/Net/IMAP/Simple/SSL.pm  view on Meta::CPAN

  my $total_messages = $imap->select("perl-advocacy");

=head1 DESCRIPTION

This module is a subclass of L<Net::IMAP::SImple|Net::IMAP::Simple> that
includes SSL support. The interface is identical.

=head1 SEE ALSO

L<Net::IMAP::Simple>,
L<IO::Socket::SSL>,
L<perl>.

=head1 AUTHOR

Casey West, <F<casey@geeknest.com>>.

=head1 COPYRIGHT

  Copyright (c) 2004 Casey West.  All rights reserved.
  This module is free software; you can redistribute it and/or modify it



( run in 0.282 second using v1.01-cache-2.11-cpan-0d8aa00de5b )