Mercurial > prosody-modules
view mod_muc_local_only/README.markdown @ 5367:93d445b26063
mod_http_oauth2: Validate redirect URI depending on application type
Per https://openid.net/specs/openid-connect-registration-1_0.html
require that web applications use https:// and native applications must
use either http://localhost or a custom (non-https) URI.
Previous requirement that hostname matches that of client_uri is kept
for web applications.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 25 Apr 2023 19:49:41 +0200 |
parents | 221b6bee26e2 |
children |
line wrap: on
line source
# Introduction This module allows you to make one or more MUCs as accessible to local users only. # Details Local users (anyone on the same server as the MUC) are granted automatic membership when they first join the room. Users from other servers are denied access (even if the room is otherwise configured to be open). # Configuring ## Enabling ``` {.lua} Component "rooms.example.net" "muc" modules_enabled = { "muc_local_only"; } ``` ## Settings Specify a list of MUCs in your config like so: ``` muc_local_only = { "my-local-chat@conference.example.com" } ``` # Compatibility Requires Prosody 0.11.0 or later. # Future It would be good to add a room configuration option.