diff options
author | 2024-08-22 18:36:07 +0100 | |
---|---|---|
committer | 2024-08-23 16:52:17 +0100 | |
commit | 4c2669f4bf25a2608ac1abc1bd52c98ae09c1b5c (patch) | |
tree | 885c1f52152971a0444d7ced5e3d7a0814148cd0 | |
parent | Reconfigure Postfix for SMTPS and Submission ports (diff) |
Use Dovecot LMTP to deliver local mail
-rw-r--r-- | ansible/roles/postfix/templates/main.cf.j2 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ansible/roles/postfix/templates/main.cf.j2 b/ansible/roles/postfix/templates/main.cf.j2 index 81f566b..635b9a6 100644 --- a/ansible/roles/postfix/templates/main.cf.j2 +++ b/ansible/roles/postfix/templates/main.cf.j2 @@ -71,6 +71,9 @@ local_recipient_maps = transport_maps = hash:/etc/postfix/transport +mailbox_transport = lmtp:unix:private/dovecot-lmtp +smtputf8_enable = no + mydestination = {{ postfix_mailserver_name }}, localhost, {{ postfix_destination_domains | join(', ') }} relayhost = mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128 |