#!/bin/sh # # local amavis cron daily set -e find /var/lib/amavis/virusmails/ -type f -mtime +14 -exec rm -f '{}' ';' exit 0