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

Email Gateway — Mail Flow

Every message that flows through the inline SMTP gateway, with the verdict applied at the door.

‹ Email Security
Phase A — staging. The gateway listens on 127.0.0.1:10025 and filters mail inline (analyzer + ClamAV + policies) → clean is delivered (relayed downstream), threats are quarantined. Public MX comes in Phase B (needs IPv4 + rDNS).
Active protection
Applied to delivered mail as it's relayed.
Safe-Links {{ 'ON' if safelink_on else 'OFF' }}
Caution banner
{{ "{:,}".format(total) }}
Messages processed
{{ quarantined }}
Quarantined
{{ delivered }}
Delivered (clean)
{% if items %} {% for it in items %} {% set g = it.g %} {% endfor %}
Time (PT)FromToSubjectVerdictAction
{{ g.ts| pt('%m-%d %H:%M:%S') }} {{ g.mail_from or '—' }} {{ g.rcpt_to or '—' }} {{ g.subject or '—' }} {% if it.reasons %}
    {% for r in it.reasons[:2] %}
  • {{ r }}
  • {% endfor %}
{% endif %}
{% if g.severity %}{{ g.severity }} {{ g.threat_type }} ({{ g.score }}){% else %}clean{% endif %} {% if g.clam %}
ClamAV: {{ g.clam }}
{% endif %}
{{ g.action }}{% if g.relay %}
{{ g.relay }}
{% endif %}
{% else %}

No mail has flowed through the gateway yet. Send a test message to 127.0.0.1:10025 to see it filtered here.

{% endif %}
{% endblock %}