> 2. su - zimbra ; crontab -e 5th/6th lines (zimbra user's crontab)
which means :
su - zimbra
crontab -e (and looks for 5th and 6th lines)
they're :
Quote:
30 2 * * * find /opt/zimbra/log/ -type f -name \*.log\* -mtime +8 -exec rm {} \; > /dev/null 2>&1
35 2 * * * find /opt/zimbra/log/ -type f -name \*.out.???????????? -mtime +8 -exec rm {} \; > /dev/null 2>&1
|
see ? by default, it will just keep your /opt/zimbra/log/ files for recent 8 days.
Change the "8" to what you want.
hope you can get the log next time.