mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
mod_c2s: Improve log message in case there are no stream features on offer (thanks hexa)
This commit is contained in:
parent
4fd11623dd
commit
b9cac1a3ff
1 changed files with 7 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue