From 4b747c2c782145cb24b5062b5101d936f8112e79 Mon Sep 17 00:00:00 2001 From: Holger Weiss Date: Tue, 10 Jul 2018 01:00:06 +0200 Subject: [PATCH] mod_muc: Increase 'max_user_conferences' default Let up to 100 clients of a given account join MUC rooms by default. The old default value can be too small, e.g., when users join many (private) rooms with multiple devices. --- src/mod_muc.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mod_muc.erl b/src/mod_muc.erl index 8a7fd1664..bdf925168 100644 --- a/src/mod_muc.erl +++ b/src/mod_muc.erl @@ -1002,7 +1002,7 @@ mod_options(Host) -> {max_room_id, infinity}, {max_room_name, infinity}, {max_rooms_discoitems, 100}, - {max_user_conferences, 10}, + {max_user_conferences, 100}, {max_users, 200}, {max_users_admin_threshold, 5}, {max_users_presence, 1000},