mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
prosodyctl: Fix traceback on incorrect proxy65_address type
This commit is contained in:
parent
50d6a265ee
commit
4c6aca8604
1 changed files with 15 additions and 11 deletions
26
prosodyctl
26
prosodyctl
|
@ -1103,17 +1103,21 @@ function commands.check(arg)
|
||||||
|
|
||||||
if modules:contains("proxy65") then
|
if modules:contains("proxy65") then
|
||||||
local proxy65_target = configmanager.get(host, "proxy65_address") or host;
|
local proxy65_target = configmanager.get(host, "proxy65_address") or host;
|
||||||
local A, AAAA = dns.lookup(idna.to_ascii(proxy65_target), "A"), dns.lookup(idna.to_ascii(proxy65_target), "AAAA");
|
if type(proxy65_target) == "string" then
|
||||||
local prob = {};
|
local A, AAAA = dns.lookup(idna.to_ascii(proxy65_target), "A"), dns.lookup(idna.to_ascii(proxy65_target), "AAAA");
|
||||||
if not A then
|
local prob = {};
|
||||||
table.insert(prob, "A");
|
if not A then
|
||||||
end
|
table.insert(prob, "A");
|
||||||
if v6_supported and not AAAA then
|
end
|
||||||
table.insert(prob, "AAAA");
|
if v6_supported and not AAAA then
|
||||||
end
|
table.insert(prob, "AAAA");
|
||||||
if #prob > 0 then
|
end
|
||||||
print(" File transfer proxy "..proxy65_target.." has no "..table.concat(prob, "/")
|
if #prob > 0 then
|
||||||
.." record. Create one or set 'proxy65_address' to the correct host/IP.");
|
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
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue