From e0476bb4f1b46631ed4f71e1614f403bb87420da Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Tue, 21 May 2013 13:18:56 +0100 Subject: prosodyctl: check config: Show a suggestion to change hosts that begin with jabber/xmpp/chat/im subdomains, and link to DNS documentation --- prosodyctl | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/prosodyctl b/prosodyctl index 780821be..de7c09c5 100755 --- a/prosodyctl +++ b/prosodyctl @@ -820,7 +820,15 @@ function commands.check(arg) print(""); print(" You need to move the following option"..(n>1 and "s" or "")..": "..table.concat(it.to_array(misplaced_options), ", ")); end + local subdomain = host:match("^[^.]+"); + if not(is_component) and (subdomain == "jabber" or subdomain == "xmpp" + or subdomain == "chat" or subdomain == "im") then + print(" Suggestion: If "..host.. " is a new host with no real users yet, consider renaming it now to"); + print(" "..host:gsub("^[^.]+%.", "")..". You can use SRV records to redirect XMPP clients and servers to "..host.."."); + print(" For more information see: http://prosody.im/doc/dns"); + end end + print("Done.\n"); end if not what or what == "dns" then -- cgit v1.2.3