mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_tls: Set the sslctx on outgoing connections (possibly the cause of outgoing s2s connections not being encrypted)
This commit is contained in:
parent
f8a121c33b
commit
b870a3fe51
1 changed files with 2 additions and 1 deletions
|
@ -89,7 +89,8 @@ module:hook_stanza(xmlns_starttls, "proceed",
|
|||
module:log("debug", "Proceeding with TLS on s2sout...");
|
||||
local format, to_host, from_host = string.format, session.to_host, session.from_host;
|
||||
session:reset_stream();
|
||||
session.conn:starttls(true);
|
||||
local ssl_ctx = session.from_host and hosts[session.from_host].ssl_ctx or global_ssl_ctx;
|
||||
session.conn:starttls(ssl_ctx, true);
|
||||
session.secure = false;
|
||||
return true;
|
||||
end);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue