Access: $wgAutoConfirmAge
Number of seconds an account is required to age before it's given the implicit 'autoconfirmed' group membership.
Introduced in version:1.6.0 (r12207)
Removed in version:still in use
Allowed values:(positive integer)
Default value:0

Details

Sets the number of seconds an account is required to age before it's given the implicit 'autoconfirmed' group membership. Note that the user must pass $wgAutoConfirmAge AND $wgAutoConfirmCount to become a member of that group.

This can be used to limit privileges of new accounts. Accounts created by earlier versions of the software may not have a recorded creation date, and will always be considered to pass the age test.

When left at 0 (the default), all registered accounts will pass.

Some other useful settings:

$wgAutoConfirmAge = 600;     // <translate nowrap><!--T:10--> ten minutes</translate>
$wgAutoConfirmAge = 3600;    // <translate nowrap><!--T:11--> one hour</translate>
$wgAutoConfirmAge = 43200;   // <translate nowrap><!--T:12--> half a day</translate>
$wgAutoConfirmAge = 86400;   // <translate nowrap><!--T:13--> one day</translate>
$wgAutoConfirmAge = 259200;  // <translate nowrap><!--T:14--> three days</translate>
$wgAutoConfirmAge = 86400*3; // <translate nowrap><!--T:15--> three days</translate>

See also

  • Manual:$wgAutopromote
This article is issued from Mediawiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.