mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_saslauth: Don't offer bind/session when they aren't authenticated yet :) [thanks albert, again...]
This commit is contained in:
parent
4e00f6c8b5
commit
3c73c21bfc
1 changed files with 4 additions and 1 deletions
|
@ -121,7 +121,10 @@ local bind_attr = { xmlns='urn:ietf:params:xml:ns:xmpp-bind' };
|
|||
local xmpp_session_attr = { xmlns='urn:ietf:params:xml:ns:xmpp-session' };
|
||||
module:add_event_hook("stream-features",
|
||||
function (session, features)
|
||||
if not session.username and ((not secure_auth_only) or session.secure) then
|
||||
if not session.username then
|
||||
if secure_auth_only and not session.secure then
|
||||
return;
|
||||
end
|
||||
features:tag("mechanisms", mechanisms_attr);
|
||||
-- TODO: Provide PLAIN only if TLS is active, this is a SHOULD from the introduction of RFC 4616. This behavior could be overridden via configuration but will issuing a warning or so.
|
||||
if config.get(session.host or "*", "core", "anonymous_login") then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue