To verify ownership of the domain, please add the following TXT record.
Some domain registrars (Namecheap, CloudFlare, etc) might use @ for the root domain.
Your DNS is not correctly set. The TXT record we obtain is:
{% if not ownership_errors %}(Empty){% endif %}
{% for r in ownership_errors %}
{{ r }}
{% endfor %}
{% endif %}
{% endif %}
{% endif %}
{% if not custom_domain.ownership_verified %}
A domain ownership must be verified first.
{% endif %}
1. MX record
{% if custom_domain.verified %}
✅
{% else %}
🚫
{% endif %}
Add the following MX DNS record to your domain.
Please note that there's a dot (.) at the end target addresses.
If your domain registrar doesn't allow this trailing dot, please remove it when adding the DNS record.
Some domain registrars (Namecheap, CloudFlare, etc) might also use @ for the root domain.
{% for priority, email_server in EMAIL_SERVERS_WITH_PRIORITY %}
SPF
(Wikipedia↗)
is an email
authentication method
designed to detect forging sender addresses during the delivery of the email.
Setting up SPF is highly recommended to reduce the chance your emails ending up in the recipient's Spam
folder.
DKIM
(Wikipedia↗)
is an
email
authentication method
designed to avoid email spoofing.
Setting up DKIM is highly recommended to reduce the chance your emails ending up in the recipient's Spam
folder.
Add the following CNAME DNS records to your domain.
{% for dkim_prefix, dkim_cname_value in dkim_records %}
Some DNS registrar might require a full record path, in this case please use
dkim._domainkey.{{ custom_domain.domain }} as domain value instead.
If you are using a subdomain, e.g. subdomain.domain.com,
you need to use dkim._domainkey.subdomain as the domain instead.
That means, if your domain is mail.domain.com you should enter dkim._domainkey.mail as the Domain.
If you are using CloudFlare, please make sure to not select the Proxy option.
{% if not dkim_ok %}
Your DNS is not correctly set.
{% for custom_record, retrieved_cname in dkim_errors.items() %}
The CNAME record we obtain for {{ custom_record }} is {{ retrieved_cname }}
{% endfor %}
{% if custom_domain.dkim_verified %}
Without DKIM setup, emails you sent from your alias might end up in Spam/Junk folder.
{% endif %}
{% if custom_domain.dkim_verified %}
DKIM is still enabled. Please update your DKIM settings with all CNAME records
DMARC
(Wikipedia↗)
is designed to protect the domain from unauthorized use, commonly known as email spoofing.
Built around SPF and DKIM, a DMARC policy tells the receiving mail server what to do if
neither of those authentication methods passes.
Some DNS registrar might require a full record path, in this case please use
_dmarc.{{ custom_domain.domain }} as domain value instead.
If you are using a subdomain, e.g. subdomain.domain.com,
you need to use _dmarc.subdomain as domain value instead.
{% if not dmarc_ok %}
Your DNS is not correctly set.
The TXT record we obtain is:
{% if not dmarc_errors %}(Empty){% endif %}
{% for r in dmarc_errors %}
{{ r }}
{% endfor %}
{% if custom_domain.dmarc_verified %}
Without DMARC setup, emails sent from your alias might end up in the Spam/Junk folder.
{% endif %}