mrisher / smtp-sts

SMTP Strict Transport Security
Apache License 2.0
35 stars 19 forks source link

Use case-sensitive ABNF in reporting #173

Closed aykevl closed 6 years ago

aykevl commented 6 years ago

See issue #161. It's fixed for MTA-STS but not yet for SMTP-TLSRPT. Using RFC 7405 would make the ABNF a lot easier to read.

danmarg commented 6 years ago

I believe it is already in use. From draft 08:

 tlsrpt-subject = %s"Report" FWS               ; "Report"
                  %s"Domain:" FWS              ; "Domain:"
          domain-name FWS              ; per RFC6376
          %s"Submitter:" FWS           ; "Submitter:"
          domain-name FWS              ; per RFC6376
          %s"Report-ID:" FWS           ; "Report-ID:

The comments are admittedly not the most helpful now.

Did we miss some other place?

danmarg commented 6 years ago

Sorry, I see that in the TXT record this was not done. Done here: https://github.com/mrisher/smtp-sts/pull/180.

aykevl commented 6 years ago

Yes, thanks!