good morning,
we have tons of storage. How do I stop zimbra back from deleting older than one month. I would like to keep the full weeklys at least 2 years.
any suggestions?
thanks!
Robert
edit:version is 5.08, sorry!
Printable View
good morning,
we have tons of storage. How do I stop zimbra back from deleting older than one month. I would like to keep the full weeklys at least 2 years.
any suggestions?
thanks!
Robert
edit:version is 5.08, sorry!
check out the zmschedulebackup command. You can set a delete job for 2y by doing something like:
The parts in the quotes are the crontab timespecs. This example assumes the default backup schedule, but changing the delete jobs older than 2 years.Code:zmschedulebackup -R -a all f "0 1 * * 6" i "0 1 * * 0-5" d 2y "0 0 * * *"
Schedule replaced
Current Schedule:
f 0 1 * * 6 -a all
i 0 1 * * 0-5 -a all
d 2y 0 0 * * *
that worked perfect, thank you!