Software / code / prosody
Changeset
13290:c5767b7528ac
mod_saslauth: Clear 'auto' from endpoint hash var, it's not a real hash (thanks tmolitor)
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Thu, 26 Oct 2023 18:30:47 +0100 |
| parents | 13289:38c95544b7ee |
| children | 13292:8fbdd878fcf6 |
| files | plugins/mod_saslauth.lua |
| diffstat | 1 files changed, 1 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_saslauth.lua Thu Oct 26 15:14:39 2023 +0100 +++ b/plugins/mod_saslauth.lua Thu Oct 26 18:30:47 2023 +0100 @@ -335,6 +335,7 @@ local certfile; if tls_server_end_point_hash == "auto" then + tls_server_end_point_hash = nil; local ssl_cfg = origin.ssl_cfg; if not ssl_cfg then local server = origin.conn:server();