#!/bin/sh include(confFEATURES_DIR/`cfhead.m4')dnl include(confM4_DIR`/conf.default')dnl include(confSITE_DIR/`conf')dnl scan_dir=confSPOOLDIR/scan max_age=confSPOOL_SCAN_AGE if [ ! -z "${scan_dir}" ] && [ "${scan_dir}" != "/" ] && [ -d ${scan_dir} ]; then find ${scan_dir} -maxdepth 1 -mtime +${max_age} -type d -exec rm -rf {} \; fi