diff options
author | Badlop <badlop@process-one.net> | 2008-06-13 17:51:01 +0000 |
---|---|---|
committer | Badlop <badlop@process-one.net> | 2008-06-13 17:51:01 +0000 |
commit | e22913d46f46655a8783a182e29ab10d1f3cc3d4 (patch) | |
tree | c14f18735887b55eea1d1d69d924126f723c3a50 /src | |
parent | * doc/guide.tex: Title in HTML is shorter. Update several external URIs. (diff) |
* src/ejabberd.cfg.example: Add registration_timeout (EJAB-653)
SVN Revision: 1355
Diffstat (limited to 'src')
-rw-r--r-- | src/ejabberd.cfg.example | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/ejabberd.cfg.example b/src/ejabberd.cfg.example index 54ca36f5..e1d63ed9 100644 --- a/src/ejabberd.cfg.example +++ b/src/ejabberd.cfg.example @@ -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. |