]> granicus.if.org Git - ejabberd/commitdiff
* src/ejabberd.cfg.example: Add registration_timeout (EJAB-653)
authorBadlop <badlop@process-one.net>
Fri, 13 Jun 2008 17:51:01 +0000 (17:51 +0000)
committerBadlop <badlop@process-one.net>
Fri, 13 Jun 2008 17:51:01 +0000 (17:51 +0000)
SVN Revision: 1355

ChangeLog
src/ejabberd.cfg.example

index aebe9fd395976381357a8ff3d8cff0c5ccb79298..ed0aa15f9ae143aa63b18a86cf7a40625ce478eb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index 54ca36f5496325b16a8be0bd7f529d29ad8054e7..e1d63ed9ea5a716f420a10fa32e6cfe5238adba3 100644 (file)
 %% 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.