mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
5171a39d60
Add WWW. PR: 52283 Submitted by: Mathieu Arnold <m@absolight.net>
19 lines
416 B
Plaintext
19 lines
416 B
Plaintext
DESCRIPTION
|
|
|
|
This module implements an Object-Oriented interface to a POP3 server. It is
|
|
based on RFC1939.
|
|
|
|
USAGE
|
|
|
|
Here is a simple example to list out the headers in your remote mailbox:
|
|
|
|
#!/usr/bin/perl
|
|
|
|
use Mail::POP3Client;
|
|
$pop = new Mail::POP3Client("me", "mypassword", "pop3.do.main");
|
|
for ($i = 1; $i <= $pop->Count; $i++) {
|
|
print $pop->Head($i), "\n";
|
|
}
|
|
|
|
WWW: http://search.cpan.org/dist/Mail-POP3Client/
|