60日前より古い受信済みメールを削除
#! /bin/sh
del_mail(){
VPOPMAIL=/home/vpopmail
for dfn in `find $VPOPMAIL/domains/$1/$2/Maildir/cur/ -type f -mtime +60`
do
ls -al $dfn
rm -f $dfn
# echo $dfn
done
}
echo Start: `date +"%Y%m%d %T"`
del_mail ドメイン名 メールアカウント
# test@example.com の場合、
# del_mail example.com test
echo End: `date +"%Y%m%d %T"`