Software /
code /
prosody-modules
Changeset
5617:67f7df9892bb
mod_muc_block_pm: Advertise that Moderators are allowed to send PMs
But there appears to be no way in XEP-0045 to advertise that Anyone can
send PMs *to* Moderators.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Wed, 19 Jul 2023 17:01:40 +0200 |
parents | 5616:e469642e6a6c |
children | 5618:06fad22672e1 |
files | mod_muc_block_pm/mod_muc_block_pm.lua |
diffstat | 1 files changed, 4 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/mod_muc_block_pm/mod_muc_block_pm.lua Wed Jul 19 16:59:16 2023 +0200 +++ b/mod_muc_block_pm/mod_muc_block_pm.lua Wed Jul 19 17:01:40 2023 +0200 @@ -1,5 +1,9 @@ local st = require "util.stanza"; +module:hook("muc-disco#info", function(event) + table.insert(event.form, { name = "muc#roomconfig_allowpm"; value = "moderators" }); +end); + module:hook("muc-private-message", function(event) local stanza, room = event.stanza, event.room; local from_occupant = room:get_occupant_by_nick(stanza.attr.from);