Eva Perales Laguna wrote: > Hello, > > I use the Net::SMTP module to check if a mail address is present > in a domain. I do something like this: > > my $smtp = new Net::SMTP($domain); > my $matches = $smtp->verify($usermane); > > But I would like to get all the addresses in that domain.
Lots of folks turn off VRFY and EXPN, for obvious reasons. SMTP is not a directory service. You would need to query a directory service, like LDAP. I assume your purposes are wholly pure and honest :~) -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>
