Software / code / prosody-modules
File
mod_csi/mod_csi.lua @ 1494:02cd4a081db4
mod_filter_chatstates: Replace unwanted messages with a dummy stanza so that mod_message doesn't think delivery failed (and then generate an error reply)
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Mon, 25 Aug 2014 12:03:52 +0100 |
| parent | 1483:90fe03e65d2c |
| child | 1590: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"));