File

core/offlinemessage.lua @ 75:338e75cba18d

Added script to pull from master mercurial repository Added a few name suggestions to doc/names.txt Minor edits.
author Paul-Sebastian Manole <brokenthorn@gmail.com>
date Wed, 08 Oct 2008 19:17:14 +0300
parent 0:3e3171b59028
child 129:0f119bece309
line wrap: on
line source


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