Restart Dovecot after adding lmtp. Thanks, Josef

This commit is contained in:
Christoph Haas 2025-11-03 23:42:43 +01:00
parent 107816711f
commit 852f5e7832

View file

@ -29,6 +29,7 @@ other.
First we need to add a UNIX socket where Dovecot listens for incoming LMTP connections: First we need to add a UNIX socket where Dovecot listens for incoming LMTP connections:
```sh title="Run this on your server" ```sh title="Run this on your server"
# Add an LMTP listening socket in Dovecot
cat > /etc/dovecot/conf.d/99-ispmail-lmtp-listener.conf << EOF cat > /etc/dovecot/conf.d/99-ispmail-lmtp-listener.conf << EOF
service lmtp { service lmtp {
# Used internally by Dovecot # Used internally by Dovecot
@ -43,6 +44,9 @@ service lmtp {
} }
} }
EOF EOF
# Restart Dovecot
systemctl restart dovecot
``` ```
The first `unix_listener lmtp` is just used internally by Dovecot and does not concern us. The second part is what you The first `unix_listener lmtp` is just used internally by Dovecot and does not concern us. The second part is what you