From 7fe8031b378fbf4028a9d44754d2dedc8267fca5 Mon Sep 17 00:00:00 2001 From: jzunigax2 <125698953+jzunigax2@users.noreply.github.com> Date: Thu, 9 Jul 2026 15:06:20 -0600 Subject: [PATCH] fix: add SMTPS port configuration to service.yaml - Introduced a new service port for SMTPS in the service.yaml template. - Updated the service specification to include the SMTPS target port and protocol. --- deploy/charts/stalwart/templates/service.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/deploy/charts/stalwart/templates/service.yaml b/deploy/charts/stalwart/templates/service.yaml index cf72fc4..742134f 100644 --- a/deploy/charts/stalwart/templates/service.yaml +++ b/deploy/charts/stalwart/templates/service.yaml @@ -14,6 +14,10 @@ spec: port: {{ .Values.service.port }} targetPort: management protocol: TCP + - name: smtps + port: {{ .Values.mailService.ports.smtps.port }} + targetPort: smtps + protocol: TCP --- apiVersion: v1 kind: Service