]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - plugins/RequireValidatedEmail/README
Handle exceptions when salmon slapping
[quix0rs-gnu-social.git] / plugins / RequireValidatedEmail / README
index 46ee24d5fe1e496baef4ebe96b9dd7155e4431ee..326e19c28a6266dd813f4040fe57e53cef3bdb10 100644 (file)
@@ -12,8 +12,19 @@ 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
-