{% extends "base.html" %} {% block title %}Gateway Domains · SD RMM{% endblock %} {% block content %} {% include "_email_nav.html" %}

Gateway Domains

Onboard a customer domain onto the inline email gateway. Add it, publish the DNS records we generate, and we filter its mail at the door.

‹ Email Security
{% if saved == 'dup' %} {% elif saved %}{% endif %}

Onboard a domain

The downstream mailserver is where we relay clean mail after filtering (their current MX target, before they switch it to us).

Onboarded domains ({{ domains|length }})

{% if domains %} {% for d in domains %} {% endfor %}
DomainOrgDownstreamDNS checksStatus
{{ d.domain }} {{ org_name.get(d.org_id, '—') if d.org_id else '—' }} {{ d.downstream_host or '—' }}{% if d.downstream_host %}:{{ d.downstream_port }}{% endif %} MX{{ '✓' if d.mx_ok else '·' }} TXT{{ '✓' if d.txt_ok else '·' }} SPF{{ '✓' if d.spf_ok else '·' }} {{ d.status }} Setup ›
{% else %}

No domains onboarded yet. Add one above to generate its DNS setup.

{% endif %}
{% endblock %}