Mercurial > prosody-modules
view mod_muc_mention_notifications/README.markdown @ 5210:898575a0c6f3
mod_http_oauth2: Switch to '303 See Other' redirects
This is the recommendation by draft-ietf-oauth-v2-1-07 section 7.5.2. It is
the only redirect code that guarantees the user agent will use a GET request,
rather than re-submitting a POST request to the new URL.
The latter would be bad for us, as we are encoding auth tokens in the form
data.
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Mon, 06 Mar 2023 10:37:43 +0000 |
parents | 149ec3abf09e |
children |
line wrap: on
line source
# Configuring This module lets Prosody notify users when they're mentioned in a MUC, even if they're not currently present in it. Users need to be explicitly mentioned via XEP-0372 references. In anonymous and semi-anonymous rooms, the mentioned user needs to have their nickname registered in the MUC so that Prosody can get the real JID from the referenced nickname. NOTE: this module is not compatible with mod_block_strangers because the latter will block the notification messages from the MUC (since they're not "groupchat" messages). ## Enabling ``` {.lua} Component "rooms.example.net" "muc" modules_enabled = { "muc_mention_notifications"; } ``` ## Settings |Name |Description |Default | |-----|------------|--------| |muc_mmn_notify_unaffiliated_users| Notify mentioned users even if they are not members of the room they were mentioned in | false |