Software /
code /
prosody-modules
File
mod_uptime_presence/mod_uptime_presence.lua @ 1004:290c21a5e0ee
mod_muc_log, mod_muc_log_http: cleanup syntax (off with the "~= nil"), and cut down wild table indexing.
author | Marco Cirillo <maranda@lightwitch.org> |
---|---|
date | Thu, 09 May 2013 02:13:09 +0200 |
parent | 917:d3497b81a3b5 |
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);