Manual:RemoveInvalidEmails.php/fr

Version de MediaWiki :
1.25
Category:MediaWiki code/fr#RemoveInvalidEmails.php

Détails

removeInvalidEmails.php is a maintenance script. Emails are validated before users can add them, but this was not always the case so older users may have invalid ones. This script can be used to remove emails that are invalid from the user_email column of the user table.

The script is checking all users, who have provided an email address, which has not yet been authenticated. It validates an email address using an HTML5 specification found at: http://www.whatwg.org/html/states-of-the-type-attribute.html#valid-e-mail-address

The implementation is not 100% identical to, but comes close to RFC 2822. The script can be used to remove all invalid email addresses.

Options / Arguments

OptionDescriptionRequired?
--commit Whether to actually update the database. Defaults to false so that the script, if --commit is not provided, is run in dry-run mode. optionnel

Utilisation

php maintenance/run.php removeInvalidEmails
Terminal
Dans la version MediaWiki 1.39.12 et antérieure, vous devez invoquer des scripts de maintenance à l'aide de php maintenance/scriptName.php au lieu de php maintenance/run.php scriptName.

Voir aussi

Category:Maintenance scripts/fr#removeInvalidEmails.php Category:User maintenance scripts/fr
Category:Maintenance scripts/fr Category:MediaWiki code/fr Category:User maintenance scripts/fr