I have a Django app running on a server with uWSGI and nginx. In my `local_settings.py` file I have this:
############### # EMAIL SETUP # ############### EMAIL_HOST = 'smtp.privateemail.com' EMAIL_HOST_USER = 'supp...@mydomain.com' EMAIL_HOST_PASSWORD = 'MY EMAIL PASSWORD' EMAIL_PORT = 465 EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend' EMAIL_USE_TLS = True ######################## # OTHER EMAIL SETTINGS # ######################## ADMIN_EMAIL = "ad...@mydomain.com" SUPPORT_EMAIL = "supp...@mydomain.com" DEFAULT_FROM_EMAIL = ADMIN_EMAIL SERVER_EMAIL = ADMIN_EMAIL I run `python manage.py runserver` on my local machine in the Django project's virtual environment. I fill out the password reset form at `password_rest/` using the email `my.perso...@gmail.com` and submit it. I get this error. SMTPRecipientsRefused: {u'my.perso...@gmail.com': (553, '5.7.1 <ad...@mydomain.com>: Sender address rejected: not owned by user supp...@mydomain.com')} My website's email provider is Namecheap. Why do I get this error when testing on my local machine? What must I change/add to get rid of it? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to django-users@googlegroups.com. Visit this group at https://groups.google.com/group/django-users. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/c159b190-4604-4b2d-90d6-562f9b4950db%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.