gnu-social/plugins/RequireValidatedEmail
Siebrand Mazeland 09523a19d7 Localisation updates from http://translatewiki.net. 2011-04-03 15:35:52 +02:00
..
locale Localisation updates from http://translatewiki.net. 2011-04-03 15:35:52 +02:00
README Add config option for RequireValidatedEmail plugin to skip the check for folks with a trusted OpenID association. 2010-05-19 15:45:46 -07:00
RequireValidatedEmailPlugin.php allow access to confirm first for not-logged-in users 2011-02-25 12:56:21 -08:00
confirmfirstemail.php Fix gettext domain for messages in plugins "_()" to "_m()". 2011-03-30 22:31:23 +02:00
registerbyemail.php Let users who aren't allowed to login confirm their email separately 2011-02-25 08:01:41 -08:00

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