#!/bin/sh include(confFEATURES_DIR/`cfhead.m4')dnl include(confM4_DIR`/conf.default')dnl include(confSITE_DIR/`conf')dnl warnings_dir=confSYSTEM_FILTER_WARNINGS_DIR max_age=confSYSTEM_FILTER_WARNINGS_AGE if [ ! -z "${warnings_dir}" ] && [ -d ${warnings_dir} ] ; then find ${warnings_dir}/ -mtime +${max_age} -type f -exec rm -f {} \; fi quarantine_dir=confSYSTEM_FILTER_QUARANTINE_DIR max_age=confSYSTEM_FILTER_QUARANTINE_AGE if [ ! -z "${quarantine_dir}" ] && [ -d ${quarantine_dir} ] ; then find ${quarantine_dir}/ -mtime +${max_age} -type f -exec rm -f {} \; fi