README.txt 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. Email Registration allows users to register and login with their e-mail address
  2. instead of using a separate username in addition to the e-mail address. It will
  3. automatically generate a username based on the e-mail address but that behavior
  4. can be overridden with a custom hook implementation in a site specific module.
  5. INSTALLATION
  6. ============
  7. Required step:
  8. 1. Enable the module as you normally would.
  9. Optional steps:
  10. 2. You will probably want to change the welcome e-mail
  11. (Administer -> User Management -> User Settings) and replace instances of
  12. the token !username with !mailto
  13. 3. This automatically generated username is still displayed name for posts,
  14. comments, etc. You can allow your users to change their username by
  15. going to: (Administer -> User Management -> Access Control) and granting
  16. the permission to "change own username"
  17. This privilege allows a user to change their username in "My Account".
  18. 4. If a user enters an invalid email or password they will see a message:
  19. "Sorry, unrecognized username or password. Have you forgotten your password?"
  20. That message is confusing because it mentions username when all other
  21. language on the page mentions entering their E-mail. This can be easily
  22. overridden in your settings.php file with an entry like this:
  23. $conf['locale_custom_strings_en'][''] = array(
  24. 'Sorry, unrecognized username or password. <a href="@password">Have you forgotten your password?</a>' => 'Sorry, unrecognized e-mail or password. <a href="@password">Have you forgotten your password?</a>',
  25. );
  26. BUGS, FEATURES, QUESTIONS
  27. =========================
  28. Post any bugs, features or questions to the issue queue:
  29. http://drupal.org/project/issues/email_registration