Erweiterung:UserThrottle

This page is a translated version of the page Extension:UserThrottle and the translation is 46% complete.
MediaWiki-Erweiterungen
UserThrottle
Freigabestatus: ohne Wartung
Einbindung access (invalid type)
Beschreibung Throttle on user account registrations
Autor(en) Brion Vibber (Brion VIBBERDiskussion)
MediaWiki
Lizenz GNU General Public License 2.0 oder neuer
Herunterladen
Quarterly downloads 0
Übersetze die UserThrottle-Erweiterung, wenn sie auf translatewiki.net verfügbar ist

Was diese Erweiterung macht

Monitors global frequency of user account registrations and throttles apparent flood attacks, regardless of origin. Not always suitable for use on large public sites, but it's been used during occasional particular vandal attacks on Wikimedia in the past.

Installation

Um diese Erweiterung zu installieren, füge folgendes zu LocalSettings.php hinzu:

require_once("$IP/extensions/UserThrottle/UserThrottle.php");

Konfiguration

You can adjust the throttle settings in $wgGlobalAccountCreationThrottle:

$wgGlobalAccountCreationThrottle = array(
    'min_interval' => 5, // Hard minimum time between creations
    'soft_time' => 300, // Timeout for rolling count
    'soft_limit' => 10, // 10 Registrierungen in fünf Minuten
);

If you legitimately have signup floods, you may wish to adjust these.