| Source IP | Count | Header From | {% if report.has_envelope_to %}Envelope To | {% endif %}Disposition | DKIM | SPF | Auth Results |
|---|---|---|---|---|---|---|---|
| {{ rec.source_ip }} | {{ rec.count }} | {{ rec.header_from }} | {% if report.has_envelope_to %}{{ rec.envelope_to }} | {% endif %}{{ rec.disposition }} | {{ rec.dkim }} | {{ rec.spf }} |
{% if rec.auth_results.is_some() %}
{% let auth = rec.auth_results.as_ref().unwrap() %}
{% for dkimres in auth.dkim %}
DKIM: domain={{ dkimres.domain }}
selector={{ dkimres.selector }}
result={{ dkimres.result }}
{% endfor %} {% for spfres in auth.spf %} SPF: domain={{ spfres.domain }} scope={{ spfres.scope }} result={{ spfres.result }} {% endfor %} {% for reason in rec.reason %} Reason: {{ reason }} {% endfor %} {% endif %} |
No DMARC summary found.
{% endif %}