Here's a list of commands to clear out the Panther grime. Make sure you have a backup of ~/Library/Mail, of course. Each line starting with find should be a separate command in a Terminal window.
find ~/Library/Mail -path "*.imapmbox/Cached*" -exec rm -v '{}' ';'
find ~/Library/Mail -path "*.mbox/mbox" -exec rm -frv '{}' ';'
find ~/Library/Mail -path "*.*mbox/content_index" -exec rm -frv '{}' ';'
find ~/Library/Mail -path "*.mbox/table_of_contents" -exec rm -frv '{}' ';'
Running this saved me 3G of disk space.
If you don't make a backup before running this and this nukes your email, it's your fault.
No comments:
Post a Comment