Email Verification
==================

By default, Satchmo doesn't ask users to verify their email addresses. If you'd
like to, you can configure Satchmo to use django-registration.

1. Download and extract `django-registration`_. Make sure that the registration
   folder is on your pythonpath.

2. Edit local_settings.py:

    - Set ACCOUNT_ACTIVATION_DAYS to an integer value. This setting determines
      how long it takes for an activation code to expire.

3. Edit settings.py:

    - Add 'registration' to INSTALLED_APPS.
    
4. Run "python manage.py syncdb".

5. In Site Administration -> Site Settings:
    
    - Account Verification -> Email
    - Days to verify Account -> Your integer value here

.. _django-registration: https://bitbucket.org/hynekcer/django-registration/

