Looks like 6:25 is when the daily crontab entries run, including logrotate.
The only one that I see that might be causing the issue is /var/log/zimbra-stats.log. The relevant logrotate config on my system is:
Code:
/var/log/zimbra-stats.log {
daily
missingok
notifempty
create 0644 zimbra zimbra
postrotate
killall -HUP syslogd 2> /dev/null || true
su - zimbra -c "/opt/zimbra/bin/zmlogswatchctl restart" > /dev/null 2>&1 || true
endscript
rotate 0
} Does yours look any different?