strip not necessary anymore

master
Alexander Graf 3 years ago
parent 1e8b41f731
commit 7bec8029a4

@ -312,7 +312,7 @@ class Domain(Base):
def check_mx(self):
""" checks if MX record for domain points to mailu host """
try:
hostnames = set(fqdn.strip() for fqdn in app.config['HOSTNAMES'].split(','))
hostnames = set(app.config['HOSTNAMES'].split(','))
return any(
rset.exchange.to_text().rstrip('.') in hostnames
for rset in dns.resolver.query(self.name, 'MX')

Loading…
Cancel
Save