Mercurial > prosody-modules
view mod_unsubscriber/mod_unsubscriber.lua @ 6442:27fd5c417e19
mod_sms_clickatell: Remove unused import
| author | Link Mauve <linkmauve@linkmauve.fr> |
|---|---|
| date | Wed, 11 Mar 2026 00:33:54 +0100 |
| parents | 9c9889ad4302 |
| children |
line wrap: on
line source
assert(module:get_host_type() == "component", "This module should be loaded as a Component"); local st = require "util.stanza"; module:hook("presence/bare", function(event) local origin, stanza = event.origin, event.stanza; if stanza.attr.type == "probe" then -- they are subscribed and want our current presence -- tell them we denied their subscription local reply = st.reply(stanza) reply.attr.type = "unsubcribed"; origin.send(reply); return true; elseif stanza.attr.type == nil then if stanza:get_child("x", "http://jabber.org/protocol/muc") then -- attempting to join a MUC -- tell them it's gone local reply = st.error_reply(stanza, "cancel", "gone"); origin.send(reply); return true; end -- they think we are subscribed and sent their current presence -- tell them we unsubscribe local reply = st.reply(stanza) reply.attr.type = "unsubcribe"; origin.send(reply); return true; end -- fall trough to default error end);
