# HG changeset patch
# User Kim Alvefur <zash@zash.se>
# Date 1501871263 -7200
# Node ID 331caee0c774f4d2cece96a8d0aae47288058922
# Parent  a3565d7dd3043cf620b2a8d4ea3bcf8473ec68b5
prosodyctl: Skip certificate checks for hosts of the form node@host (fixes #779)

diff -r a3565d7dd304 -r 331caee0c774 prosodyctl
--- a/prosodyctl	Sun Jul 30 18:47:43 2017 +0200
+++ b/prosodyctl	Fri Aug 04 20:27:43 2017 +0200
@@ -1336,7 +1336,14 @@
 			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")