-
Notifications
You must be signed in to change notification settings - Fork 225
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for SMTP TLS reports (#453)
- Loading branch information
1 parent
7d2b431
commit b808850
Showing
17 changed files
with
810 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -187,3 +187,46 @@ Thanks to GitHub user [xennn](https://github.com/xennn) for the anonymized | |
feedback_type,user_agent,version,original_envelope_id,original_mail_from,original_rcpt_to,arrival_date,arrival_date_utc,subject,message_id,authentication_results,dkim_domain,source_ip_address,source_country,source_reverse_dns,source_base_domain,delivery_result,auth_failure,reported_domain,authentication_mechanisms,sample_headers_only | ||
auth-failure,Lua/1.0,1.0,,[email protected],[email protected],"Mon, 01 Oct 2018 11:20:27 +0200",2018-10-01 09:20:27,Subject,<38.E7.30937.BD6E1BB5@ mailrelay.de>,"dmarc=fail (p=none, dis=none) header.from=domain.de",,10.10.10.10,,,,policy,dmarc,domain.de,,False | ||
``` | ||
|
||
### JSON SMTP TLS report | ||
|
||
```json | ||
[ | ||
{ | ||
"organization_name": "Example Inc.", | ||
"begin_date": "2024-01-09T00:00:00Z", | ||
"end_date": "2024-01-09T23:59:59Z", | ||
"report_id": "2024-01-09T00:00:00Z_example.com", | ||
"policies": [ | ||
{ | ||
"policy_domain": "example.com", | ||
"policy_type": "sts", | ||
"policy_strings": [ | ||
"version: STSv1", | ||
"mode: testing", | ||
"mx: example.com", | ||
"max_age: 86400" | ||
], | ||
"successful_session_count": 0, | ||
"failed_session_count": 3, | ||
"failure_details": [ | ||
{ | ||
"result_type": "validation-failure", | ||
"failed_session_count": 2, | ||
"sending_mta_ip": "209.85.222.201", | ||
"receiving_ip": "173.212.201.41", | ||
"receiving_mx_hostname": "example.com" | ||
}, | ||
{ | ||
"result_type": "validation-failure", | ||
"failed_session_count": 1, | ||
"sending_mta_ip": "209.85.208.176", | ||
"receiving_ip": "173.212.201.41", | ||
"receiving_mx_hostname": "example.com" | ||
} | ||
] | ||
} | ||
] | ||
} | ||
] | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.