more logging back to verbose
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline was successful

This commit is contained in:
2025-11-03 16:25:59 +01:00
parent 9a5f55b144
commit ef3cf827b8
2 changed files with 3 additions and 8 deletions

View File

@@ -4,12 +4,7 @@ LABEL Maintainer="Wolfgang Hottgenroth <woho@hottis.de>"
LABEL ImageName=""
RUN \
apk add --no-cache exim && \
mkdir -p /var/log/exim && \
chown exim:mail /var/log/exim && \
ln -sf /dev/stdout /var/log/exim/mainlog && \
ln -sf /dev/stdout /var/log/exim/rejectlog && \
ln -sf /dev/stdout /var/log/exim/paniclog
apk add --no-cache exim
COPY exim.conf /etc/exim
RUN chmod 644 /etc/exim/exim.conf
@@ -18,6 +13,6 @@ WORKDIR /etc/exim
EXPOSE 25
CMD [ "/usr/sbin/exim", "-bdf", "-q15m" ]
CMD [ "/usr/sbin/exim", "-bdf", "-q15m", "-v" ]