mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_tls: Ignore lack of STARTTLS offer only when s2s_require_encryption set
This commit is contained in:
parent
2b988f0786
commit
dcc391f187
1 changed files with 4 additions and 1 deletions
|
@ -153,8 +153,11 @@ module:hook_tag("http://etherx.jabber.org/streams", "features", function (sessio
|
|||
if can_do_tls(session) then
|
||||
if stanza:get_child("starttls", xmlns_starttls) then
|
||||
module:log("debug", "%s is offering TLS, taking up the offer...", session.to_host);
|
||||
else
|
||||
elseif s2s_require_encryption then
|
||||
module:log("debug", "%s is *not* offering TLS, trying anyways!", session.to_host);
|
||||
else
|
||||
module:log("debug", "%s is not offering TLS", session.to_host);
|
||||
return;
|
||||
end
|
||||
session.sends2s(starttls_initiate);
|
||||
return true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue