Delete mail older than 7 days in cPanel/Dovecot maildir, excluding Archive folders (find)
find ~/mail/example@domain.com/ -type d -name "cur" -print0 | xargs -0 -I {} find {} -type f -mtime +7 ! -ipath '*/.Archive/*' -print0 | xargs -0 rm -f
Finds and deletes mail messages older than 7 days in the cPanel/Dovecot mail directory (cur), while excluding messages in Archive folders.