mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
fix: Avoid creating an unnecessary syslog socket for Postfix (#3134)
Co-authored-by: Georg Lauterbach <44545919+georglauterbach@users.noreply.github.com>
This commit is contained in:
parent
5ec6845c96
commit
9a9380150e
|
@ -75,3 +75,4 @@ virtual unix - n n - - virtual
|
|||
lmtp unix - - n - - lmtp
|
||||
anvil unix - - n - 1 anvil
|
||||
scache unix - - n - 1 scache
|
||||
postlog unix-dgram n - n - 1 postlogd
|
||||
|
|
|
@ -37,6 +37,9 @@ function _install_postfix
|
|||
chmod +x /bin/hostname
|
||||
apt-get "${QUIET}" install --no-install-recommends postfix
|
||||
mv /bin/hostname.bak /bin/hostname
|
||||
|
||||
# Irrelevant - Debian's default `chroot` jail config for Postfix needed a separate syslog socket:
|
||||
rm /etc/rsyslog.d/postfix.conf
|
||||
}
|
||||
|
||||
function _install_packages
|
||||
|
|
Loading…
Reference in a new issue