Howdy,

I have an user with the rule below.
Since it's discarding the match first, should it be stop there and don't redirect it to the next rule?

Thanks in advanced,

###

require ["date","relational","vacation"];
# rule:[xxx]
if header :contains "from" "icnf.pt"
{
discard;
}
# rule:[redir]
if true
{
redirect "jorge@myemail.pt";
stop;
}

###