home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Australian Personal Computer 2004 July
/
APC0407D2.iso
/
workshop
/
apache
/
files
/
ActivePerl-5.8.3.809-MSWin32-x86.msi
/
_2873ce9f4d23217148f9bb8faa0be42e
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2004-02-02
|
376 b
|
25 lines
#!/usr/local/bin/perl -w
use blib;
use Net::POP3;
use Getopt::Long;
$opt_debug = 0;
$opt_user = undef;
GetOptions(qw(debug user=s));
$pop = Net::POP3->new('backup3', Debug => $opt_debug ? 6 : 0);
$user = $opt_user || $ENV{USER} || $ENV{LOGNAME};
$count = $pop->login($user);
if($count)
{
$m = $pop->get(1);
print @$m if $m;
}
$pop->quit;