# HG changeset patch # User Waqas Hussain # Date 1236469791 -18000 # Node ID 236d1ce9fa993dbca591ca0e21cdc9d971135eb2 # Parent 5b8da51b08437de216b7ccb645c15c72801c741c mod_legacyauth: Added stream feature: diff -r 5b8da51b0843 -r 236d1ce9fa99 plugins/mod_legacyauth.lua --- a/plugins/mod_legacyauth.lua Sun Mar 08 03:46:44 2009 +0500 +++ b/plugins/mod_legacyauth.lua Sun Mar 08 04:49:51 2009 +0500 @@ -12,6 +12,9 @@ local t_concat = table.concat; 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 +end); module:add_iq_handler("c2s_unauthed", "jabber:iq:auth", function (session, stanza)