ejabberd: Make some limits configurable
This commit is contained in:
parent
2531dbb3ac
commit
164c79ef52
2 changed files with 16 additions and 4 deletions
|
@ -28,6 +28,15 @@
|
|||
# Number of seconds that ejabberd can cache external authentication
|
||||
# information. Disabled by default.
|
||||
#
|
||||
# $max_user_sessions:
|
||||
# Maximum number of sessions per user. Defaults to 1000.
|
||||
#
|
||||
# $max_user_conferences:
|
||||
# Maximum number of conferences per user. Defaults to 2000.
|
||||
#
|
||||
# $muc_max_users:
|
||||
# Maximum number of users per conference. Defaults to 1000.
|
||||
#
|
||||
# $muclog_datadir:
|
||||
# Path where to store chatroom logs. Disabled by default.
|
||||
#
|
||||
|
@ -76,6 +85,9 @@ class ejabberd(
|
|||
$auth='internal',
|
||||
$extauth=undef,
|
||||
$extauth_cache=false,
|
||||
$max_user_sessions='1000',
|
||||
$max_user_conferences='2000',
|
||||
$muc_max_users='1000',
|
||||
$muclog_datadir=undef,
|
||||
$muclog_default=true,
|
||||
$muclog_format='plaintext',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue