Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Tip

Tip!
Use mail-tester.com to test if your DNS is set up properly!

Note

Required: Modify SPF record

  1. Look for the SPF record. If there are no other mail services in the DNS server yet, it usually looks like this:

    Code Block
    v=spf1 a mx
  2. Add to this:

    Code Block
     include:_spf.cobytes.email ~all
  3. The full SPF record now looks like this:

    Code Block
    v=spf1 a mx include:_spf.cobytes.email ~all

Note: Don't forget the addition ~all, it is always needed. When using multiple mail services, this looks like this:

  • Code Block
    v=spf1 a mx include:spf.protection.outlook.com include:_spf.cobytes.email ~all
Note

Required: Modify DKIM record

DomainKeys Identified Mail (DKIM) is a technique whereby an organization can take responsibility for a message sent by e-mail. By using DKIM, spam can be combated.

Fill in the TXT record mailfilter._domainkey.yourdomainname.nl with the data that you got from

  • Code Block
    "v=DKIM1; g=*; k=rsa; p=jouw-gegenereerde-public-key"

    Note: Don't forget the double quotes before and after the record!

  • Example of Documizers' DKIM record:

...