Software /
code /
prosody-modules
File
mod_uptime_presence/mod_uptime_presence.lua @ 5309:09656e2b4927
mod_client_management: Improve table output
Requires 1f89a2a9f532 and 1023c3faffac from Prosody.
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Thu, 06 Apr 2023 15:22:10 +0100 |
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);