From ee9318ebfb3a999870d7d0239a0f9d824c9bd656 Mon Sep 17 00:00:00 2001 From: Waqas Hussain Date: Thu, 24 Jun 2010 03:46:52 +0500 Subject: mod_register: Don't disable account before deleting it (unnecessary, and can cause problems). --- plugins/mod_register.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/mod_register.lua b/plugins/mod_register.lua index b8d142f7..40303b57 100644 --- a/plugins/mod_register.lua +++ b/plugins/mod_register.lua @@ -35,7 +35,7 @@ module:add_iq_handler("c2s", "jabber:iq:register", function (session, stanza) local username, host = session.username, session.host; --session.send(st.error_reply(stanza, "cancel", "not-allowed")); --return; - usermanager_set_password(username, host, nil); -- Disable account + --usermanager_set_password(username, host, nil); -- Disable account -- FIXME the disabling currently allows a different user to recreate the account -- we should add an in-memory account block mode when we have threading session.send(st.reply(stanza)); -- cgit v1.2.3