1f548dfc7a
Move the delivery log from the ephemeral /var/log to /data/log/mail.log so the lines that resolve a queued send-log row survive a container recreate. postlogd writes it as postfix, the panel reads it through the selfpost group (dir 2750, file 0640, normalised every start); backups exclude log/. Close the residual gap with a queue sweep: rows queued for over two minutes whose id postqueue -p no longer lists are marked bounced. The sweep waits until the tailer has read the log to its end and does nothing when the queue cannot be listed, so a message in flight is never touched. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Co-authored-by: Cursor <cursoragent@cursor.com>
19 lines
620 B
Plaintext
19 lines
620 B
Plaintext
# The delivery log lives under the persistent /data, not the ephemeral
|
|
# /var/log, so the lines that resolve a "queued" send-log row outlive the
|
|
# container (architecture.md § Log tailer). Path and ownership match
|
|
# build/postfix-config.sh (maillog_file) and build/entrypoint.sh: postlogd
|
|
# writes it as user postfix, the unprivileged panel reads it through the shared
|
|
# selfpost group, hence create 0640 postfix selfpost rather than 0644 root root.
|
|
/data/log/mail.log {
|
|
daily
|
|
rotate 14
|
|
missingok
|
|
notifempty
|
|
compress
|
|
delaycompress
|
|
create 0640 postfix selfpost
|
|
postrotate
|
|
/usr/sbin/postfix reload
|
|
endscript
|
|
}
|