Mikael Nordfeldth 6ec72b2978 Move mail_confirm_address out of mail.php il y a 8 ans
..
actions cfaaf3c13c PasswordsettingsAction aligned with FormAction il y a 9 ans
locale d7fd6bac72 Snapshot of the Transifex translation project - October 2015 il y a 9 ans
scripts 6ec72b2978 Move mail_confirm_address out of mail.php il y a 8 ans
README 158140a118 Add translator documentation. il y a 13 ans
RequireValidatedEmailPlugin.php 2c5cba28b6 Change status.net/wiki URLs to git.gnu.io il y a 8 ans

README

This plugin disables posting for accounts that do not have a
validated email address.

Example:

addPlugin('RequireValidatedEmail');

If you don't want to apply the validationr equirement to existing
accounts, you can specify a cutoff date to grandfather in users
registered prior to that timestamp.

addPlugin('RequireValidatedEmail',
array('grandfatherCutoff' => 'Dec 7, 2009');

You can also exclude the validation checks from OpenID accounts
connected to a trusted provider, by providing a list of regular
expressions to match their provider URLs.

For example, to trust WikiHow and Wikipedia users:

addPlugin('RequireValidatedEmailPlugin', array(
'trustedOpenIDs' => array(
'!^http://\w+\.wikihow\.com/!',
'!^http://\w+\.wikipedia\.org/!',
),
));

Todo:
* add a more visible indicator that validation is still outstanding
* test with XMPP, API posting