From: Waqas Hussain Date: Wed, 23 Jun 2010 22:47:35 +0000 (+0500) Subject: mod_register: Delete the offline store as a list, and delete the privacy store. X-Git-Url: https://git.enpas.org/?a=commitdiff_plain;ds=sidebyside;h=b105f6571d6b856a79373942051cac8400320f00;p=prosody.git mod_register: Delete the offline store as a list, and delete the privacy store. --- diff --git a/plugins/mod_register.lua b/plugins/mod_register.lua index 40303b57..2818e336 100644 --- a/plugins/mod_register.lua +++ b/plugins/mod_register.lua @@ -46,7 +46,7 @@ module:add_iq_handler("c2s", "jabber:iq:register", function (session, stanza) -- TODO datamanager should be able to delete all user data itself datamanager.store(username, host, "vcard", nil); datamanager.store(username, host, "private", nil); - datamanager.store(username, host, "offline", nil); + datamanager.list_store(username, host, "offline", nil); local bare = username.."@"..host; for jid, item in pairs(roster) do if jid and jid ~= "pending" then @@ -59,6 +59,7 @@ module:add_iq_handler("c2s", "jabber:iq:register", function (session, stanza) end end datamanager.store(username, host, "roster", nil); + datamanager.store(username, host, "privacy", nil); datamanager.store(username, host, "accounts", nil); -- delete accounts datastore at the end module:log("info", "User removed their account: %s@%s", username, host); module:fire_event("user-deregistered", { username = username, host = host, source = "mod_register", session = session });