I set the django email address as follows:
EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
EMAIL_HOST = 'mytdl.de'
EMAIL_PORT = 25
EMAIL_HOST_USER = 'me@mytdl.de'
EMAIL_HOST_PASSWORD = config('EMAIL_HOST_PASSWORD')
But sending email using django-allauth will result in the following error:
(535, b'5.7.8 Error: authentication failed: authentication failure')
Testing settings with
telnet mytdl.de 25
or Thunderbird, as the email client works fine.
2.7.0 Authentication successful
But Django / SMTP data is still saved. Django is also trying
AUTH CRAM-MD5
but not
AUTH LOGIN
any ideas?
source
share