File: README

package info (click to toggle)
libnet-imap-simple-perl 1.2211-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, trixie
  • size: 372 kB
  • sloc: perl: 1,574; makefile: 4
file content (26 lines) | stat: -rw-r--r-- 589 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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