ejabberd - Comments for "max_users attiribute does not work" https://www.ejabberd.im/node/2939 en This works. https://www.ejabberd.im/node/2939#comment-52153 <p>This works. Thanks!</p> <p>Большое человеческое спасибо! )</p> Fri, 11 Apr 2008 15:56:13 +0000 Eldar comment 52153 at https://www.ejabberd.im Try setting default room options. https://www.ejabberd.im/node/2939#comment-52103 <p>You need to differentiate:</p> <ul> <li>The option max_users for MUC service is by default 200. </li><li>The option max_users for a newly created room is by default 200, too. </li></ul> <p>Let's imagine that you want the MUC service to allow as much as 1000 users, and you also want new rooms to allow by default 500 max.<br /> Try this configuration:</p> <pre> {modules, [ {mod_muc, [ {max_users, 1000}, {default_room_options, [ {max_users, 500} ]}, {access, muc}, {access_create, muc}, {access_persistent, muc}, {access_admin, muc_admin}, {history_size, 1} ]}, ... ]}.</pre><p> The owner of a room can modify the max_users of that room using a Jabber client, so instead of 500 he can put: 5, 10, 20, 30, 50, 100, 200, 500, 1000.<br /> But he can't put more than 1000 because you put that limit in mod_muc.</p> Sat, 05 Apr 2008 10:47:20 +0000 mfoss comment 52103 at https://www.ejabberd.im