prosodyctl: Fix traceback on incorrect proxy65_address type

This commit is contained in:
Matthew Wild 2019-09-11 15:03:54 +01:00
parent 50d6a265ee
commit 4c6aca8604

View file

@ -1103,6 +1103,7 @@ function commands.check(arg)
if modules:contains("proxy65") then
local proxy65_target = configmanager.get(host, "proxy65_address") or host;
if type(proxy65_target) == "string" then
local A, AAAA = dns.lookup(idna.to_ascii(proxy65_target), "A"), dns.lookup(idna.to_ascii(proxy65_target), "AAAA");
local prob = {};
if not A then
@ -1115,6 +1116,9 @@ function commands.check(arg)
print(" File transfer proxy "..proxy65_target.." has no "..table.concat(prob, "/")
.." record. Create one or set 'proxy65_address' to the correct host/IP.");
end
else
print(" proxy65_address for "..host.." should be set to a string, unable to perform DNS check");
end
end
for target_host in target_hosts do