diff options
author | Kim Alvefur <zash@zash.se> | 2023-07-17 14:57:27 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2023-07-17 14:57:27 +0200 |
commit | a9eddf59a5d0eaf36fe96d73282d77285aff8eb4 (patch) | |
tree | eb926d838ec7058fc77012100563bef6a2009802 /util/prosodyctl | |
parent | 1459e9cae95db6f365be067f1ccda3b556f1c09d (diff) | |
parent | 683b90f87125b405b16bfe3e4654e024fc70345a (diff) | |
download | prosody-a9eddf59a5d0eaf36fe96d73282d77285aff8eb4.tar.gz prosody-a9eddf59a5d0eaf36fe96d73282d77285aff8eb4.zip |
Merge 0.12->trunk
Diffstat (limited to 'util/prosodyctl')
-rw-r--r-- | util/prosodyctl/check.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/util/prosodyctl/check.lua b/util/prosodyctl/check.lua index efa78341..d3bfc00a 100644 --- a/util/prosodyctl/check.lua +++ b/util/prosodyctl/check.lua @@ -828,6 +828,8 @@ local function check(arg) if external_addresses:empty() then print(""); print(" Failed to determine the external addresses of this server. Checks may be inaccurate."); + print(" If you know the correct external addresses you can specify them in the config like:") + print(" external_addresses = { \"192.0.2.34\", \"2001:db8::abcd:1234\" }") c2s_srv_required, s2s_srv_required = true, true; end @@ -1103,6 +1105,9 @@ local function check(arg) print(""); print(" Internal: "..tostring(internal_addresses)); print(" External: "..tostring(external_addresses)); + print("") + print("If the list of external external addresses is incorrect you can specify correct addresses in the config:") + print(" external_addresses = { \"192.0.2.34\", \"2001:db8::abcd:1234\" }") end print(""); print("For more information about DNS configuration please see https://prosody.im/doc/dns"); |