Hi.
This is part of my ejabberd configuration file
{mod_muc,
[
{max_users, 500},
{access, muc},
{access_create, muc},
{access_persistent, muc},
{access_admin, muc_admin},
{history_size, 1}
]},
max_users attiribute does not work. By default it is 200.
In configuration file i put 500. But i can't connect more than 200 users.
Where can be the problem?
Try setting default room options.
You need to differentiate:
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.
Try this configuration:
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.
But he can't put more than 1000 because you put that limit in mod_muc.
This works.
This works. Thanks!
Большое человеческое спасибо! )