25
1
mirror of https://github.com/processone/ejabberd.git synced 2024-11-24 16:23:40 +01:00

* src/mod_muc/mod_muc_room.erl: Changed default max number of user

in a room to 200 (EJAB-248)

SVN Revision: 895
This commit is contained in:
Mickaël Rémond 2007-08-28 15:05:52 +00:00
parent 4221a50c80
commit 52c10089aa
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
2007-08-28 Mickael Remond <mremond@process-one.net>
* src/mod_muc/mod_muc_room.erl: Changed default max number of user
in a room to 200 (EJAB-248)
* src/mod_offline_odbc.erl: Implements quota for offline messages
in relational database (EJAB-314)
* src/odbc/odbc_queries.erl: Likewise

View File

@ -30,7 +30,7 @@
-include("ejabberd.hrl").
-include("jlib.hrl").
-define(MAX_USERS_DEFAULT, 100).
-define(MAX_USERS_DEFAULT, 200).
-define(MAX_USERS_DEFAULT_LIST, [5, 10, 20, 30, 50, 100, 200, 500, 1000, 2000, 5000]).
-define(SETS, gb_sets).