# HG changeset patch # User Matthew Wild # Date 1698341447 -3600 # Node ID c5767b7528ac9c5724c667c72cb4591ad5635360 # Parent 38c95544b7eec6b4a77e2856683013bc48d01562 mod_saslauth: Clear 'auto' from endpoint hash var, it's not a real hash (thanks tmolitor) diff -r 38c95544b7ee -r c5767b7528ac plugins/mod_saslauth.lua --- 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();