the best way to edit the cron files is using cron -e. make sure you're the zimbra user. it will spawn the default editor for this shell so if you have a favorite editor before you do naything else do
Code:
export VISUAL="nano -w"
replace nano -w (the -w specifies no word wrap) with whatever editor you prefer . Then do
you'll then be in the editor for the zimbra crontab entry. you want to find the backup lines that will look something like this
Code:
# BACKUP BEGIN
0 0 * * * /opt/zimbra/bin/zmbackup -del 1m
0 22 * * 5 /opt/zimbra/bin/zmbackup -f -z -a all
0 19 * * 0-4,6 /opt/zimbra/bin/zmbackup -i -z
# BACKUP END
Yours might be slightly different times, but the important thing is that -z option which tells the backups to compress. When you've added it to your full and incremental backups, exit your editor with saving and you should see a message at the prompt saying that the new crontab was installed.