1
0
şunun yansıması https://github.com/mail-in-a-box/mailinabox.git eşitlendi 2026-03-13 17:17:23 +01:00

web_domains should also normalize ipv6 addresses (#1201)

Bu işleme şunda yer alıyor:
Michael Kroes
2017-07-13 13:16:12 +02:00
işlemeyi yapan: Joshua Tauberer
ebeveyn 2bd6cc4d6b
işleme 2c324d0bc9

Dosyayı Görüntüle

@@ -640,7 +640,7 @@ def check_web_domain(domain, rounded_time, ssl_certificates, env, output):
for (rtype, expected) in (("A", env['PUBLIC_IP']), ("AAAA", env.get('PUBLIC_IPV6'))): for (rtype, expected) in (("A", env['PUBLIC_IP']), ("AAAA", env.get('PUBLIC_IPV6'))):
if not expected: continue # IPv6 is not configured if not expected: continue # IPv6 is not configured
value = query_dns(domain, rtype) value = query_dns(domain, rtype)
if value == expected: if normalize_ip(value) == normalize_ip(expected):
ok_values.append(value) ok_values.append(value)
else: else:
output.print_error("""This domain should resolve to your box's IP address (%s %s) if you would like the box to serve output.print_error("""This domain should resolve to your box's IP address (%s %s) if you would like the box to serve