view mod_uptime_presence/mod_uptime_presence.lua @ 2856:08f6b9d37a49

mod_omemo_all_access: initial commit. disable access control for all omemo related PEP nodes
author Daniel Gultsch <daniel@gultsch.de>
date Fri, 29 Dec 2017 16:28:47 +0100
parents d3497b81a3b5
children
line wrap: on
line source

local st = require"util.stanza";
local datetime = require"util.datetime";

local presence = st.presence({ from = module.host })
	:tag("delay", { xmlns = "urn:xmpp:delay",
		stamp = datetime.datetime(prosody.start_time) });

module:hook("presence/host", function(event)
	local stanza = event.stanza;
	if stanza.attr.type == "probe" then
		presence.attr.id = stanza.attr.id;
		presence.attr.to = stanza.attr.from;
		module:send(presence);
		return true;
	end
end, 10);