# HG changeset patch # User Waqas Hussain # Date 1277333212 -18000 # Node ID 5f57f2f81c023c2ad0e5be7293279fa818375a08 # Parent 8865d1b3dce26c38c379173b8bbaa7ec79c8414b mod_register: Don't disable account before deleting it (unnecessary, and can cause problems). diff -r 8865d1b3dce2 -r 5f57f2f81c02 plugins/mod_register.lua --- a/plugins/mod_register.lua Thu Jun 24 03:46:05 2010 +0500 +++ b/plugins/mod_register.lua Thu Jun 24 03:46:52 2010 +0500 @@ -35,7 +35,7 @@ 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));