Delete mails in queue with terminal
Hi,
How to delete all mails with date 11.07.2014. with sender name example@domain.com, and file size 650KB?
How to do in terminal? I need help.
-
Hello :) The Exim cheatsheet is very helpful with these types of commands: Exim Cheatsheet Thank you. 0 -
Hello, Here is a command I have been using to clear out emails. This would remove all emails that reference example@domain.com: [PHP]grep -lr 'example@domain.com' /var/spool/exim/input/ | sed -e 's/^.*\/\([a-zA-Z0-9-]*\)-[DH]$/\1/gi' | xargs exim -Mrm[/PHP] David 0
Please sign in to leave a comment.
Comments
2 comments