I've done some digging and found out that I can write rules like this:
Code: Select all
meta _jacob_MULTI_BL ((DIGEST_MULTIPLE + C_RBL_PSKY_BAD + C_RBL_PSKY_POOR) >= 2)
describe _jacob_MULTI_BL Hits way too many lists
score _jacob_MULTI_BL 3.50
Alternatively I can check if 2 specific rules are being hit:
Code: Select all
meta _jacob_MULTI_BL (DIGEST_MULTIPLE && C_RBL_PSKY_BAD)
describe _jacob_MULTI_BL Hits way too many lists
score _jacob_MULTI_BL 3.50
Now what I am trying and failing to do is get something like this to work:
Code: Select all
meta _jacob_MULTI_BL ((DIGEST_MULTIPLE + (C_RBL_PSKY_BAD || C_RBL_PSKY_POOR) + (SO_PUB_URIBL_DOMAIN_BL || C_RBL_UCE1)) >= 2)
describe _jacob_MULTI_BL Hits way too many lists
score _jacob_MULTI_BL 3.50
Code: Select all
||