From e5c113857ff6965213cee7f95e3eabaa54f67f7a Mon Sep 17 00:00:00 2001 From: Ruben Hensen Date: Sun, 25 Jan 2026 18:11:36 +0100 Subject: [PATCH] Add autoconfig and autodiscover subdomains --- stalwart/templates/ingress.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/stalwart/templates/ingress.yaml b/stalwart/templates/ingress.yaml index 809e00d..5c76eb8 100644 --- a/stalwart/templates/ingress.yaml +++ b/stalwart/templates/ingress.yaml @@ -21,7 +21,29 @@ spec: name: {{ include "stalwart.fullname" . }} port: number: 8080 + - host: autoconfig.hensen.io + http: + paths: + - path: / + pathType: Prefix + backend: + service: + name: {{ include "stalwart.fullname" . }} + port: + number: 8080 + - host: autodiscover.hensen.io + http: + paths: + - path: / + pathType: Prefix + backend: + service: + name: {{ include "stalwart.fullname" . }} + port: + number: 8080 tls: - secretName: letsencrypt-prod hosts: - mail.hensen.io + - autoconfig.hensen.io + - autodiscover.hensen.io