mod_legacyauth: Updated to use the new events API.

This commit is contained in:
Waqas Hussain 2010-10-16 05:41:49 +05:00
parent a5ca380a43
commit 79082eba3e

View file

@ -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;