]> git.donarmstrong.com Git - roundcube.git/blob - debian/roundcube-core.cron.daily
New upstream release
[roundcube.git] / debian / roundcube-core.cron.daily
1 #!/bin/sh
2
3 MAX_TMPFILE_LIFETIME=5
4 # MAX_TMPFILE_LIFETIME can be overridden in this file
5 if [ -r /etc/default/roundcube-core ]; then
6         . /etc/default/roundcube-core
7 fi
8
9 if [ -d /var/lib/roundcube/temp ]; then
10         find /var/lib/roundcube/temp -type f -mtime +$MAX_TMPFILE_LIFETIME -print0 | xargs -0 -r rm
11 fi