gnu-social/plugins/RegisterThrottle
Mikael Nordfeldth b4dc060d75 Don't auto-silence other users by IP by default 2016-02-26 16:10:03 +01:00
..
actions listGet was not meant for that really 2016-02-13 01:19:47 +01:00
classes Cosmetic changes to RegisterThrottle 2014-03-07 21:03:38 +01:00
locale Snapshot of the Transifex translation project - October 2015 2015-10-04 18:23:01 +02:00
README Add plugin READMEs 2016-02-08 17:48:37 +00:00
RegisterThrottlePlugin.php Don't auto-silence other users by IP by default 2016-02-26 16:10:03 +01:00

README

The RegisterThrottle plugin throttles registration by IP address

Installation
============
This plugin is enabled by default on public instances, otherwise it can be
enabled by adding "addPlugin('RegisterThrottle');" to the bottom of your
config.php

Settings
========
regLimits: Array of time spans in seconds to limits. Default is 3 registrations per hour, 5 per day, 10 per week.
silenced: Disallow registration if a silenced user has registered from this IP address

Example
=======
addPlugin('RegisterThrottle', array(
    'regLimits' => array(
                        604800 => 10, // per week
                        86400 => 5,   // per day
                        3600 => 3     // per hour
                    ),
    'silenced' => true
));