docker-postfix
docker-postfix copied to clipboard
run postfix with smtp authentication (sasldb) in a docker container
Added checking/support for RHEL/CentOS also added Rocky and Solaris support.
On docker hub this image hasn't been updated in years. At minimum I'd recommend a 30 day curl call to rebuild to handle security updates.
Set Postfix settings like `smtp_user`. ```bash $ sudo docker run -p 25:25 \ -e maildomain=mail.example.com -e smtp_user=user:pwd \ -e postconf=key:value \ --name postfix -d hkcomori/postfix # Set multiple configs: -e...
Hi, The version of Postfix embedded in the container is a bit old. I'm using this container for integration testing and I'm willing to have TLSv1.3 support.
Did some updates to your postfix for better TLS / letsencrypt support, and virtualdomain support.
Added key selector change support since 'mail' might be already allocated.
Use Ubuntu 20.04 as a base image and simplify setup accordingly.
Hi, I am getting the below error when i try to build the container ``` suv@Suvankars-MacBook-Pro[6:12:13]:~/thermeon/docker-postfix$ docker run -it -e MailDomain=gmail.com -e [email protected]:abcd --name=suv_pfx postfix 2020-05-25 12:42:16,500 CRIT Supervisor is...
Fix tls issue. the catatnight/docker-postfix repository TLS mode was not working. With this configuration, TLS works properly.
hello, i started the container with command `docker run -it --rm -p 25:25 -e maildomain=xjplus.xyz -e smtp_user=test123:test123 --name tmpp catatnight/postfix`, then test it with `telnet` as below and i got...