This tool checks two essential email security protocols:
Email spoofing is a common technique used in phishing attacks where attackers impersonate legitimate email addresses. Proper SPF and DMARC configuration helps prevent:
To secure your domain against email spoofing:
v=spf1 include:_spf.google.com include:_spf.microsoft.com ip4:192.168.1.1 -all
This example allows emails from Google Workspace, Microsoft 365, and a specific IP address.
v=DMARC1; p=reject; rua=mailto:reports@yourdomain.com; pct=100
Where:
p=reject - Reject unauthorized emailsrua=mailto:reports@yourdomain.com - Where to send reportspct=100 - Apply to 100% of emailsYou can verify your domain's configuration using these commands:
dig TXT yourdomain.com
Expected output example:
yourdomain.com. 3600 IN TXT "v=spf1 include:_spf.google.com -all"
dig TXT _dmarc.yourdomain.com
Expected output example:
_dmarc.yourdomain.com. 3600 IN TXT "v=DMARC1; p=reject; rua=mailto:reports@yourdomain.com; pct=100"
Replace 'yourdomain.com' with your actual domain name in all examples above.