openbsd-ports/mail/p5-Mail-POP3Client/pkg/DESCR
avsm 1bd1e0e511 - update to p5-Mail-POP3Client-2.7
- clean up DESCR with fmt(1)
- no capital in first letter of COMMENT
- revert MAINTAINER to ports@, angelos doesn't want it anymore
  (angelos@ ok)
2001-01-02 23:58:20 +00:00

18 lines
367 B
Plaintext

DESCRIPTION
This module implements an Object-Oriented interface to a POP3 server.
It is based on RFC1081.
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";
}