README.txt 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  1. EMAIL REQUIRED:
  2. ========================
  3. This module is for site owners that do not want to require that users
  4. validate their email address when creating an account - because we all
  5. know that's extremely annoying for users to do. But, we still want to
  6. try to minimize spam as much as possible.
  7. With this module enabled, you should not be requiring email verification
  8. upon user registration. This module allows you to set any number of
  9. page paths that will require the user to verify their email address in
  10. order to access. Some examples could be node/add/* or messages/new, etc.
  11. If the user has not yet verfied their email address, when they navigate
  12. to those pages, they will be redirected to a page where they can request
  13. a verification link.
  14. Clicking that sends a tokenized link to the user's email address. Once
  15. clicked, the user now has a validated email address. They will never have
  16. to do this again, unless they change their email address.
  17. *Be aware* that anonymous users will never get redirected because we
  18. can't verify their email address. The purpose of this module is to limit
  19. features that authenticated users can use until they verify their email
  20. address. Act accordingly!
  21. ----
  22. To get set up, install the module and configure it at:
  23. admin/config/people/email-required
  24. There are permissions available that can allow you to exclude certain
  25. roles from having to verify.
  26. See email_recurring.api.php for API functions.