I want to header checks based on multiple conditions for a single action, but it is not clear to me how to ensure that all conditions are met before the action takes place. What I am trying to accomplish is this:
if sender=some_sender
and recipient=some_recipient
and subject=some_subject
then discard message
I know how to do header checks, for single conditions, but I don't readily see how to have multiple conditions like this, where all conditions must be met for the discard action to take place.
if sender=some_sender
and recipient=some_recipient
and subject=some_subject
then discard message
I know how to do header checks, for single conditions, but I don't readily see how to have multiple conditions like this, where all conditions must be met for the discard action to take place.