mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: check: Skip DNS checks for known invalid domains (fixes traceback)
This commit is contained in:
parent
f585db3acf
commit
500d0df0a4
1 changed files with 5 additions and 1 deletions
|
@ -928,7 +928,11 @@ local function check(arg)
|
|||
|
||||
local unknown_addresses = set.new();
|
||||
|
||||
for jid in enabled_hosts() do
|
||||
local function is_valid_domain(domain)
|
||||
return idna.to_ascii(domain) ~= nil;
|
||||
end
|
||||
|
||||
for jid in it.filter(is_valid_domain, enabled_hosts()) do
|
||||
local all_targets_ok, some_targets_ok = true, false;
|
||||
local node, host = jid_split(jid);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue