{% extends "base.html" %} {% block title %}Dashboard - Email Server Management{% endblock %} {% block page_title %}Dashboard{% endblock %} {% block content %}
| Time | From | Recipients | Status | DKIM |
|---|---|---|---|---|
| {{ email.created_at|format_datetime }} | {{ email.mail_from }} |
{% if email.to_address %}
{% for rcpt in email.to_address.split(',') %}
{% if rcpt.strip() %}
To:
{{ rcpt.strip() }}
{% endif %}
{% endfor %}
{% endif %}
{% if email.cc_addresses %}
{% for rcpt in email.cc_addresses.split(',') %}
{% if rcpt.strip() %}
CC:
{{ rcpt.strip() }}
{% endif %}
{% endfor %}
{% endif %}
{% if email.bcc_addresses %}
{% for rcpt in email.bcc_addresses.split(',') %}
{% if rcpt.strip() %}
BCC:
{{ rcpt.strip() }}
{% endif %}
{% endfor %}
{% endif %}
{% if not email.to_address and not email.cc_addresses and not email.bcc_addresses %}
No recipients
{% endif %}
|
{% set delivered = recipient_logs_map[email.id]|selectattr('status', 'equalto', 'success')|list %} {% set failed = recipient_logs_map[email.id]|selectattr('status', 'ne', 'success')|list %} {% if delivered and failed %} {% set overall_status = 'partial' %} {% elif delivered %} {% set overall_status = 'relayed' %} {% else %} {% set overall_status = 'failed' %} {% endif %} {% if overall_status == 'relayed' %} Sent {% elif overall_status == 'partial' %} Partial Fail {% else %} Failed {% endif %} | {% if email.dkim_signed %} {% else %} {% endif %} |
No email activity yet
No authentication activity yet