Software /
code /
prosody-modules
File
mod_muc_defaults/README.md @ 6066:91590d92b919
mod_report_forward: Add default fallback to domain JID when sending reports
No harm in trying...
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Tue, 26 Nov 2024 12:12:59 +0000 (3 months ago) |
parent | 6003:fe081789f7b5 |
line wrap: on
line source
# mod_muc_defaults Creates MUCs with default configuration settings upon Prosody startup. ## Configuration Under your MUC component, add a `default_mucs` option with the relevant settings. ``` Component "conference.example.org" "muc" modules_enabled = { "muc_defaults"; } default_mucs = { { jid_node = "trollbox", affiliations = { admin = { "admin@example.org", "superuser@example.org" }, owner = { "owner@example.org" }, visitors = { "visitor@example.org" } }, config = { name = "General Chat", description = "Public chatroom with no particular topic", allow_member_invites = false, change_subject = false, history_length = 40, lang = "en", logging = true, members_only = false, moderated = false, persistent = true, public = true, public_jids = true } } }; ```