c18f26145c
For reference (raised by rozzin in IRC): * http://foldoc.org/module * http://foldoc.org/library * http://foldoc.org/plugin As noted by XRevan86, modules are not necessarily non-essential. As we will keep the modules directory in GS root [therefore, near to plugins/], it is evidenced the difference between both. This is a simple yet fundamental structural change. It doesn't change functionality but makes clearer the way we understand GNU social's internals. |
||
---|---|---|
.. | ||
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 ));