CREATIVE CHAOS   ▋ blog

Dovecot Logrotate

PUBLISHED ON 18/08/2020 — EDITED ON 11/12/2023 — SYSOPS

Somehow I have missed configuring logrotate to do its magic on the Dovecot log files, lets fix that.

Create /etc/logrotate.d/dovecot and put this inside:

/var/log/mail/dovecot*.log {
  missingok
  monthly
  notifempty
  delaycompress
  sharedscripts
  postrotate
        doveadm log reopen
  endscript
}

To force the rotation, use this command:

$ logrotate --force /etc/logrotate.conf

See Also