core/offlinemessage.lua

Thu, 23 Oct 2008 19:47:56 +0500

author
Waqas Hussain <waqas20@gmail.com>
date
Thu, 23 Oct 2008 19:47:56 +0500
changeset 130
907cff6b5359
parent 129
0f119bece309
child 519
cccd610a0ef9
permissions
-rw-r--r--

Presence fixes
- Presence to other resources sent correctly
- Resource of the recipient ignored for all presence except available and unavailable


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

return _M;

mercurial