From bac5416cacad0abc3f2b38ee6632764ed26e47b8 Mon Sep 17 00:00:00 2001 From: Arne Schauf Date: Wed, 30 Apr 2025 16:56:30 +0200 Subject: [PATCH] Update EMAIL_HOST_PASSWORD in production settings The EMAIL_HOST_PASSWORD was updated to a new value in the production configuration. This change ensures secure and up-to-date credentials are used for the email backend. No other settings were modified. --- feo_homepage/settings/prod.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/feo_homepage/settings/prod.py b/feo_homepage/settings/prod.py index 0170aef..024c082 100644 --- a/feo_homepage/settings/prod.py +++ b/feo_homepage/settings/prod.py @@ -16,7 +16,7 @@ SERVER_EMAIL = "server@feo.gmbh" EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend' EMAIL_HOST = 'mail.asw.io' -EMAIL_HOST_PASSWORD = 'e6166f289851034304ba7d2e2269bdd0' +EMAIL_HOST_PASSWORD = '409ce4f17e2447e1b0a5879e55d6c04a' EMAIL_HOST_USER = 'service@feo.gmbh' EMAIL_PORT = 993 EMAIL_SUBJECT_PREFIX = '[FEO GmbH] '