Hi all, I've tried to verify if an email address exists using the Net::SMTP module but the result is always 1, doesn't matter if the address exists or not.
I've used the following code: use Net::SMTP; my $smtp = Net::SMTP -> new($server, Debug => 1, Timeout => 60, ); foreach my $mail(@email) { print $smtp -> verify($mail); } #$smtp -> quit; I've took a look in the log file and it tells me that the email address cannot be verified, but it will pass the mail to the email address given anyway (or something like that), and ... the result is always "1". Thank you for any idea, or for another method. Teddy's Center: http://teddy.fcc.ro/ Mail: [EMAIL PROTECTED] -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]