Update to 2.9
Approved by: maintainer
This commit is contained in:
parent
e2ebb48573
commit
91a1772fbc
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=48006
@ -6,7 +6,7 @@
|
||||
#
|
||||
|
||||
PORTNAME= Mail-POP3Client
|
||||
PORTVERSION= 2.7
|
||||
PORTVERSION= 2.9
|
||||
CATEGORIES= mail perl5
|
||||
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
||||
MASTER_SITE_SUBDIR= Mail
|
||||
|
@ -1 +1 @@
|
||||
MD5 (POP3Client-2.7.tar.gz) = 4d31818aa5bfa8ccea711b23b25640ef
|
||||
MD5 (POP3Client-2.9.tar.gz) = baf932b842bc5e1c8283548fcdb72ab7
|
||||
|
@ -1,16 +1,16 @@
|
||||
DESCRIPTION
|
||||
DESCRIPTION
|
||||
|
||||
This module implements an Object-Oriented interface to a POP3 server. It is
|
||||
based on RFC1081.
|
||||
|
||||
USAGE
|
||||
USAGE
|
||||
|
||||
Here is a simple example to list out the headers in your remote mailbox:
|
||||
|
||||
#!/usr/local/bin/perl
|
||||
#!/usr/bin/perl
|
||||
|
||||
use Mail::POP3Client;
|
||||
use Mail::POP3Client;
|
||||
$pop = new Mail::POP3Client("me", "mypassword", "pop3.do.main");
|
||||
for ($i = 1; $i <= $pop->Count; $i++) {
|
||||
for ($i = 1; $i <= $pop->Count; $i++) {
|
||||
print $pop->Head($i), "\n";
|
||||
}
|
||||
}
|
||||
|
@ -1,8 +1,5 @@
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Mail/POP3Client.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/auto/Mail/POP3Client/autosplit.ix
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Mail/POP3Client/.packlist
|
||||
@dirrm lib/perl5/site_perl/%%PERL_VER%%/auto/Mail/POP3Client
|
||||
@unexec rmdir -f %D/lib/perl5/site_perl/%%PERL_VER%%/Mail 2>/dev/null || true
|
||||
@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Mail/POP3Client
|
||||
@dirrm lib/perl5/site_perl/%%PERL_VER%%/auto/Mail
|
||||
@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Mail
|
||||
@dirrm lib/perl5/site_perl/%%PERL_VER%%/Mail
|
||||
@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Mail 2>/dev/null || true
|
||||
|
Loading…
Reference in New Issue
Block a user