-
-
Notifications
You must be signed in to change notification settings - Fork 660
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
put tls cipher info into Received header according to rfc8314 #2903
Comments
Node.js from v12.16 and v13.4 support I think adhering to the RFC is a good idea, even if this means we lose the additional information that Haraka does now log (TLS version and whether (client?) verification succeeded). The additional information, including the embedded value of |
I was planning to lower the min node version back to 10 as we have resolved the issue requiring the bump. It would be nice if a PR implementing this is added progressively. |
Instead of inscribing TLS cipher info into comment like it's done now, follow this new RFC instead and put it into tls clause. This will probably require:
Before:
(cipher=ECDHE-RSA-AES256-GCM-SHA384)
After:
tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
. (not sure if dhgroup
could possibly be ever extracted)The text was updated successfully, but these errors were encountered: