aboutsummaryrefslogtreecommitdiffstats
path: root/prosodyctl
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-08-04 20:27:43 +0200
committerKim Alvefur <zash@zash.se>2017-08-04 20:27:43 +0200
commitd7b37ef781681b9ab89d340cd9aab1402f03a1bd (patch)
treec3bc7fb34b4be751dfcef9fdde6594b8f726fd82 /prosodyctl
parent9a782a606037d64771f0f39e179593ab07627623 (diff)
downloadprosody-d7b37ef781681b9ab89d340cd9aab1402f03a1bd.tar.gz
prosody-d7b37ef781681b9ab89d340cd9aab1402f03a1bd.zip
prosodyctl: Skip certificate checks for hosts of the form node@host (fixes #779)
Diffstat (limited to 'prosodyctl')
-rwxr-xr-xprosodyctl9
1 files changed, 8 insertions, 1 deletions
diff --git a/prosodyctl b/prosodyctl
index 8997f31c..800dddbf 100755
--- a/prosodyctl
+++ b/prosodyctl
@@ -1336,7 +1336,14 @@ function commands.check(arg)
print("This version of LuaSec (" .. ssl._VERSION .. ") does not support certificate checking");
cert_ok = false
else
- for host in enabled_hosts() do
+ local function skip_bare_jid_hosts(host)
+ if jid_split(host) then
+ -- See issue #779
+ return false;
+ end
+ return true;
+ end
+ for host in it.filter(skip_bare_jid_hosts, enabled_hosts()) do
print("Checking certificate for "..host);
-- First, let's find out what certificate this host uses.
local host_ssl_config = config.rawget(host, "ssl")