diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-06-06 22:50:32 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-06-06 22:51:13 +0100 |
commit | d06035f203e3c445aee41949e7c0e37f089bc889 (patch) | |
tree | 84b3007a44f08b17740e1405e08a4ca8f974111b /etc/haproxy.cfg | |
parent | Only check critical HAProxy services (diff) | |
download | config-d06035f203e3c445aee41949e7c0e37f089bc889.tar.bz2 config-d06035f203e3c445aee41949e7c0e37f089bc889.tar.xz config-d06035f203e3c445aee41949e7c0e37f089bc889.zip |
Add explicit secure submission service port to exim
Add to HAProxy
Diffstat (limited to 'etc/haproxy.cfg')
-rw-r--r-- | etc/haproxy.cfg | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/etc/haproxy.cfg b/etc/haproxy.cfg index 0c38d15..f93b813 100644 --- a/etc/haproxy.cfg +++ b/etc/haproxy.cfg @@ -53,6 +53,15 @@ listen smtp server defiant defiant:11025 server firebrand firebrand:11025 +# Submissions +listen submissions + description Exim SMTP + bind *:465 + mode tcp + default-server send-proxy-v2 observe layer4 check check-ssl + server defiant defiant:11465 + server firebrand firebrand:11465 + # IMAPS listen imaps description Courier IMAP |