24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-18 22:15:20 +02:00

* src/ejabberd.cfg.example: Add registration_timeout (EJAB-653)

SVN Revision: 1355
This commit is contained in:
Badlop 2008-06-13 17:51:01 +00:00
parent 44e0a17d80
commit e22913d46f
2 changed files with 8 additions and 2 deletions

View File

@ -1,5 +1,7 @@
2008-06-13 Badlop <badlop@process-one.net>
* src/ejabberd.cfg.example: Add registration_timeout (EJAB-653)
* doc/guide.tex: Table of listener modules converted to
description. Table of modules overview simplified, and module
names link to their sections. Document

View File

@ -383,12 +383,16 @@
%% All users are allowed to use MUC service:
{access, muc, [{allow, all}]}.
%% Everybody can create pubsub nodes
{access, pubsub_createnode, [{allow, all}]}.
%% In-band registration allows registration of any possible username.
%% To disable in-band registration, replace 'allow' with 'deny'.
{access, register, [{allow, all}]}.
%% Everybody can create pubsub nodes
{access, pubsub_createnode, [{allow, all}]}.
%% By default frequency of account registrations from a the same IP
%% is limited to 1 account every 10 minutes. To disable put: infinity
%%{registration_timeout, 600}.
%%
%% Define specific Access rules in a virtual host.