Everything you need to know about SPF, DKIM and DMARC records
HTTPS je zabezpečené šifrované připojení mezi prohlížečem a webem. Chrání přihlašování, formuláře i platební údaje a zabraňuje čtení nebo úpravám dat po cestě.
Více informacíSPF (Sender Policy Framework) is an email authentication method that allows domain owners to specify which servers are authorized to send emails on behalf of their domain. SPF record is published in DNS as a TXT record.
Explanation::
v=spf1
- SPF protocol versioninclude:_spf.google.com
- allows Google Workspace serversinclude:spf.protection.outlook.com
- allows Microsoft 365 serversip4:192.168.1.10
- allows specific IP address~all
- soft fail for other serversDKIM (DomainKeys Identified Mail) is a method of digitally signing emails that allows the recipient to verify that the email actually comes from the domain listed as the sender and that it was not altered during transmission.
Explanation::
v=DKIM1
- DKIM protocol versionk=rsa
- cryptographic algorithm typep=...
- public key in Base64 encodingDMARC (Domain-based Message Authentication, Reporting, and Conformance) is an email authentication protocol that combines SPF and DKIM. It allows domain owners to specify a policy for handling emails that do not pass authentication.
Explanation::
v=DMARC1
- DMARC protocol versionp=quarantine
- policy for domain (quarantine = quarantine)rua=mailto:dmarc@example.com
- address for aggregate reportsruf=mailto:dmarc-failures@example.com
- address for detailed failure reportssp=reject
- policy for subdomainsadkim=r
- relaxed DKIM alignmentaspf=r
- relaxed SPF alignment