gnu-social/plugins/RegisterThrottle
Alexei Sorokin 52d67b0f44 Avoid ordering just by a timestamp
Try to also employ an id when possible.
Involves reworking some of the indices.
2020-09-15 16:59:27 +03:00
..
actions listGet was not meant for that really 2016-02-13 01:19:47 +01:00
classes Avoid ordering just by a timestamp 2020-09-15 16:59:27 +03:00
locale [VersionBump] 2.0.0alpha0 2020-08-04 05:31:44 +01:00
README Add plugin READMEs 2016-02-08 17:48:37 +00:00
RegisterThrottlePlugin.php Avoid ordering just by a timestamp 2020-09-15 16:59:27 +03: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
));