core/offlinemessage.lua
author matthew@silver
Sun, 24 Aug 2008 18:01:20 +0100
changeset 5 57e4eb3aeac0
child 129 0f119bece309
permissions -rw-r--r--
Added all the files to please hg :/


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