Joe K - 2013-05-06

i would like to confirm the process I would use to remove archived email messages greater than 3 years old. I am running the OSE version in a FreeBSD Jail.

Use unix command 'find' and pipe through 'xargs' to delete the messages older than 1095 days:

find archive_1/ -type f -mtime +1095 | xargs rm

Then from within Mailarchiva's web interface, configuration, Volumes, Actions run 'Reindex'

Does this sound right?