I am using the following to match all the emails having certain texts (i.e ‘Keyword’) then forward to an email address.
if not body :contains "Keyword" {
redirect "email@example.com";
keep;
}
However the above code is failed to validate. What am i doing wrong? Is body checking not supported or i am doing something wrong?