Software /
code /
prosody-modules
File
mod_ignore_host_chatstates/mod_ignore_host_chatstates.lua @ 4377:a0f1fb5e7829
mod_invites: Add ttl to all public creation APIs
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Sat, 23 Jan 2021 12:56:17 +0000 |
parent | 3419:aed47ebd26d3 |
line wrap: on
line source
module:hook("message/host", function (event) local stanza = event.stanza; if #stanza.tags == 1 and stanza.tags[1].attr.xmlns == "http://jabber.org/protocol/chatstates" then return true; end end, -10);