in whitelist.senders we have an email address "example@???" which we want to allow through but in blocking_list we have an entry "*@*.cloud".
So first we check the whitelist - which matches in the case of receiving an email from "example@???" but if no match then should move onto the blocking_list.
However it looks like the acl is just evaluating the first condition and not processing the second condition whatever the condition result is.
Is their syntax for an ACL something like:
If <this condition> AND NOT <that condition>
To provide one evaluation result for acl_check_rcpt searching both a blocking_list and a whitelist?