Software /
code /
prosody-modules
File
mod_unsubscriber/mod_unsubscriber.lua @ 5483:f9cecbd03e11
mod_invites_adhoc: Fall back to generic allow_user_invites for role-less users
Fixes #1752
Backport of Prosody rev dc0c20753d6c
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Thu, 18 May 2023 18:15:50 +0200 |
parent | 5168:e00dc913d965 |
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 -- 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);