public
Description: A simple module for interacting with IMAP accounts
Homepage: http://search.cpan.org/perldoc?Net::IMAP::Simple
Clone URL: git://github.com/jettero/net--imap--simple.git
name age message
file .gitignore Sat Jul 25 18:13:20 -0700 2009 ignore this stuff (updates) [jettero]
file .perlcriticrc Sun Jun 07 13:50:52 -0700 2009 you need to tell perlcritic to be critical... I... [jettero]
file .todo Sat Jun 20 14:53:42 -0700 2009 altered TODOs [jettero]
file Changes Tue Oct 27 07:55:27 -0700 2009 version bump [jettero]
file MANIFEST Tue Oct 27 07:57:52 -0700 2009 forgot to manifest the new test [jettero]
file MANIFEST.SKIP Fri Jul 17 11:32:05 -0700 2009 include static copy of net-imap-server-1.20 [jettero]
file Makefile.PL Mon Jul 20 10:23:34 -0700 2009 trying to deal with test failures from the cpan... [jettero]
file README Wed Jun 10 16:10:37 -0700 2009 point out bug queue [jettero]
file Simple.pm Tue Oct 27 07:55:27 -0700 2009 version bump [jettero]
file Simple.pod Tue Oct 27 06:20:14 -0700 2009 these really need "spaces" [jettero]
file TODO Thu Sep 24 04:14:40 -0700 2009 can't really publish this without docs. :) [jettero]
directory certs/ Sat Jun 06 04:39:42 -0700 2009 the certs [jettero]
directory contrib/ Sun Jul 26 04:51:35 -0700 2009 my dovecot-pipe-server-thingy -- OK -> PREAUTH [jettero]
directory inc/ Fri Jul 17 14:22:31 -0700 2009 BP's 1.22 with patch [jettero]
file slurp_net_imap_server.sh Fri Jul 17 11:32:05 -0700 2009 include static copy of net-imap-server-1.20 [jettero]
file start_server.sh Sat Jun 13 09:37:47 -0700 2009 made this startup and shutdown better [jettero]
file stop_server.sh Sun Jul 26 04:51:35 -0700 2009 my dovecot-pipe-server-thingy -- OK -> PREAUTH [jettero]
directory t/ Tue Oct 27 07:54:22 -0700 2009 got the search tests online, not very thorough,... [jettero]
README
NAME

Net::IMAP::Simple - Perl extension for simple IMAP account handling.

SYNOPSIS

    use strict;
    use warings;
    use Net::IMAP::Simple;

    my $server = Net::IMAP::Simple->new( 'someserver' );
    $server->login( 'someuser', 'somepassword' );

    for ( 1 .. $server->select( 'somefolder' ) ) {
        print $email->header('Subject'), "\n";
    }
    $server->quit();

COPYRIGHT

All rights reserved. This program is free software; you can redistribute
it and/or modify it under the same terms as Perl itself.

BUGS

https://rt.cpan.org/Dist/Display.html?Queue=Net-IMAP-Simple