freebsd-ports/mail/p5-Mail-POP3Client/pkg-descr

19 lines
416 B
Text
Raw Normal View History

2001-09-20 10:43:24 +02:00
DESCRIPTION
This module implements an Object-Oriented interface to a POP3 server. It is
based on RFC1939.
2001-09-20 10:43:24 +02:00
USAGE
Here is a simple example to list out the headers in your remote mailbox:
2001-09-20 10:43:24 +02:00
#!/usr/bin/perl
2001-09-20 10:43:24 +02:00
use Mail::POP3Client;
$pop = new Mail::POP3Client("me", "mypassword", "pop3.do.main");
2001-09-20 10:43:24 +02:00
for ($i = 1; $i <= $pop->Count; $i++) {
print $pop->Head($i), "\n";
2001-09-20 10:43:24 +02:00
}
WWW: http://search.cpan.org/dist/Mail-POP3Client/