mirror of
https://github.com/outbackdingo/Mailu.git
synced 2026-01-27 18:19:36 +00:00
Merge #3150
3150: Add trailing semicolon for DMARC authorisation record r=mergify[bot] a=su-ex ## What type of PR? bug-fix ## What does this PR do? Add trailing semicolon for DMARC authorisation records, which seems to be necessary: https://stackoverflow.com/a/72463456 I ran into this when testing my domain with internet.nl. Co-authored-by: su-ex <codeworks@supercable.onl> Co-authored-by: Florent Daigniere <nextgens@freenetproject.org>
This commit is contained in:
@@ -250,7 +250,7 @@ class Domain(Base):
|
||||
""" return DMARC report record for mailu server """
|
||||
if self.dkim_key:
|
||||
domain = app.config['DOMAIN']
|
||||
return f'{self.name}._report._dmarc.{domain}. 600 IN TXT "v=DMARC1"'
|
||||
return f'{self.name}._report._dmarc.{domain}. 600 IN TXT "v=DMARC1;"'
|
||||
|
||||
@cached_property
|
||||
def dns_autoconfig(self):
|
||||
|
||||
1
towncrier/newsfragments/3150.bugfix
Normal file
1
towncrier/newsfragments/3150.bugfix
Normal file
@@ -0,0 +1 @@
|
||||
Add a semicolum to DMARC records
|
||||
Reference in New Issue
Block a user