|
Command for clearing unwanted email from Qmail.
Hello, I'm currently using the following to delete spam from Qmail:
find /var/qmail/queue/mess/ -type f -exec grep -l -i 'SEARCH CRITERIA' {} \; | xargs rm
What I want to know is; is there a way that I can change it to search for multiple search criteria at the same time? eg: 'unknown sender', 'rolex', 'penis', 'viagra'
|