summaryrefslogtreecommitdiff
path: root/lisp/net
diff options
context:
space:
mode:
authorRomain Francoise <romain@orebokech.com>2007-02-26 17:43:11 +0000
committerRomain Francoise <romain@orebokech.com>2007-02-26 17:43:11 +0000
commite5b99f5d1c03fd81cffaf5479f5a905ec398a678 (patch)
tree0479c1ee85e4532c0daf602148eca4133228572d /lisp/net
parent2a2df9bc4d670aada76c71b6e2daa232300ade52 (diff)
downloademacs-e5b99f5d1c03fd81cffaf5479f5a905ec398a678.tar.gz
(whois-server-tld): Update server for .org.
(whois-server-list): Add whois.publicinterestregistry.net. (whois-guess-server): Fix formatting in docstring.
Diffstat (limited to 'lisp/net')
-rw-r--r--lisp/net/net-utils.el8
1 files changed, 6 insertions, 2 deletions
diff --git a/lisp/net/net-utils.el b/lisp/net/net-utils.el
index 86bab7b20c5..6a1c1bca8c0 100644
--- a/lisp/net/net-utils.el
+++ b/lisp/net/net-utils.el
@@ -674,6 +674,7 @@ queries of the form USER@HOST, and wants a query containing USER only."
(defcustom whois-server-list
'(("whois.arin.net") ; Networks, ASN's, and related POC's (numbers)
("rs.internic.net") ; domain related info
+ ("whois.publicinterestregistry.net")
("whois.abuse.net")
("whois.apnic.net")
("nic.ddn.mil")
@@ -684,9 +685,12 @@ queries of the form USER@HOST, and wants a query containing USER only."
:group 'net-utils
:type '(repeat (list string)))
+;; FIXME: modern whois clients include a much better tld <-> whois server
+;; list, Emacs should probably avoid specifying the server as the client
+;; will DTRT anyway... -rfr
(defcustom whois-server-tld
'(("rs.internic.net" . "com")
- ("rs.internic.net" . "org")
+ ("whois.publicinterestregistry.net" . "org")
("whois.ripe.net" . "be")
("whois.ripe.net" . "de")
("whois.ripe.net" . "dk")
@@ -707,7 +711,7 @@ queries of the form USER@HOST, and wants a query containing USER only."
(defcustom whois-guess-server t
"If non-nil then whois will try to deduce the appropriate whois
server from the query. If the query doesn't look like a domain or hostname
-then the server named by whois-server-name is used."
+then the server named by `whois-server-name' is used."
:group 'net-utils
:type 'boolean)