I need to use port 465 as relay port at my ISP and get this in my postfix log
SMTPS wrappermode (TCP port 465) requires setting "smtp_tls_wrappermode = yes", and "smtp_tls_security_level = encrypt" (or stronger)
I can see in entrypoint.sh that this cant be changed by config outside the container.
I know how to make the changes in my container,
podman exec -it postfix bash -c "postconf smtp_tls_wrappermode=yes & postconf smtp_tls_security_level=encrypt & postfix reload"
but how do i make this permanent?
Hi, its me again :-)
I need to use port 465 as relay port at my ISP and get this in my postfix log
SMTPS wrappermode (TCP port 465) requires setting "smtp_tls_wrappermode = yes", and "smtp_tls_security_level = encrypt" (or stronger)
I can see in entrypoint.sh that this cant be changed by config outside the container.I know how to make the changes in my container,
podman exec -it postfix bash -c "postconf smtp_tls_wrappermode=yes & postconf smtp_tls_security_level=encrypt & postfix reload"
but how do i make this permanent?