From 0c333f589c00699e7a3f84b5c21b3e8854bfb165 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Sun, 31 Jan 2010 15:39:49 +0000 Subject: mod_tls: Set the sslctx on outgoing connections (possibly the cause of outgoing s2s connections not being encrypted) --- plugins/mod_tls.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/mod_tls.lua b/plugins/mod_tls.lua index 8a450803..cceef308 100644 --- a/plugins/mod_tls.lua +++ b/plugins/mod_tls.lua @@ -90,6 +90,8 @@ module:hook_stanza(xmlns_starttls, "proceed", function (session, stanza) module:log("debug", "Proceeding with TLS on s2sout..."); local format, to_host, from_host = string.format, session.to_host, session.from_host; + local ssl_ctx = session.from_host and hosts[session.from_host].ssl_ctx or global_ssl_ctx; + session.conn.set_sslctx(ssl_ctx); session:reset_stream(); session.conn.starttls(true); session.secure = false; -- cgit v1.2.3