Manual:RemoveInvalidEmails.php/ja

MediaWiki バージョン:
1.25
Category:MediaWiki code/ja#RemoveInvalidEmails.php

詳細

removeInvalidEmails.phpメンテナンス スクリプトです。 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.

オプション/引数

オプション説明必須かどうか
--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. 省略可能

使用法

php maintenance/run.php removeInvalidEmails
Terminal
MediaWiki バージョン 1.39.12 以前では、メンテナンス スクリプトを php maintenance/run.php scriptName ではなく php maintenance/scriptName.php を使用して実行する必要があります。

関連項目

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