Software /
code /
prosody-modules
File
mod_muc_defaults/README.markdown @ 5309:09656e2b4927
mod_client_management: Improve table output
Requires 1f89a2a9f532 and 1023c3faffac from Prosody.
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Thu, 06 Apr 2023 15:22:10 +0100 |
parent | 3999:22784f001b7f |
child | 5563:a1f8cc591b66 |
line wrap: on
line source
# mod_muc_defaults Creates MUCs with default configuration settings upon Prosody startup. ## Configuration Under your MUC component, add a `muc_defaults` option with the relevant settings. ``` Component "conference.example.org" "muc" modules_enabled = { "muc_defaults"; } muc_defaults = { { 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 } } }; ```