From e1594493a72009334af7c5e184afe3844ba64c3d Mon Sep 17 00:00:00 2001 From: Sabrina Demagny Date: Tue, 11 Feb 2025 10:58:40 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B(plugin)=20fix=20support=20email?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use a real email to contact support in case of actions required on the domain in collectivite.fr --- src/backend/plugins/organizations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/plugins/organizations.py b/src/backend/plugins/organizations.py index e3be3f6..a4fae76 100644 --- a/src/backend/plugins/organizations.py +++ b/src/backend/plugins/organizations.py @@ -249,7 +249,7 @@ class CommuneCreation(BaseOrganizationPlugin): logger.info("Organization %s name updated to %s", organization, name) zone_name = self.zone_name(name) - support = f"support@{zone_name}" + support = "support-regie@numerique.gouv.fr" MailDomain.objects.get_or_create(name=zone_name, support_email=support) # Compute and execute the rest of the process