core/offlinemessage.lua

changeset 0
3e3171b59028
child 129
0f119bece309
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/core/offlinemessage.lua	Fri Aug 22 21:09:04 2008 +0000
@@ -0,0 +1,13 @@
+
+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