So I changed the logrotate:
/etc/logrotate.d/zimbra
Code:
/var/log/zimbra.log {
daily
rotate 365
missingok
notifempty
noolddir
create 0644 zimbra zimbra
postrotate
killall -HUP syslogd 2> /dev/null || true
su - zimbra -c "/opt/zimbra/bin/zmswatchctl restart" > /dev/null 2>&1 || true
endscript
compress
} Than I added "noolddir" setting and it started to work
All changes were made as root.