skip to Main Content

My domain DKIM and SPF records looks success.

Authentication Report is:

SPF check: pass
DomainKeys check: pass
DKIM check: pass
Sender-ID check: pass
SpamAssassin check: ham

I need to DMARC configuration on Plesk panel. How can I do this?

2

Answers


  1. It should be just as simple as adding a new TXT record for “_dmarc” on your domain.

    The contents would look something like this:

    v=DMARC1;adkim=r;aspf=r;p=none;sp=reject;
    

    Head over to http://dmarc.org/ for more information.

    You can test your record using this command on Windows or your favorite flavor of Unix:

    nslookup -query=txt _dmarc.yourdomain.org
    
    Login or Signup to reply.
  2. You can add TXT record for DMARC that specify where you should receive reports from recipient organization (gmail, yahoo etc.) that can look like this v=DMARC1; p=none; rua=mailto:[email protected]; ruf=mailto:[email protected];.
    Here you can find short helpful manual from google for example https://support.google.com/a/answer/2466563?hl=en

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search