Re: help with Net::POP3

2002-01-09 Thread Michael R. Wolf
[EMAIL PROTECTED] (Cabezon aurélien) writes: > Here is the code : [...] And here is a piece of the code indented to aid understanding. #work with each mail## foreach $item (keys %$list) { # get mail $message = $handle->get($item); # print mail (waiting fo

Re: help with Net::POP3

2002-01-09 Thread Cabezon Aurélien
| You need to call $handle->quit (); | | /Jon Great, it works now ! I'm so stupid :p thx a lot. --- Cabezon Aurélien http://www.iSecureLabs.com -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: help with Net::POP3

2002-01-09 Thread Jon Molin
You need to call $handle->quit (); /Jon Cabezon Aurélien wrote: > > Hi list, > > I'm playing around Net::POP3. > I wanna make a script that is able to check for pop3 mail and then save them > in a MySQL database (not implemented yet, usefull for mailing archiving) > I'm at the start of the sc