diff options
author | Brion Vibber <brion@pobox.com> | 2010-05-21 13:15:08 -0700 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-05-21 13:15:08 -0700 |
commit | 6eae5d6a7e2265de4065b764c28cef3ee009bcda (patch) | |
tree | 05cc133095a73fb4e04ad921fbb8ae2a44ff7ba5 /plugins/RequireValidatedEmail/README | |
parent | afd81a540a556ef04bdc326a26268dc82b0dc5f6 (diff) | |
parent | 87b8a89aa7b96e63586bdd3b1afb9d43355fd48b (diff) |
Merge branch 'testing' into 0.9.x
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 |