Re: [exim] Detecting the Registrar Barrier

2007-07-02 Thread John Burnham
OK - I have that working now for a number of 4 level domains. However I could probably use a bigger list. I can see now where what started as a simple request for a feature wasn't so simple. Congratulations however on managing to get a mostly working solution. Out of curiosity, does

Re: [exim] Detecting the Registrar Barrier

2007-07-02 Thread Marc Perkel
John Burnham wrote: OK - I have that working now for a number of 4 level domains. However I could probably use a bigger list. I can see now where what started as a simple request for a feature wasn't so simple. Congratulations however on managing to get a mostly working

Re: [exim] Detecting the Registrar Barrier

2007-07-02 Thread Marc Perkel
OK - here's the latest version of my code that separates the main domain part from a host name. It depends on my rb.junkemailfilter.com DNS lookup. I now have it running on 2 servers. # Separates the domain part of a hostname - ftp.perkel.com returns perkel.com # DNS lookup returns 127.0.0.1

Re: [exim] Detecting the Registrar Barrier

2007-06-30 Thread Florian Weimer
* Marc Perkel: OK - I think I'm making some progress on this. I created a DNS server that you can pass a $sender_host_name to and get a code indicating if it's a one level or 2 level domain. By the way, the Mozilla folks maintain something called an effective TLD service:

Re: [exim] Detecting the Registrar Barrier

2007-06-30 Thread Ted Cooper
Martin A. Brooks wrote: Ted Cooper wrote: Hmm.. this also doesn't take into account illegal hostnames such as those with bits starting with digits There's nothing illegal about using numbers to start part of a domain name. http://www.888.com/ RFC 1035 The labels must follow the rules for

Re: [exim] Detecting the Registrar Barrier

2007-06-30 Thread Marc Perkel
Marc Sherman wrote: Chris Meadors wrote: It seems to work for the pathological case of the Japan's TLD which until a couple years ago would have always been a two, but now optionally can be a one. Both mazda.jp and mazda.co.jp return the expected results. It fails for

Re: [exim] Detecting the Registrar Barrier

2007-06-30 Thread Marc Perkel
Marc Perkel wrote: Marc Sherman wrote: Chris Meadors wrote: It seems to work for the pathological case of the Japan's TLD which until a couple years ago would have always been a two, but now optionally can be a one. Both mazda.jp and mazda.co.jp return the expected results.

Re: [exim] Detecting the Registrar Barrier

2007-06-30 Thread Andrew - Supernews
Ted == Ted Cooper [EMAIL PROTECTED] writes: Martin A. Brooks wrote: Ted Cooper wrote: Hmm.. this also doesn't take into account illegal hostnames such as those with bits starting with digits There's nothing illegal about using numbers to start part of a domain name.

Re: [exim] Detecting the Registrar Barrier

2007-06-30 Thread Martin A. Brooks
Ted Cooper wrote: Hmm.. this also doesn't take into account illegal hostnames such as those with bits starting with digits There's nothing illegal about using numbers to start part of a domain name. http://www.888.com/ -- ## List details at http://www.exim.org/mailman/listinfo/exim-users

Re: [exim] Detecting the Registrar Barrier

2007-06-30 Thread Ted Cooper
Andrew - Supernews wrote: Ted == Ted Cooper [EMAIL PROTECTED] writes: Martin A. Brooks wrote: Ted Cooper wrote: Hmm.. this also doesn't take into account illegal hostnames such as those with bits starting with digits There's nothing illegal about using numbers to start part

[exim] Detecting the Registrar Barrier

2007-06-29 Thread Marc Perkel
OK - I think I'm making some progress on this. I created a DNS server that you can pass a $sender_host_name to and get a code indicating if it's a one level or 2 level domain. I still have more work to do to make it practical. But - try this out and tell me if I'm on the right track. from

Re: [exim] Detecting the Registrar Barrier

2007-06-29 Thread Chris Meadors
On Fri, 2007-06-29 at 10:36 -0700, Marc Perkel wrote: OK - I think I'm making some progress on this. I created a DNS server that you can pass a $sender_host_name to and get a code indicating if it's a one level or 2 level domain. I still have more work to do to make it practical. But -

Re: [exim] Detecting the Registrar Barrier

2007-06-29 Thread Marc Sherman
Chris Meadors wrote: It seems to work for the pathological case of the Japan's TLD which until a couple years ago would have always been a two, but now optionally can be a one. Both mazda.jp and mazda.co.jp return the expected results. It fails for www.orgforms.gov.on.ca -- it should

Re: [exim] Detecting the Registrar Barrier

2007-06-29 Thread Marc Perkel
Marc Sherman wrote: Chris Meadors wrote: It seems to work for the pathological case of the Japan's TLD which until a couple years ago would have always been a two, but now optionally can be a one. Both mazda.jp and mazda.co.jp return the expected results. It fails for

Re: [exim] Detecting the Registrar Barrier

2007-06-29 Thread Steven Wayne
On Fri, Jun 29, 2007 at 10:36:46AM -0700, Marc Perkel wrote: Date: Fri, 29 Jun 2007 10:36:46 -0700 From: Marc Perkel [EMAIL PROTECTED] Subject: [exim] Detecting the Registrar Barrier To: Exim users mailing list exim-users@exim.org OK - I think I'm making some progress on this. I created

Re: [exim] Detecting the Registrar Barrier

2007-06-29 Thread Marc Perkel
Steven Wayne wrote: On Fri, Jun 29, 2007 at 10:36:46AM -0700, Marc Perkel wrote: Date: Fri, 29 Jun 2007 10:36:46 -0700 From: Marc Perkel [EMAIL PROTECTED] Subject: [exim] Detecting the Registrar Barrier To: Exim users mailing list exim-users@exim.org OK - I think I'm making some

Re: [exim] Detecting the Registrar Barrier

2007-06-29 Thread Ted Cooper
Marc Perkel wrote: OK - I think I'm making some progress on this. I created a DNS server that you can pass a $sender_host_name to and get a code indicating if it's a one level or 2 level domain. I still have more work to do to make it practical. But - try this out and tell me if I'm on