Skip to content

Commit

Permalink
Make the recommendation clearer
Browse files Browse the repository at this point in the history
  • Loading branch information
nextgens authored Jan 12, 2022
1 parent 70ea2a5 commit b12616b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/admin/start.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ def test_DNS():
try:
result = resolver.query('example.org', dns.rdatatype.A, dns.rdataclass.IN, lifetime=10)
if not result.response.flags & dns.flags.AD:
log.critical("Your DNS resolver at %s isn't doing DNSSEC validation; Please install unbound.", ns)
log.critical("Your DNS resolver at %s isn't doing DNSSEC validation; Please use another resolver or enable unbound via https://setup.mailu.io.", ns)
else:
error = False
continue
except Exception as e:
log.critical("Your DNS resolver at %s is not working (%s). Please install unbound.", ns, e);
log.critical("Your DNS resolver at %s is not working (%s). Please use another resolver or enable unbound via https://setup.mailu.io.", ns, e);
time.sleep(5)

test_DNS()
Expand Down

0 comments on commit b12616b

Please sign in to comment.