🐛(backend) enable SSL when sending email

Email settings were wrongly configured. It leed to
unsent email and timeout response from the backend
server. This commit fixes the issue by enabling SSL
when sending email.
This commit is contained in:
Anthony LC
2024-08-13 14:24:50 +02:00
committed by Anthony LC
parent af7e480d52
commit 6481ce311d
2 changed files with 2 additions and 0 deletions

View File

@@ -18,6 +18,7 @@ and this project adheres to
- 🐛(y-webrtc) fix prob connection #147
- ⚡️(frontend) improve select share stability #159
- 🐛(backend) enable SSL when sending email #165
## Changed

View File

@@ -278,6 +278,7 @@ class Base(Configuration):
EMAIL_HOST_PASSWORD = values.Value(None)
EMAIL_PORT = values.PositiveIntegerValue(None)
EMAIL_USE_TLS = values.BooleanValue(False)
EMAIL_USE_SSL = values.BooleanValue(False)
EMAIL_FROM = values.Value("from@example.com")
AUTH_USER_MODEL = "core.User"