Manual:RemoveInvalidEmails.php

From mediawiki.org
MediaWiki version:
1.25

Details

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

Option Description Required?
--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. Optional

Usage

php maintenance/removeInvalidEmails.php
Terminal

See also