diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2024-02-15 14:21:02 +0100 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2024-02-15 14:26:05 +0100 |
commit | 20708ade1f56a1ef84b22ecdca42af9f9bd45c69 (patch) | |
tree | cbfdd72d949d3f766c857ed162836917d66e2c0a /templates | |
parent | d74a10cbc6abe451c39eef30b6c610d916090448 (diff) |
Postfix: Use relay-smtps as relayhost transport.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/etc/postfix/main.cf.j2 | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/templates/etc/postfix/main.cf.j2 b/templates/etc/postfix/main.cf.j2 index 9557cc4..35a6790 100644 --- a/templates/etc/postfix/main.cf.j2 +++ b/templates/etc/postfix/main.cf.j2 @@ -29,10 +29,9 @@ alias_database = $virtual_alias_maps mailbox_size_limit = 0 # Forward everything to our internal outgoing proxy -# TODO: User relay-smtps on 465/tcp once Hetzner opens it relay_domains = -relayhost = [smtp.guilhem.org]:587 -default_transport = relay +relayhost = [smtp.guilhem.org]:465 +default_transport = relay-smtps smtpd_tls_security_level = none smtp_tls_exclude_ciphers = EXPORT, LOW, MEDIUM, aNULL, eNULL, DES, RC4, MD5 |