aboutsummaryrefslogtreecommitdiff
path: root/src/ejabberd.cfg.example
diff options
context:
space:
mode:
authorBadlop <badlop@process-one.net>2008-04-29 16:44:12 +0000
committerBadlop <badlop@process-one.net>2008-04-29 16:44:12 +0000
commite5879f4349603bc4e131f6eb2e38effb62153710 (patch)
tree6de379d62ed9353aafb619536fd81c2893876503 /src/ejabberd.cfg.example
parent* doc/guide.tex: Document the option max_s2s_connections (diff)
* src/ejabberd.cfg.example: Small improvements in explanations
* doc/guide.tex: Document MUC room options (EJAB-619) SVN Revision: 1310
Diffstat (limited to 'src/ejabberd.cfg.example')
-rw-r--r--src/ejabberd.cfg.example10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/ejabberd.cfg.example b/src/ejabberd.cfg.example
index 575ba386b..54ca36f54 100644
--- a/src/ejabberd.cfg.example
+++ b/src/ejabberd.cfg.example
@@ -354,7 +354,7 @@
%%% ============
%%% ACCESS RULES
-%% Define the maximum number of time a single user is allowed to connect:
+%% Maximum number of simultaneous sessions allowed for a single user:
{access, max_user_sessions, [{10, all}]}.
%% This rule allows access only for local users:
@@ -364,11 +364,11 @@
{access, c2s, [{deny, blocked},
{allow, all}]}.
-%% For all users except admins used "normal" shaper
+%% For C2S connections, all users except admins use "normal" shaper
{access, c2s_shaper, [{none, admin},
{normal, all}]}.
-%% For all S2S connections used "fast" shaper
+%% All S2S connections use "fast" shaper
{access, s2s_shaper, [{fast, all}]}.
%% Only admins can send announcement messages:
@@ -383,7 +383,7 @@
%% All users are allowed to use MUC service:
{access, muc, [{allow, all}]}.
-%% Every username can be registered via in-band registration:
+%% In-band registration allows registration of any possible username.
%% To disable in-band registration, replace 'allow' with 'deny'.
{access, register, [{allow, all}]}.
@@ -410,7 +410,7 @@
{language, "en"}.
%%
-%% Set a different language in a virtual host.
+%% Set a different default language in a virtual host.
%%
%%{host_config, "localhost",
%% [{language, "ru"}]