Mercurial > prosody-modules
view mod_csi/mod_csi.lua @ 1522:d4a4ed31567e
mod_smacks: Trick session.send() into not returning nil or mod_message will act as if messages were not delivered
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Mon, 13 Oct 2014 14:19:49 +0200 |
parents | 90fe03e65d2c |
children | fbb4cd2922a1 |
line wrap: on
line source
local st = require "util.stanza"; local csi_feature = st.stanza("csi", { xmlns = "urn:xmpp:csi" }); module:hook("stream-features", function (event) if event.origin.username then event.features:add_child(csi_feature); end end); function refire_event(name) return function (event) if event.origin.username then module:fire_event(name, event); return true; end end; end module:hook("stanza/urn:xmpp:csi:active", refire_event("csi-client-active")); module:hook("stanza/urn:xmpp:csi:inactive", refire_event("csi-client-inactive"));