README 751 B

12345678910111213141516171819202122232425
  1. The RegisterThrottle plugin throttles registration by IP address
  2. Installation
  3. ============
  4. This plugin is enabled by default on public instances, otherwise it can be
  5. enabled by adding "addPlugin('RegisterThrottle');" to the bottom of your
  6. config.php
  7. Settings
  8. ========
  9. regLimits: Array of time spans in seconds to limits. Default is 3 registrations per hour, 5 per day, 10 per week.
  10. silenced: Disallow registration if a silenced user has registered from this IP address
  11. Example
  12. =======
  13. addPlugin('RegisterThrottle', array(
  14. 'regLimits' => array(
  15. 604800 => 10, // per week
  16. 86400 => 5, // per day
  17. 3600 => 3 // per hour
  18. ),
  19. 'silenced' => true
  20. ));