I'm pretty sure I saw an enhancement request in Bugzilla at one time (I don't have time to search for it at the moment, or else I would) to set message lifetime based on what folder it's in, where Zimbra would automatically delete email after a certain lifetime. It might be worth it to find that and vote for it.
Otherwise you're going to need to do a
for each mailbox {
while (search for a message matching a message id) {
delete message
}
}
and cross your fingers! |