apps/stalwart/stalwart-config.yaml aktualisiert
Additional allowed IP settings for the smtp and imap listeners
This commit is contained in:
parent
125a2adc0d
commit
1e77e48e94
1 changed files with 12 additions and 0 deletions
|
|
@ -39,17 +39,29 @@ data:
|
|||
bind = ["0.0.0.0:25"]
|
||||
protocol = "smtp"
|
||||
|
||||
# Security: Allow internal cluster IPs for Traefik ingress
|
||||
[server.listener.smtp.security]
|
||||
allowed-ips = ["10.244.0.0/16", "127.0.0.1/32"]
|
||||
|
||||
# Submission Listener (Port 587 with STARTTLS)
|
||||
[server.listener.submission]
|
||||
bind = ["0.0.0.0:587"]
|
||||
protocol = "smtp"
|
||||
|
||||
# Security: Allow internal cluster IPs for Traefik ingress
|
||||
[server.listener.submission.security]
|
||||
allowed-ips = ["10.244.0.0/16", "127.0.0.1/32"]
|
||||
|
||||
# IMAPS Listener (Port 993 with TLS)
|
||||
[server.listener.imaps]
|
||||
bind = ["0.0.0.0:993"]
|
||||
protocol = "imap"
|
||||
tls.implicit = true
|
||||
|
||||
# Security: Allow internal cluster IPs for Traefik ingress
|
||||
[server.listener.imaps.security]
|
||||
allowed-ips = ["10.244.0.0/16", "127.0.0.1/32"]
|
||||
|
||||
#
|
||||
# TLS Configuration
|
||||
#
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue