core/offlinemessage.lua

Thu, 23 Oct 2008 18:36:10 +0500

author
Waqas Hussain <waqas20@gmail.com>
date
Thu, 23 Oct 2008 18:36:10 +0500
changeset 128
77a1778b16e8
parent 0
3e3171b59028
child 129
0f119bece309
permissions
-rw-r--r--

Set things up for presence subscriptions.
Remove reference to core.s2smanager.


require "util.datamanager"

local datamanager = datamanager;
local t_insert = table.insert;

module "offlinemessage"

function new(user, host, stanza)
	local offlinedata = datamanager.load(user, host, "offlinemsg") or {};
	t_insert(offlinedata, stanza);
	return datamanager.store(user, host, "offlinemsg", offlinedata);
end

mercurial