diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/muc/mod_muc.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/plugins/muc/mod_muc.lua b/plugins/muc/mod_muc.lua index adbfb64c..7be8c2d3 100644 --- a/plugins/muc/mod_muc.lua +++ b/plugins/muc/mod_muc.lua @@ -283,6 +283,18 @@ module:hook("host-disco-items", function(event) end end); +module:hook("muc-room-pre-create", function (event) + local room = event.room; + room:set_public(module:get_option_boolean("muc_rooom_default_public", room:get_public())); + room:set_persistent(module:get_option_boolean("muc_rooom_default_persistent", room:get_persistent())); + room:set_members_only(module:get_option_boolean("muc_rooom_default_members_only", room:get_members_only())); + room:set_moderated(module:get_option_boolean("muc_rooom_default_moderated", room:get_moderated())); + room:set_whois(module:get_option_boolean("muc_rooom_default_public_jids", room:get_whois() == "anyone") and "anyone" or "moderators"); + room:set_changesubject(module:get_option_boolean("muc_rooom_default_change_subject", room:get_changesubject())); + room:set_historylength(module:get_option_number("muc_room_default_history_length", room:get_historylength())); + room:set_language(module:get_option_string("muc_room_default_language")); +end, 1); + module:hook("muc-room-pre-create", function(event) local origin, stanza = event.origin, event.stanza; if not track_room(event.room) then |