Skip to content

Commit

Permalink
fix: STARTTLS command not implemented
Browse files Browse the repository at this point in the history
STARTTLS command is not implemented because TLS is enabled on the outgoing instead of the incoming traffic.
smtp in smtp_use_tls needs to be replaced by smtpd
  • Loading branch information
net-expertise authored Sep 15, 2023
1 parent a6bbe7b commit 39391ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions helm/mail/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ data:
_enable_tls.sh: |
#!/usr/bin/env bash
set -e
do_postconf -e 'smtp_use_tls=yes'
do_postconf -e 'smtp_tls_note_starttls_offer=yes'
do_postconf -e 'smtpd_use_tls=yes'
do_postconf -e 'smtpd_tls_note_starttls_offer=yes'
do_postconf -e 'smtpd_tls_cert_file=/var/run/certs/tls.crt'
do_postconf -e 'smtpd_tls_key_file=/var/run/certs/tls.key'
{{- end }}

0 comments on commit 39391ad

Please sign in to comment.