Manual:$wgTempAccountCreationThrottle
アクセス権: $wgTempAccountCreationThrottle | |
---|---|
Number of temporary accounts each IP address may create per specified period(s). |
|
導入されたバージョン: | 1.42.0 (Gerrit change 1008111; git #08fef956) |
除去されたバージョン: | 使用中 |
許容される値: | (配列) |
既定値: | 下記参照 |
その他の設定: アルファベット順 | 機能順 |
詳細
Number of temporary accounts each IP address may create per specified period(s).
既定値
/**
* Number of temporary accounts each IP address may create per specified period(s).
*
* @par Example
* @code
* $wgTempAccountCreationThrottle = [
* // no more than 100 per month
* [
* 'count' => 100,
* 'seconds' => 30*86400,
* ],
* // no more than 6 per day
* [
* 'count' => 6,
* 'seconds' => 86400,
* ],
* ];
* @endcode
*
* @see self::AccountCreationThrottle for the regular account version of this throttle.
* @warning Requires $wgMainCacheType to be enabled
*
* @since 1.42
*/
$wgTempAccountCreationThrottle = [ [
'count' => 6,
'seconds' => 86400,
] ];