diff options
author | Waqas Hussain <waqas20@gmail.com> | 2010-06-24 03:47:35 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2010-06-24 03:47:35 +0500 |
commit | 82c085f2447f3f72282d98ea99d9ff7cda8903b8 (patch) | |
tree | 9516e39d01c11bd7ee1d14580392f38f1af4149e /plugins | |
parent | ee9318ebfb3a999870d7d0239a0f9d824c9bd656 (diff) | |
download | prosody-82c085f2447f3f72282d98ea99d9ff7cda8903b8.tar.gz prosody-82c085f2447f3f72282d98ea99d9ff7cda8903b8.zip |
mod_register: Delete the offline store as a list, and delete the privacy store.
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_register.lua | 3 |
1 files changed, 2 insertions, 1 deletions
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 }); |