3,958
edits
Juho Kunsola (talk | contribs) (more precisely on the 2 different types of archiving that the folk at archive.org have been doing) |
Juho Kunsola (talk | contribs) (reorg, remove headlines that are no longer very relevant) |
||
Line 82: | Line 82: | ||
# Non-autoconfirmed users have to pass the captcha always | # Non-autoconfirmed users have to pass the captcha always | ||
# Autoconfirmed users do not have to pass the CAPTCHA (See [[#Autopromotion settings explained for humans]] to figure out when you will be autoconfirmed) | # Autoconfirmed users do not have to pass the CAPTCHA (See [[#Autopromotion settings explained for humans]] to figure out when you will be autoconfirmed) | ||
---- | ---- | ||
Line 166: | Line 138: | ||
); | ); | ||
</code> | </code> | ||
== Autopromotion to skip CAPTCHA permanently == | |||
This is no longer very relevant as users created by Juho will be autoconfirmed. This may be useful for some cases, but due to the spammers passing reCAPTCHA accounts are [[Special:RequestAccount|upon request]] | |||
{{Q|Make 7 edits, and when your account has existed for at least 1 hour and have clicked the "Verify my email"-link sent to verify possession of a valid email account and you can skip captcha permanently.|Juboxi|settings of the autopromotion}} | |||
'''Autopromotion settings for the server''' | |||
<pre> | |||
$wgAutopromote = array( | |||
'autoconfirmed' => array( | |||
'&', | |||
APCOND_EMAILCONFIRMED, | |||
array( APCOND_EDITCOUNT, 7 ), | |||
array( APCOND_AGE, 60*60 ), | |||
), | |||
); | |||
</pre> | |||
'''Autopromotion settings explained for humans''' | |||
In human readable terms: | |||
# Users will be automatically promoted to autoconfirmed when '''all three''' conditions are met | |||
## They have '''confirmed their email address''' by clicking on the confirmation link in the email sent by the system when registering an account | |||
## They have made '''7 edits''' | |||
## Their account has existed for '''at least one hour''' | |||
These values may need to be adjusted in the future. The goal of these settings is to | |||
# Avoid spamming, vandals etc. | |||
# To give genuine contributors ability to edit without needing to solve CAPTCHAs reasonably quickly | |||
---- | |||
== Magic words == | == Magic words == |