find /home/ -type f -iname "*.php" -print0 | xargs -0 grep -i "qV="
https://gist.github.com/facelordgists/5761101
http://houseoflaudanum.com/navigate/snippets/removing-spam-from-postfix-queues/
This command does several things.
- Read in the mailqueue
- Look for sender address that end with `example.com`
- Ignore senders with valid addresses (`david` and `john`)
- Deletes all those messages from the queue
$ mailq | tail +2 | grep -v '^ *(' | awk 'BEGIN { RS = "" } { if ($7 ~ "example.com$" && $7 !~ "^david|^john" && $9 == "" ) print $1 } ' | tr -d '*!' | sudo postsuper -d -
http://www.cyberciti.biz/tips/howto-postfix-flush-mail-queue.html
To remove all mail from the queue, enter:
# postsuper -d ALL
To remove all mails in the deferred queue, enter:
# postsuper -d ALL deferred
No comments:
Post a Comment