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/
This commit is contained in:
Michael Cordover 2014-04-16 10:43:50 +10:00
parent 2776ab8871
commit 6f3b994b0f

24
whois/tlds/au Normal file
View File

@ -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:(.+)",
},
}