KZ has asked for the wisdom of the Perl Monks concerning the following question:
now, if i have 25 messages then only 2 or 3 messages are returned and it appears as if the manager cant see the first few messagesmy $mgr = new Mail::Box::Manager; my $pop = $mgr->open(type => 'pop3',folder => '/' ,username => $userna +me, password => $password ,server_name => $serveraddress ,server_port + => $serverport, access => 'rw' ) or die("Cant open account"); my $count = scalar $pop->messages; print $count;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: getting list of all POP3 messages
by neuroball (Pilgrim) on Jan 26, 2004 at 07:22 UTC | |
by KZ (Initiate) on Jan 26, 2004 at 09:16 UTC | |
by markov (Scribe) on Jan 26, 2004 at 09:47 UTC | |
|
Re: getting list of all POP3 messages
by Anonymous Monk on Jan 26, 2004 at 09:12 UTC | |
|
Re: getting list of all POP3 messages
by zentara (Cardinal) on Jan 26, 2004 at 20:53 UTC | |
by KZ (Initiate) on Jan 27, 2004 at 05:10 UTC | |
by KZ (Initiate) on Jan 27, 2004 at 05:27 UTC |