> Problem 2: > > Rules for checking multiple items on one line. > > I am creating my rule like below with a pipe separating each word, or group > of words to match, is this the correct way? > > body MY_SCAM_RULE_1 /free money|chep stuff/i
Almost but not quite. YOu need aprends around the group. And to be efficient you need a specific sequence at the start: "(?:", not just "(". body MY_SCAM_RULE_1 /(?:free money|chep stuff)/i Loren