You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Conditions specify when a rule's actions are executed.
When no condition is specified, the rule's actions are always executed.
When more than one condition is specified, the rule's actions will be executed when all the conditions are true.
For conditions on text fields, such as "from", "to", "subject" and "body", you can specify simple operations like "is" (test for equality), "is not", and "starts with". More complex conditions on these fields can be specified using regular expressions.
${n}, where n is an integer equal to or bigger than 1, will match the nth group of the first condition that tests for a regular expression.
${field.n}, where field is the name of a field such as "from", "to", "subject" and "body", and n is an integer equal to or bigger than 1, will match the nth group of the condition on that field.