1

I have new messages in my .maildir/new/. There are a lot of bug reports I would like to remove.

I would like to remove messages with subject that contains Webkit. How can I do it?

Thanks for any help.

sergzach
  • 6,578
  • 7
  • 46
  • 84

1 Answers1

2

Each email is simply a file. Removing the file deletes the email.

grep -l -r Webkit .maildir/new | xargs rm
Wu Yongzheng
  • 1,707
  • 17
  • 23