Alexei Sorokin 52d67b0f44 Avoid ordering just by a timestamp 4 سال پیش
..
actions fbcca62ae1 listGet was not meant for that really 8 سال پیش
classes 52d67b0f44 Avoid ordering just by a timestamp 4 سال پیش
locale a9c365a5eb [VersionBump] 2.0.0alpha0 4 سال پیش
README a614205663 Add plugin READMEs 8 سال پیش
RegisterThrottlePlugin.php 52d67b0f44 Avoid ordering just by a timestamp 4 سال پیش

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
));