@Ghazascanner
_2019runbot
Ghazascanner File Manager
server :Linux hosjweb-prod1 6.12.0-107.59.3.2.el9uek.x86_64 #1 SMP PREEMPT_DYNAMIC Mon Dec 22 10:16:59 PST 2025 x86_64
Current Path :
/
usr
/
local
/
lib
/
perl5
/
5.8.7
/
Net
/
demos
/
Path :
Upload File :
New :
File
Dir
//usr/local/lib/perl5/5.8.7/Net/demos/pop3
#!/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;