On Thu, Jul 26, 2012 at 11:55:25AM +0200, Christian Brabandt wrote:
> On Thu, July 26, 2012 11:38, John Long wrote:
[..]
> > Then couldn't you have filtered from sieve? Why did you choose to do it
> > from
> > Mutt itself?
>
> I could possibly discard mails using Sieve, but I didn't know how to
> automate it and this was easier for me and a nice litte task to see,
> if I can make use of scoring.
That's quite easy:
if header :contains ["from"] ["[email protected]"] {
discard;
}
With this no email from [email protected] will ever hit a mailbox.
Also see here: http://sieve.mozdev.org/reference.html and here:
http://sieve.info/ for more infos about sive.
HTH
Dennis