Hi all,
I have a very basic cron job set up to delete emails older than ~ 2 months. This was fine until we on-boarded a small group (~5 users) who need to be excluded from this.
Is this possible to do?
The current command is:
find -P ~/mail/domain/*/cur -type f -mtime +62 -exec rm {} \;
I have a very basic cron job set up to delete emails older than ~ 2 months. This was fine until we on-boarded a small group (~5 users) who need to be excluded from this.
Is this possible to do?
The current command is:
find -P ~/mail/domain/*/cur -type f -mtime +62 -exec rm {} \;