From 07e548ec15c5a9288c5d954c68fdae674428c2aa Mon Sep 17 00:00:00 2001 From: Scott Bronson Date: Fri, 30 Sep 2016 21:48:40 -0700 Subject: [PATCH] avoid specifying the domain's current value This way, if you're using external DNS, you won't receive one email per day saying that the IP address has changed. --- management/status_checks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/management/status_checks.py b/management/status_checks.py index 4077066a..c6b12e73 100755 --- a/management/status_checks.py +++ b/management/status_checks.py @@ -633,8 +633,8 @@ def check_web_domain(domain, rounded_time, ssl_certificates, env, output): ok_values.append(value) else: output.print_error("""This domain should resolve to your box's IP address (%s %s) if you would like the box to serve - webmail or a website on this domain. The domain currently resolves to %s in public DNS. It may take several hours for - public DNS to update after a change. This problem may result from other issues listed here.""" % (rtype, expected, value)) + webmail or a website on this domain. It may take several hours for public DNS to update after a change. + This problem may result from other issues listed here.""" % (rtype, expected)) return # If both A and AAAA are correct...