mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
805506fbea
* Fixes #468: cron (virus wiper)
5 lines
157 B
Bash
5 lines
157 B
Bash
#!/bin/bash
|
|
|
|
echo "Wipping virus older than $VIRUSMAILS_DELETE_DELAY days"
|
|
find /var/lib/amavis/virusmails/ -type f -mtime +$VIRUSMAILS_DELETE_DELAY -delete
|