I have a problem with the settings file I try to configure the sending of mail but it not works
I wrote :
EMAIL_HOST= 'mailhost.onera'
EMAIL_HOST_USER = 'patrice.kerviel@onera.fr'
EMAIL_HOST_PASSWORD = 'my-password'
EMAIL_PORT = 25
EMAIL_USE_TLS = True
and i have the error:
STARTTLS extension not supported by the server
if i change :
EMAIL_USE_TLS = False
I have the error : AUTH extension not supported by the server
if I change :
EMAIL_HOST_USER = None
EMAIL_HOST_PASSWORD = None
EMAIL_PORT = 25
EMAIL_USE_TLS = False
Now, I have no error but no email is sent
what is this problem ?