{% extends "base.html" %} {% block content %}

TLS Report {{ report.id }}

{{ report.domain }} ยท {{ report.org_name or "unknown organization" }}

Report Org {{ report.org_name or "unknown" }}
Report ID {{ report.report_id or report.id }}
Date Range {{ report.date_begin | fmt_dt }}
{{ report.date_end | fmt_dt }}
Contact {{ report.contact_info or "not reported" }}

Alerts From This TLS Report

{% for alert in alerts %} {{ alert.severity }} {{ alert.title }}

{{ alert.llm_summary or alert.summary }}

{% else %}
No alerts are linked to this TLS report.
{% endfor %}

Policies

{% for policy in report.policies %} {% else %} {% endfor %}
Policy MX Hosts Successful Sessions Failed Sessions Failure Rate
{{ policy.policy_type or "unknown" }} {{ policy.policy_domain }} {% for host in policy.mx_hosts %} {{ host }} {% else %} not reported {% endfor %} {{ policy.total_successful_session_count }} {{ policy.total_failure_session_count }} {{ "%.1f"|format(policy.failure_rate) }}%
No policies found in this report.

Failure Details

{% set ns = namespace(rows=0) %} {% for policy in report.policies %} {% for failure in policy.failures %} {% set ns.rows = ns.rows + 1 %} {% endfor %} {% endfor %} {% if ns.rows == 0 %} {% endif %}
Result Failed Sessions Receiving MX Sending MTA IP Receiving IP Reason
{{ failure.result_type or "unknown" }} {{ failure.failed_session_count }} {{ failure.receiving_mx_hostname or failure.receiving_mx_helo or "not reported" }} {{ failure.sending_mta_ip or "not reported" }} {{ failure.receiving_ip or "not reported" }} {{ failure.failure_reason_code or failure.additional_information or "not reported" }}
No failure details were reported.
{% endblock %}