core/offlinemessage.lua

Thu, 30 Oct 2008 21:19:26 +0000

author
Matthew Wild <mwild1@gmail.com>
date
Thu, 30 Oct 2008 21:19:26 +0000
changeset 187
2e16e5077d8f
parent 129
0f119bece309
child 519
cccd610a0ef9
permissions
-rw-r--r--

Was a bit hasty to remove send_s2s() from stanza_router. We still use it, and there is no problem with it.


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