plugins/mod_legacyauth.lua

changeset 891
236d1ce9fa99
parent 760
90ce865eebd8
child 894
2c0b9e3c11c3
--- 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)

mercurial