From 208728117943814e4734ba7ed001be02f72a1d71 Mon Sep 17 00:00:00 2001 From: Fernandinand Date: Wed, 12 Nov 2025 16:35:59 +0000 Subject: [PATCH] Update SMTP configuration instructions Added note about disabling TLS for SMTP servers. --- src/server/troubleshoot/index.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/server/troubleshoot/index.md b/src/server/troubleshoot/index.md index 50dca7f6..898c19e8 100644 --- a/src/server/troubleshoot/index.md +++ b/src/server/troubleshoot/index.md @@ -42,6 +42,9 @@ In some deployments, there may be SMTP servers that do not support authenticatio If your SMTP server does not support TLS or SSL, you can disable encryption by setting `MAIL_USE_TLS` and `MAIL_USE_SSL` to `false`. However, it is recommended to use authentication and TLS encryption. +> [!NOTE] +> If your SMTP server does not support TLS, you must set `MAIL_USE_TLS` to `false` (`true`by default) + Server is sending emails with a celery worker. If you are not receiving emails, check if celery worker is running. Check logs for sending emails in the `celery-worker` container: ```shell $ docker logs celery-worker