From 21a67afc27a9d8ea15fa0b0a74e18ca456d08ec6 Mon Sep 17 00:00:00 2001 From: Arne Schauf Date: Wed, 30 Apr 2025 17:03:33 +0200 Subject: [PATCH] "Update email settings to use SSL on port 465 Switched EMAIL_PORT to 465 and enabled SSL while disabling TLS for secure email transmission. This aligns with updated server requirements for email configuration." --- feo_homepage/settings/prod.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/feo_homepage/settings/prod.py b/feo_homepage/settings/prod.py index 024c082..cd9a259 100644 --- a/feo_homepage/settings/prod.py +++ b/feo_homepage/settings/prod.py @@ -18,10 +18,10 @@ EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend' EMAIL_HOST = 'mail.asw.io' EMAIL_HOST_PASSWORD = '409ce4f17e2447e1b0a5879e55d6c04a' EMAIL_HOST_USER = 'service@feo.gmbh' -EMAIL_PORT = 993 +EMAIL_PORT = 465 EMAIL_SUBJECT_PREFIX = '[FEO GmbH] ' -EMAIL_USE_TLS = True -EMAIL_USE_SSL = False +EMAIL_USE_TLS = False +EMAIL_USE_SSL = True try: from .local import *