{% extends "base.html" %} {% block title %}Mail — {{ title }}{% endblock %} {% block content %}

Mail

Only mailboxes and DNS for your domains.

{% if error %}

{{ error }}

{% endif %} {% if ok %}

{{ ok }}

{% endif %} {% if not domains %}
No domains on your account

Create a site first so mailbox domains can be validated against your hostnames.

{% else %} {% for w in domain_warnings.warnings %}
{{ w.title }}

{{ w.detail }}

{% endfor %}

DNS for a domain

{% if guidance %}
{{ guidance.a_record }}
{{ guidance.mx }}
{{ guidance.spf }}
{{ guidance.dmarc }}
# {{ guidance.dkim_note }}
{% endif %}

Add mailbox

Address must use one of: {{ domains|join(', ') }}

Enable DKIM

{% if dkim_result %}
{{ dkim_result }}
{% endif %}
{% for m in mailboxes %} {% else %} {% endfor %}
Your mailboxes
{{ m }}
No mailboxes yet
{% endif %} {% endblock %}