diff options
author | Malfurious <m@lfurio.us> | 2024-06-08 15:12:58 -0400 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2024-06-09 14:27:08 -0400 |
commit | 62f01b6347a8125c071ce1d79a2e0b7725576f56 (patch) | |
tree | bbcb45c4b1db8e44989683d5730d9548fbd659b3 | |
parent | f70fb0720d2a643905ba8263253b16b973f6bc36 (diff) | |
download | mailnode-62f01b6347a8125c071ce1d79a2e0b7725576f56.tar.gz mailnode-62f01b6347a8125c071ce1d79a2e0b7725576f56.zip |
Write logs to stdout
This allows output to be read with `docker compose logs`.
Signed-off-by: Malfurious <m@lfurio.us>
-rw-r--r-- | dovecot/dovecot.conf | 1 | ||||
-rw-r--r-- | postfix/main.cf | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/dovecot/dovecot.conf b/dovecot/dovecot.conf index b1e3f9b..7c6bca4 100644 --- a/dovecot/dovecot.conf +++ b/dovecot/dovecot.conf @@ -15,6 +15,7 @@ protocols = imap auth_mechanisms = plain +log_path = /dev/stdout ssl_cert = </etc/certs/ENV_HOSTNAME/fullchain.pem ssl_key = </etc/certs/ENV_HOSTNAME/key.pem diff --git a/postfix/main.cf b/postfix/main.cf index 7c5d77e..2397399 100644 --- a/postfix/main.cf +++ b/postfix/main.cf @@ -18,6 +18,7 @@ compatibility_level = 3.6 smtpd_banner = $myhostname ESMTP $mail_name (mailnode) +maillog_file = /dev/stdout biff = no # appending .domain is the MUA's job. |