Manual:$wgTempAccountNameAcquisitionThrottle

From mediawiki.org
Access: $wgTempAccountNameAcquisitionThrottle
Number of temporary accounts usernames each IP address may acquire per specified period(s).
Introduced in version:1.42.0 (Gerrit change 1015269; git #6efd008f)
Removed in version:still in use
Allowed values:(array)
Default value:See below

Details[edit]

Number of temporary accounts usernames each IP address may acquire per specified period(s). This should be set to a higher value than TempAccountCreationThrottle. On editing, we first attempt to acquire a temp username before proceeding with saving an edit and potentially creating a temp account if the edit save is successful. Some edits may fail (due to core or extensions denying an edit); this throttle ensures that there are limits to the number of temporary account names that can be acquired and stored in the database.

Default value[edit]

$wgTempAccountNameAcquisitionThrottle = [
	[
		'count' => 60,
		'seconds' => 86400,
	],
];