docker-mailserver/docs/content/config/best-practices/dmarc.md

15 lines
1.4 KiB
Markdown
Raw Normal View History

2020-05-15 22:49:00 +02:00
In `docker-mailserver` DMARC is configured out-of the box and the only thing you need to do is to add new TXT entry to your DNS. In contrast with [DKIM](https://github.com/tomav/docker-mailserver/wiki/Configure-DKIM), DMARC DNS entry does not require any keys but just setting the [configuration values](https://github.com/internetstandards/toolbox-wiki/blob/master/DMARC-how-to.md#overview-of-dmarc-configuration-tags). You can either handcraft the entry by yourself or use one of available generators (like https://dmarcguide.globalcyberalliance.org/).
Typically something like this should be good to start with (don't forget to replace `domain.com` to valid addresses)
2020-05-15 22:49:53 +02:00
```
_dmarc.domain.com. IN TXT "v=DMARC1; p=none; rua=mailto:dmarc.report@domain.com; ruf=mailto:dmarc.report@domain.com; sp=none; ri=86400"
```
2020-05-15 22:49:00 +02:00
Or a bit more strict policies (mind `p=quarantine` and `sp=quarantine`)
2020-05-15 22:49:53 +02:00
```
_dmarc IN TXT "v=DMARC1; p=quarantine; rua=mailto:dmarc.report@domain.com; ruf=dmarc.report@domain.com; fo=0; adkim=r; aspf=r; pct=100; rf=afrf; ri=86400; sp=quarantine"
```
2020-05-15 22:49:00 +02:00
2020-05-17 18:57:36 +02:00
DMARC status is not being displayed instantly in Gmail. If you want to check it directly after DNS entries, you can use some services around the Internet such as mentioned https://dmarcguide.globalcyberalliance.org/ or https://ondmarc.redsift.com/. In other case Gmail will show "DMARC: PASS" in ~1 day or so.
2020-05-15 22:49:00 +02:00
2020-05-15 22:49:31 +02:00
Reference: [#1511](https://github.com/tomav/docker-mailserver/issues/1511)