TLS Report Summary:
Organization: {{ report.organization_name }}
Date Range: {{ report.date_range.start_datetime }} to {{ report.date_range.end_datetime }}
Contact: {{ report.contact_info }}
Report ID: {{ report.report_id }}
Policies:
{% for policy in report.policies %}
Policy Domain: {{ policy.policy.policy_domain }}
- Policy Type: {{ policy.policy.policy_type }}
- Policy String: {{ policy.policy.policy_string | join(", ") }}
- Successful Sessions: {{ policy.summary.total_successful_session_count }}
- Failed Sessions: {{ policy.summary.total_failure_session_count }}
{% for mx_host in policy.policy.mx_host %}
- Hostname: {{ mx_host.hostname }}, Failures: {{ mx_host.failure_count }}, Result: {{ mx_host.result_type }}
{% endfor %}
{% for detail in policy.failure_details %}
- Result: {{ detail.result_type }}, Sending IP: {{ detail.sending_mta_ip }}, Failed Sessions: {{ detail.failed_session_count }}
{% if detail.failure_reason_code != "" %}
(Reason: {{ detail.failure_reason_code }})
{% endif %}
(Receiving IP: {{ detail.receiving_ip }})
(Receiving MX: {{ detail.receiving_mx_hostname }})
(Additional Info: {{ detail.additional_info }})
{% endfor %}
{% endfor %}