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="" LABEL ImageName=""
RUN \ RUN \
apk add --no-cache exim && \ 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
COPY exim.conf /etc/exim COPY exim.conf /etc/exim
RUN chmod 644 /etc/exim/exim.conf RUN chmod 644 /etc/exim/exim.conf
@@ -18,6 +13,6 @@ WORKDIR /etc/exim
EXPOSE 25 EXPOSE 25
CMD [ "/usr/sbin/exim", "-bdf", "-q15m" ] CMD [ "/usr/sbin/exim", "-bdf", "-q15m", "-v" ]

View File

@@ -6,7 +6,7 @@ tls_advertise_hosts = *
tls_certificate = /etc/exim/ssl/server.crt tls_certificate = /etc/exim/ssl/server.crt
tls_privatekey = /etc/exim/ssl/server.key tls_privatekey = /etc/exim/ssl/server.key
log_file_path = /var/log/exim/%slog log_file_path = syslog
log_selector = -all log_selector = -all
message_logs = true message_logs = true