django-user-accounts
django-user-accounts copied to clipboard
How to set the activate_url point to my server host instead of "example.com"
I have found the template file "email_confirmation_message.txt", but I do not know how to set the activate_url and account_tags. Thanks for viewing my problem.
Hello. Thank you for your question. Have you tried using the following in your settings.py? THEME_CONTACT_EMAIL = '[email protected]'
DUA gets this information from the Django Site
model in django.contrib.sites
. In a project started with Pinax this can be changed in the fixtures/sites.json
file. Once changed you can update using python manage.py loaddata sites
.
Thanks a lot!