diff options
author | Brion Vibber <brion@pobox.com> | 2010-05-19 15:12:39 -0700 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-05-19 15:45:46 -0700 |
commit | 223795a2e430544e9702b1a6a5680fa4b8dfbb76 (patch) | |
tree | ce7f0b0a27996c82e0b2282dc79f3aa3b84d9c57 /plugins/RequireValidatedEmail/README | |
parent | 74a89b1fc37067d91d31bd66922053361eb4e616 (diff) |
Add config option for RequireValidatedEmail plugin to skip the check for folks with a trusted OpenID association.
Also added an event that other plugins or local config can use to override the checks.
Diffstat (limited to 'plugins/RequireValidatedEmail/README')
-rw-r--r-- | plugins/RequireValidatedEmail/README | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/plugins/RequireValidatedEmail/README b/plugins/RequireValidatedEmail/README index 46ee24d5f..84b1485b2 100644 --- a/plugins/RequireValidatedEmail/README +++ b/plugins/RequireValidatedEmail/README @@ -12,6 +12,20 @@ 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 |