Changes between Initial Version and Version 1 of faq/email/add-dmarc-record


Ignore:
Timestamp:
Feb 21, 2017, 5:39:12 PM (7 years ago)
Author:
Jamie McClelland
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • faq/email/add-dmarc-record

    v1 v1  
     1[[TranslatedPages]]
     2= How do I add a DMARC record to my account? =
     3
     4DMARC stands for [Domain-based Message Authentication, Reporting and Conformance](https://en.wikipedia.org/wiki/DMARC). It's a way to tell the Internet what they should do if they get an email from your domain that seems suspicious.
     5
     6A message will be considered suspicious if it fails either your DKIM signature test or your SPF test.
     7
     8You must create DKIM and SPF records before you create a DMARC record.
     9
     10Your doman's DMARC setting only affects email sent from your domain. It has no impact on the amount of spam that you may be receiving.
     11
     12In addition, setting DMARC record may help messages sent from your domain avoid the spam folder, since some email providers seem to be punishing email senders who do not have a DMARC policy set.
     13
     14If you would like to add a DMARC record, you can create one using the DNS Service in the [https://members.mayfirst.org/cp Members control panel].
     15
     16 * Click Add item link to create a new record
     17 * For Type, choose "Text".
     18 * For the Full Domain field, enter "_dmarc." followed by your domain (without the www). For example: _dmarc.mayfirst.org or _dmarc.mygroup.net.
     19 * In the Text field, most groups will want to add `v=DMARC1; p=quarantine`
     20
     21Please see below for more information.
     22
     23The above example (`v=DMARC1; p=quarantine`) represents the minimal policy you can define. And, it specifies that if a message fails the test that it should be quarantined (which means sent to the spam folder) instead of rejected.
     24
     25You may also consider adding: `ruf:emailto:you@youremail.org` which will cause any policy failures to be emailed to you. The full version would then be: `v=DMARC1; p=quarantine;ruf:emailto:you@youremail.org`.
     26
     27For more options, please see the [https://tools.ietf.org/html/rfc7489#page-17 General Record Format] of the spec.