46f98b3142
The core plugins whose version was attached to GS's were reseted to 2.0.0. 2.0.0 was chosen as reset version for plugins because it is higher than the one that was set by inheriting GS version. Furthermore, it's a major change from prior plugin versioning system thus it also makes semantic sense. Justification for version bump: == GS == 9a4ab31f26 1.19.0 |
||
---|---|---|
.. | ||
actions | ||
classes | ||
locale | ||
README | ||
RegisterThrottlePlugin.php |
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 ));