aboutsummaryrefslogtreecommitdiffstats
path: root/mail/p5-Mail-POP3Client/pkg-descr
diff options
context:
space:
mode:
Diffstat (limited to 'mail/p5-Mail-POP3Client/pkg-descr')
-rw-r--r--mail/p5-Mail-POP3Client/pkg-descr16
1 files changed, 16 insertions, 0 deletions
diff --git a/mail/p5-Mail-POP3Client/pkg-descr b/mail/p5-Mail-POP3Client/pkg-descr
new file mode 100644
index 000000000000..0322fecfa6f3
--- /dev/null
+++ b/mail/p5-Mail-POP3Client/pkg-descr
@@ -0,0 +1,16 @@
+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/local/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";
+} \ No newline at end of file