Re: Get all mail addresses from a domain

2004-11-02 Thread Eva Perales Laguna
On Sun, Oct 31, 2004 at 03:23:37PM -, Peter Scott wrote: > > The only people who can tell you that are the administrators > of the mail servers and relays for that domain. Why don't > you ask them to provide you with such a list? > Yes, I sopose this is the best solution. Ok, I'll try this

Re: Get all mail addresses from a domain

2004-10-31 Thread Peter Scott
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] (Eva Perales Laguna) writes: >Hello, > >I use the Net::SMTP module to check if a mail address is present >in a domain. [snip] >But I would like to get all the addresses in that domain. The only people who can tell you that are the administrators

Re: Get all mail addresses from a domain

2004-10-29 Thread Chasecreek Systemhouse
On Fri, 29 Oct 2004 08:42:14 -0400, Bob Showalter <[EMAIL PROTECTED]> wrote: > Eva Perales Laguna wrote: > > But I would like to get all the addresses in that domain. > > Lots of folks turn off VRFY and EXPN, for obvious reasons. Besides, VRFY and EXPN do not prove that an e-mail exists at any p

RE: Get all mail addresses from a domain

2004-10-29 Thread Bob Showalter
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.

Get all mail addresses from a domain

2004-10-29 Thread Eva Perales Laguna
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. Someone can help me? Thanks! Eva --