mod_c2s: Improve log message in case there are no stream features on offer (thanks hexa)

This commit is contained in:
Kim Alvefur 2018-12-28 00:13:03 +01:00
parent 4fd11623dd
commit b9cac1a3ff

View file

@ -106,7 +106,13 @@ function stream_callbacks.streamopened(session, attr)
if features.tags[1] or session.full_jid then if features.tags[1] or session.full_jid then
send(features); send(features);
else else
(session.log or log)("warn", "No stream features to offer"); if session.secure then
-- Normally STARTTLS would be offered
(session.log or log)("warn", "No stream features to offer on secure session. Check authentication settings.");
else
-- Here SASL should be offered
(session.log or log)("warn", "No stream features to offer on insecure session. Check encryption and security settings.");
end
session:close{ condition = "undefined-condition", text = "No stream features to proceed with" }; session:close{ condition = "undefined-condition", text = "No stream features to proceed with" };
end end
end end