mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_tls: Attempt STARTTLS on outgoing unencrypted legacy s2s connections
As suggested by RFC 7590
This commit is contained in:
parent
c6adacaaad
commit
e3c0a877bf
1 changed files with 8 additions and 0 deletions
|
@ -165,6 +165,14 @@ module:hook_tag("http://etherx.jabber.org/streams", "features", function (sessio
|
|||
end
|
||||
end, 500);
|
||||
|
||||
module:hook("s2sout-authenticate-legacy", function(event)
|
||||
local session = event.origin;
|
||||
if s2s_require_encryption and can_do_tls(session) then
|
||||
session.sends2s(starttls_initiate);
|
||||
return true;
|
||||
end
|
||||
end, 200);
|
||||
|
||||
module:hook_tag(xmlns_starttls, "proceed", function (session, stanza) -- luacheck: ignore 212/stanza
|
||||
if session.type == "s2sout_unauthed" and can_do_tls(session) then
|
||||
module:log("debug", "Proceeding with TLS on s2sout...");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue