mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
14 lines
277 B
C++
14 lines
277 B
C++
service lmtp {
|
|
unix_listener lmtp {
|
|
mode = 0660
|
|
group = postfix
|
|
}
|
|
|
|
# Create inet listener only if you can't use the above UNIX socket
|
|
# and avoid making LMTP visible for the entire internet
|
|
#inet_listener lmtp {
|
|
# address = 127.0.0.1
|
|
# port = 24
|
|
#}
|
|
}
|