1 This plugin disables posting for accounts that do not have a
2 validated email address.
6 addPlugin('RequireValidatedEmail');
8 If you don't want to apply the validationr equirement to existing
9 accounts, you can specify a cutoff date to grandfather in users
10 registered prior to that timestamp.
12 addPlugin('RequireValidatedEmail',
13 array('grandfatherCutoff' => 'Dec 7, 2009');
15 You can also exclude the validation checks from OpenID accounts
16 connected to a trusted provider, by providing a list of regular
17 expressions to match their provider URLs.
19 For example, to trust WikiHow and Wikipedia users:
21 addPlugin('RequireValidatedEmailPlugin', array(
22 'trustedOpenIDs' => array(
23 '!^http://\w+\.wikihow\.com/!',
24 '!^http://\w+\.wikipedia\.org/!',
29 * add a more visible indicator that validation is still outstanding
30 * test with XMPP, API posting