mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 14:47:37 +03:00
mod_legacyauth: Updated to use the new events API.
This commit is contained in:
parent
a5ca380a43
commit
79082eba3e
1 changed files with 43 additions and 42 deletions
|
@ -29,8 +29,9 @@ module:hook("stream-features", function(event)
|
|||
end
|
||||
end);
|
||||
|
||||
module:add_iq_handler("c2s_unauthed", "jabber:iq:auth",
|
||||
function (session, stanza)
|
||||
module:hook("stanza/iq/jabber:iq:auth:query", function(event)
|
||||
local session, stanza = event.origin, event.stanza;
|
||||
|
||||
if secure_auth_only and not session.secure then
|
||||
session.send(st.error_reply(stanza, "modify", "not-acceptable", "Encryption (SSL or TLS) is required to connect to this server"));
|
||||
return true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue