Extension:UserThrottle

This page is a translated version of the page Extension:UserThrottle and the translation is 31% complete.
MediaWiki 拡張機能マニュアル
UserThrottle
リリースの状態: 保守されていない
実装 access (invalid type)
説明 Throttle on user account registrations
作者 Brion Vibber (Brion VIBBERトーク)
MediaWiki
ライセンス GNU 一般公衆利用許諾書 2.0 以降
ダウンロード
Quarterly downloads 0
translatewiki.net で翻訳を利用できる場合は、UserThrottle 拡張機能の翻訳にご協力ください

What this extension does

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.

インストール

To install this extension, add the following to LocalSettings.php :

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

設定

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, // 5分あたり10回の登録
);

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