Hello,
I deployed tiledesk using docker version on my local server and configured the email settings in the docker file, but when try the password reset function, it does not work. I receive error
Error sending email {"error":{"code":"ESOCKET","command":"CONN","function":"ssl3_get_record","library":"SSL routines","reason":"wrong version number"}
Please help
Can you paste here your email configuration? Please mask your private data.
1 Like
Thanks for your reply @andrealeo … here is the email configurations
- EMAIL_ENABLED = true
- EMAIL_HOST = smtp.myhost.com
- EMAIL_USERNAME = noreply@myhost.com
- EMAIL_SECURE = true
- EMAIL_PORT = 587
- EMAIL_PASSWORD = mypass
ok we are checking with your conf
Please change from:
EMAIL_PORT = 587
to
EMAIL_PORT = 465
We fixed the issue ESOCKET error with EMAIL_SECURE=false with the new tiledesk-server: 2.3.36.
We just released a new version of the Docker Compose installation with that tiledesk-server version.
When you try with the new version please delete the old docker-compose.yml file
Thank you for the feedback
1 Like
Thanks @andrealeo ! It worked like charm