From 6f3b994b0fb4f83f45450751128e5c00e8a5aa8b Mon Sep 17 00:00:00 2001 From: Michael Cordover Date: Wed, 16 Apr 2014 10:43:50 +1000 Subject: [PATCH] Add support for .au NB AusRegistry does not provide CreationDate or ExpirationDate info and contact info (email address) is only available through web portal at http://whois.ausregistry.com.au/ --- whois/tlds/au | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 whois/tlds/au diff --git a/whois/tlds/au b/whois/tlds/au new file mode 100644 index 0000000..f83930d --- /dev/null +++ b/whois/tlds/au @@ -0,0 +1,24 @@ +server = { + "host": "whois.ausregistry.com.au", + "redirect": "\s+Whois Server: (.*)", # Should never apply to .au domains +} + +parse = { + "default": { + "NotFound": "No Data Found", + "DomainName": "Domain Name:\s+(.+)", + "Registrar": "Registrar Name:\s+(.+)", + "NameServer": "Name Server:\s+(.+)", + "Status": "Status:\s+(.+)", + "UpdatedDate": "Last Modified:\s+(.+)", +# "CreationDate": "Creation Date:\s+(.+)", +# "ExpirationDate": "Expiration Date:\s+(.+)", + "RegistrantName": "Registrant:(.+)", + "EligibilityName": "Eligibility Name:(.+)", + "EligibilityType": "Eligibility Type:(.+)", + "AdminID": "Registrant Contact ID:(.+)", + "AdminName": "Registrant Contact Name:(.+)", + "TechName": "Tech Contact Name:(.+)", + "TechID": "Tech Contact ID:(.+)", + }, +}