diff options
author | Matthew Wild <mwild1@gmail.com> | 2019-09-11 15:03:54 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2019-09-11 15:03:54 +0100 |
commit | c3d0a0a3289319bedcbc74d8c7eba75d381e2017 (patch) | |
tree | 07c8ada11578995f5d458802ddad6ec5db5ce450 | |
parent | 83719386a38a4103b8ae78b9f1e428b40874e192 (diff) | |
download | prosody-c3d0a0a3289319bedcbc74d8c7eba75d381e2017.tar.gz prosody-c3d0a0a3289319bedcbc74d8c7eba75d381e2017.zip |
prosodyctl: Fix traceback on incorrect proxy65_address type
-rwxr-xr-x | prosodyctl | 26 |
1 files changed, 15 insertions, 11 deletions
@@ -1103,17 +1103,21 @@ function commands.check(arg) if modules:contains("proxy65") then 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"); - local prob = {}; - if not A then - table.insert(prob, "A"); - end - if v6_supported and not AAAA then - table.insert(prob, "AAAA"); - end - if #prob > 0 then - print(" File transfer proxy "..proxy65_target.." has no "..table.concat(prob, "/") - .." record. Create one or set 'proxy65_address' to the correct host/IP."); + 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 + table.insert(prob, "A"); + end + if v6_supported and not AAAA then + table.insert(prob, "AAAA"); + end + if #prob > 0 then + 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 |