add leftover Dovecot ports for PROXY protocol

This commit is contained in:
georglauterbach 2024-03-10 18:19:30 +01:00
parent 9c713d6225
commit b4799e8465
No known key found for this signature in database
GPG Key ID: F367F7C43C118578
1 changed files with 9 additions and 1 deletions

View File

@ -706,6 +706,11 @@ The major problem with exposing DMS to the outside world in Kubernetes is to [pr
haproxy_trusted_networks = <YOUR POD CIDR>
service imap-login {
inet_listener imap-proxied {
haproxy = yes
port = 10143
}
inet_listener imaps-proxied {
haproxy = yes
port = 10993
@ -714,12 +719,15 @@ The major problem with exposing DMS to the outside world in Kubernetes is to [pr
}
```
Last but not least, the `ports` section in the `Deployment` needs to be extended:
Last but not least, the `ports` section in the `Deployment` needs to be changed:
```yaml
- name: smtp-proxy
containerPort: 10025
protocol: TCP
- name: imap-proxy
containerPort: 10143
protocol: TCP
- name: subs-proxy
containerPort: 10465
protocol: TCP