mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_legacyauth: Hide stream feature when secure auth is enabled, and session isn't secure
This commit is contained in:
parent
3c73c21bfc
commit
fc68c36454
1 changed files with 6 additions and 1 deletions
|
@ -19,7 +19,12 @@ local usermanager = require "core.usermanager";
|
|||
|
||||
module:add_feature("jabber:iq:auth");
|
||||
module:add_event_hook("stream-features", function (session, features)
|
||||
if not session.username then features:tag("auth", {xmlns='http://jabber.org/features/iq-auth'}):up(); end
|
||||
if secure_auth_only and not session.secure then
|
||||
-- Sorry, not offering to insecure streams!
|
||||
return;
|
||||
elseif not session.username then
|
||||
features:tag("auth", {xmlns='http://jabber.org/features/iq-auth'}):up();
|
||||
end
|
||||
end);
|
||||
|
||||
module:add_iq_handler("c2s_unauthed", "jabber:iq:auth",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue