#!/bin/sh scan_dir=/var/spool/exim/scan max_age=7 /usr/bin/find ${scan_dir}/ -type d -mtime +${max_age} -maxdepth 1 | \ /usr/bin/xargs /bin/rm -rf