home · contact · privacy
Refactor mail setup.
[config] / buster / other_files / append_postfix_main.cf
1
2 # TLS certs
3 smtpd_tls_cert_file=/etc/letsencrypt/live/${myhostname}/fullchain.pem
4 smtpd_tls_key_file=/etc/letsencrypt/live/${myhostname}/privkey.pem
5
6 # OpenDKIM milter
7 non_smtpd_milters = inet:localhost:8892
8
9 # transport mail to dovecot; not strictly needed, as even without this
10 # postfix will throw mail to /var/mail/USER to be found by dovecot for
11 # serving via IMAP etc.; but using dovecot's LMTP server for delivery
12 # allows us to do stuff like dovecot-side sieve filtering.
13 mailbox_transport = lmtp:inet:127.0.0.1:2424
14
15 # use dovecot SASL for SMTP access
16 smtpd_sasl_type = dovecot
17 smtpd_sasl_path = private/auth
18 smtpd_sasl_auth_enable = yes