1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-06-08 19:00:55 +00:00

remove extra indent

This commit is contained in:
Jeff Volkenant 2018-12-04 12:48:59 -08:00
parent 8c1b912b9b
commit d6f3d0c86b

View File

@ -29,11 +29,11 @@ def get_web_domains(env, include_www_redirects=True, exclude_dns_elsewhere=True)
# IP address than this box. Remove those domains from our list. # IP address than this box. Remove those domains from our list.
domains -= get_domains_with_a_records(env) domains -= get_domains_with_a_records(env)
# Add Autoconfiguration domains, allowing us to serve correct SSL certs. # Add Autoconfiguration domains, allowing us to serve correct SSL certs.
# 'autoconfig.' for Mozilla Thunderbird auto setup. # 'autoconfig.' for Mozilla Thunderbird auto setup.
# 'autodiscover.' for Activesync autodiscovery. # 'autodiscover.' for Activesync autodiscovery.
domains |= set('autoconfig.' + zone for zone, zonefile in get_dns_zones(env)) domains |= set('autoconfig.' + zone for zone, zonefile in get_dns_zones(env))
domains |= set('autodiscover.' + zone for zone, zonefile in get_dns_zones(env)) domains |= set('autodiscover.' + zone for zone, zonefile in get_dns_zones(env))
# Ensure the PRIMARY_HOSTNAME is in the list so we can serve webmail # Ensure the PRIMARY_HOSTNAME is in the list so we can serve webmail
# as well as Z-Push for Exchange ActiveSync. This can't be removed # as well as Z-Push for Exchange ActiveSync. This can't be removed