mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
fix issue in dkim dns setting
Add a dot "." so that dkim dns entry is "mail._domainkey.domain.tld." instead of "mail._domainkey.domain.tld"
This commit is contained in:
parent
af2847f99c
commit
1bcadb5104
1 changed files with 1 additions and 1 deletions
|
@ -274,7 +274,7 @@ def domain_dns_conf(domain, ttl=None):
|
|||
)
|
||||
if dkim:
|
||||
result += '\n{host} {ttl} IN TXT "v={v}; k={k}; p={p}"'.format(
|
||||
host='{0}.{1}'.format(dkim.group('host'), domain), ttl=ttl,
|
||||
host='{0}.{1}.'.format(dkim.group('host'), domain), ttl=ttl,
|
||||
v=dkim.group('v'), k=dkim.group('k'), p=dkim.group('p')
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue