aboutsummaryrefslogtreecommitdiffstats
path: root/core/rostermanager.lua
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2008-10-25 02:29:58 +0500
committerWaqas Hussain <waqas20@gmail.com>2008-10-25 02:29:58 +0500
commit6c822abf42a548865e7907f1f02c8e3344580b4d (patch)
tree5ecf7684106d6e1c3451d33bafe11e8b2e19149e /core/rostermanager.lua
parent17d7c83a7141e6d2142c9dece0845051c85ef592 (diff)
downloadprosody-6c822abf42a548865e7907f1f02c8e3344580b4d.tar.gz
prosody-6c822abf42a548865e7907f1f02c8e3344580b4d.zip
Inbound subscription cancellation
Diffstat (limited to 'core/rostermanager.lua')
-rw-r--r--core/rostermanager.lua14
1 files changed, 14 insertions, 0 deletions
diff --git a/core/rostermanager.lua b/core/rostermanager.lua
index a9be62aa..3cdbbd3a 100644
--- a/core/rostermanager.lua
+++ b/core/rostermanager.lua
@@ -107,4 +107,18 @@ function process_inbound_subscription_approval(username, host, jid)
end
end
+function process_inbound_subscription_cancellation(username, host, jid)
+ local roster = load_roster(username, host);
+ local item = roster[jid];
+ if item and (item.subscription == "to" or item.subscription == "both") then
+ if item.subscription == "to" then
+ item.subscription = "none";
+ else
+ item.subscription = "from";
+ end
+ -- FIXME do we need to item.ask = nil;?
+ return datamanager.store(username, host, "roster", roster);
+ end
+end
+
return _M; \ No newline at end of file