Restart Dovecot after adding lmtp. Thanks, Josef
This commit is contained in:
parent
107816711f
commit
852f5e7832
1 changed files with 4 additions and 0 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue