Is there a way to have users register to my site without making them supply a valid email?
(so they can choose a user name and password at the registration screen)

I was only able to find a hack from 2004... ( http://drupal.org/node/14009 )

Thanks.

Comments

WorldFallz’s picture

Email verification is an option, so you can turn it off (admin/user/settings). Then, you could use a http://api.drupal.org/api/function/hook_form_alter on the user_register form to hide the email form field and generate your own nonsense email (ie username@noplace.net).

amirn’s picture

Thanks.

Now it's time for me to learn how to use hooks :)