more srv autodiscover

This commit is contained in:
mwiegand 2021-11-18 21:53:29 +01:00
parent 7309a20c47
commit 9295e1789c

View file

@ -65,12 +65,27 @@ def autoconfig(metadata):
f'autoconfig.{domain}': {
'CNAME': {f"{metadata.get('mailserver/autoconfig_hostname')}."},
},
f'_autodiscover._tcp.{domain}': {
'SRV': {f"10 10 443 {metadata.get('mailserver/autoconfig_hostname')}."},
},
f'autodiscover.{domain}': {
'CNAME': {f"{metadata.get('mailserver/autoconfig_hostname')}."},
},
f'_autodiscover._tcp.{domain}': {
'SRV': {f"0 1 443 {metadata.get('mailserver/autoconfig_hostname')}."},
},
f'_smtp._tcp.{domain}': {
'SRV': {f"0 1 25 {metadata.get('mailserver/hostname')}."},
},
f'_smtps._tcp.{domain}': {
'SRV': {f"0 1 465 {metadata.get('mailserver/hostname')}."},
},
f'_submission._tcp.{domain}': {
'SRV': {f"0 1 587 {metadata.get('mailserver/hostname')}."},
},
f'_imap._tcp.{domain}': {
'SRV': {f"0 1 143 {metadata.get('mailserver/hostname')}."},
},
f'_imaps._tcp.{domain}': {
'SRV': {f"0 1 993 {metadata.get('mailserver/hostname')}."},
},
})
return {