$ docker compose config mail-server | grep image
image: mailserver/docker-mailserver:15.1.0
$ docker compose run --rm mail-server
grep -H --before-context=3 autoexpunge \
/etc/dovecot/conf.d/15-mailboxes.conf
/etc/dovecot/conf.d/15-mailboxes.conf- mailbox Sent {
/etc/dovecot/conf.d/15-mailboxes.conf- auto = subscribe
/etc/dovecot/conf.d/15-mailboxes.conf- special_use = \Sent
/etc/dovecot/conf.d/15-mailboxes.conf: autoexpunge = 1d
$ docker compose exec mail-server doveconf -n | grep -A3 "mailbox Sent"
mailbox Sent {
auto = subscribe
autoexpunge = 1 days
But the Sent directory contains messages older than a day.
Why?
But the Sent directory contains messages older than a day.
Why?