From 4cd9a3ba3f941978377affbb5b35652c56fbbc7a Mon Sep 17 00:00:00 2001 From: Bakery Admin Date: Mon, 26 Jan 2026 07:13:33 +0100 Subject: [PATCH] Fix some issues 6 --- infrastructure/environments/common/configs/configmap.yaml | 2 +- services/notification/app/api/public_contact.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/infrastructure/environments/common/configs/configmap.yaml b/infrastructure/environments/common/configs/configmap.yaml index 1ac25e0e..2716da46 100644 --- a/infrastructure/environments/common/configs/configmap.yaml +++ b/infrastructure/environments/common/configs/configmap.yaml @@ -176,7 +176,7 @@ data: # ================================================================ # EMAIL CONFIGURATION # ================================================================ - SMTP_HOST: "mailu-postfix.bakery-ia.svc.cluster.local" + SMTP_HOST: "mailu-front.bakery-ia.svc.cluster.local" SMTP_PORT: "587" SMTP_TLS: "true" SMTP_SSL: "false" diff --git a/services/notification/app/api/public_contact.py b/services/notification/app/api/public_contact.py index 7f67aea7..5b259e10 100644 --- a/services/notification/app/api/public_contact.py +++ b/services/notification/app/api/public_contact.py @@ -25,7 +25,7 @@ router = APIRouter(prefix="/api/v1/public", tags=["public-contact"]) # ================================================================ class ContactFormRequest(BaseModel): - """Contact form submission request""" + """Contact form submission request ttt""" name: str = Field(..., min_length=2, max_length=100) email: EmailStr phone: Optional[str] = Field(None, max_length=20)