Your IP : 216.73.216.170


Current Path : /proc/8644/root/etc/cron.daily/
Upload File :
Current File : //proc/8644/root/etc/cron.daily/squirrelmail

#!/bin/sh
set -e

test -d /var/spool/squirrelmail/attach || exit 0

cd /var/spool/squirrelmail/attach

find \
         -maxdepth 2 \
         -xdev \
         -type f \
         \! -name '*.*' \
         \! -name '*_*' \
         -atime +2 \
         -print0 \
| xargs \
         -0 \
         --no-run-if-empty \
         rm --