Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Quarantine status of .NL domains not detected
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  6 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
groe  
View profile  
 More options Aug 25 2010, 4:54 am
From: groe <mailtog...@gmail.com>
Date: Wed, 25 Aug 2010 01:54:25 -0700 (PDT)
Local: Wed, Aug 25 2010 4:54 am
Subject: Quarantine status of .NL domains not detected
Hello,

I noticed that Ruby-Whois detected lots of .NL-domains as "available"
that actually are not. Example:

whoistest.rb:
  require "rubygems"
  require "whois"

  whoisClient = Whois::Client.new(:timeout => 60)
  whois = whoisClient.query("martijn-webdesign.nl")

  puts whois
  puts whois.registered? ? "registered" : "not registered"
  puts whois.available? ? "available" : "not available"

Result:
  Domain name: martijn-webdesign.nl
  Status:      in quarantine

  Last registrar:
     Fastware B.V.
     Auvergnestraat 4
     4611LN BERGEN OP ZOOM
     Netherlands

  Date out of quarantine: 2010-10-02

  Record maintained: NL Domain Registry

  Copyright notice
  [...]
  not registered
  available

Maybe it´s a bug of the .NL-Parser?

Since I am using Ruby-Whois in a production environment, I would
really appreciate your help!

Regards,
Benjamin


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
groe  
View profile  
 More options Aug 25 2010, 5:16 am
From: groe <mailtog...@gmail.com>
Date: Wed, 25 Aug 2010 02:16:01 -0700 (PDT)
Local: Wed, Aug 25 2010 5:16 am
Subject: Re: Quarantine status of .NL domains not detected
Oh, I forgot. I am using Ruby 1.8.7, whois 1.3.0 via gem in Ubuntu
x64.

Regards,
Benjamin

On Aug 25, 10:54 am, groe <mailtog...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Simone Carletti  
View profile  
 More options Aug 25 2010, 6:00 am
From: Simone Carletti <wep...@weppos.net>
Date: Wed, 25 Aug 2010 12:00:49 +0200
Local: Wed, Aug 25 2010 6:00 am
Subject: Re: Quarantine status of .NL domains not detected

Hello Benjamin,

Thank you very much for your report. This is definitely a parser issue that
needs to be fixed.
Unfortunately, each registry has its own domain statuses and dealing with
all of them is a real pain.

I searched for more information about the Quarantine Status and I created a
ticket to implement the feature.
http://github.com/weppos/whois/issues/issue/33

This issue also fall into the case of
http://github.com/weppos/whois/issues/issue/2

Unfortunately, this is a quite large ticket to add and at the moment I don't
have much time to work on it.
However, the good news is that I can implement a partial fix as I did for
other parsers.

After the changes:

   1. a call to #status will return one of the following symbols:
   registered, available, quarantine
   2. a call to #registered? for a quarantine or registered domain will
   return true, false otherwise
   3. a call to #available? for a quarantine or registered domain will
   return false, true otherwise

Let me know if it sounds good for you.

-- Simone

--
Simone Carletti
Application Developer

Site & Blog: http://www.simonecarletti.com
Email: wep...@weppos.net
LinkedIn: http://linkedin.com/in/weppos
Skype: weppos


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
groe  
View profile  
 More options Aug 25 2010, 7:00 am
From: groe <mailtog...@gmail.com>
Date: Wed, 25 Aug 2010 04:00:57 -0700 (PDT)
Local: Wed, Aug 25 2010 7:00 am
Subject: Re: Quarantine status of .NL domains not detected
Hi Simone,

thank you very much for your response!

Actually I don´t even need to separate between status "registered" and
"quarantine" in my application, so your partial fix sounds very good
to me :)

Let me know if I can help you any further.

Regards,
Benjamin

On Aug 25, 12:00 pm, Simone Carletti <wep...@weppos.net> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Simone Carletti  
View profile  
 More options Aug 25 2010, 7:51 am
From: Simone Carletti <wep...@gmail.com>
Date: Wed, 25 Aug 2010 04:51:06 -0700 (PDT)
Local: Wed, Aug 25 2010 7:51 am
Subject: Re: Quarantine status of .NL domains not detected
The issue is now fixed in master.
http://github.com/weppos/whois/commit/d4c5987a7f5eb12e255915334e18a23...

Please give it a try and let me know if it works.

-- Simone

On Aug 25, 1:00 pm, groe <mailtog...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
groe  
View profile  
 More options Aug 25 2010, 12:24 pm
From: groe <mailtog...@gmail.com>
Date: Wed, 25 Aug 2010 09:24:28 -0700 (PDT)
Local: Wed, Aug 25 2010 12:24 pm
Subject: Re: Quarantine status of .NL domains not detected
Hello Simone,

I just installed whois 1.3.1 from github and ran my test script again
- it detect the NL-domain as "not available" - so everything works
fine now! :)

Thank you very much for your quick help!

Regards,
Benjamin

On Aug 25, 1:51 pm, Simone Carletti <wep...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »