# HG changeset patch # User Kim Alvefur # Date 1681895651 -7200 # Node ID f4e33d17eaa8de302d371906b0cbba1b0e3e1c7f # Parent 82980f6890cdbf7a7968f47dfeff5215bb9c408e mod_tls: Drop request for client certificates on outgoing connections It is the other end who should request client certificates for these connections, we only need to send ours. Hopefully this was treated as a noop, so probably no harm in keeping it. But hey, spring cleaning? :) diff -r 82980f6890cd -r f4e33d17eaa8 plugins/mod_tls.lua --- a/plugins/mod_tls.lua Sun Apr 16 12:47:55 2023 +0200 +++ b/plugins/mod_tls.lua Wed Apr 19 11:14:11 2023 +0200 @@ -62,7 +62,7 @@ module:log("debug", "Creating context for s2sout"); -- for outgoing server connections - ssl_ctx_s2sout, err_s2sout, ssl_cfg_s2sout = create_context(host.host, "client", host_s2s, host_ssl, global_s2s, request_client_certs, xmpp_alpn); + ssl_ctx_s2sout, err_s2sout, ssl_cfg_s2sout = create_context(host.host, "client", host_s2s, host_ssl, global_s2s, xmpp_alpn); if not ssl_ctx_s2sout then module:log("error", "Error creating contexts for s2sout: %s", err_s2sout); end module:log("debug", "Creating context for s2sin");