blob: eebfdce3e6b3addb73b551eaa912cc01fc9a5448 (
plain)
- #!/bin/sh
- #
- # local amavis cron daily
- set -e
- find /var/lib/amavis/virusmails/ -type f -name 'badh*' -exec rm -f '{}' ';'
- find /var/lib/amavis/virusmails/ -type f -mtime +14 -exec rm -f '{}' ';'
- exit 0
|