aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_register.lua
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2010-06-24 03:47:35 +0500
committerWaqas Hussain <waqas20@gmail.com>2010-06-24 03:47:35 +0500
commit82c085f2447f3f72282d98ea99d9ff7cda8903b8 (patch)
tree9516e39d01c11bd7ee1d14580392f38f1af4149e /plugins/mod_register.lua
parentee9318ebfb3a999870d7d0239a0f9d824c9bd656 (diff)
downloadprosody-82c085f2447f3f72282d98ea99d9ff7cda8903b8.tar.gz
prosody-82c085f2447f3f72282d98ea99d9ff7cda8903b8.zip
mod_register: Delete the offline store as a list, and delete the privacy store.
Diffstat (limited to 'plugins/mod_register.lua')
-rw-r--r--plugins/mod_register.lua3
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 });