Re: [Assp-test] bombHeaderRe matching every email

2022-06-09 Thread Scott MacLean
Thank you Thomas, I did not realize that it used the /s regex switch - that make sense. I will need to go edit all of my BombRE's. Your suggestion did work: (?:^|\n)from:\s*_+ However, if you add scoring to it: (?:^|\n)from:\s*_+=>1.5 ASSP rejects it as invalid Regex. On 6/9/2022 5:05,

Re: [Assp-test] bombHeaderRe matching every email

2022-06-09 Thread Thomas Eckardt
>I know regex fairly well hmm. from\:.*\_ looks very bad - it is read like: look for from: followed by anything any long (or nothing) followed by _ in the complete header keep in mind: all bombRE's are using the /s regex switch (ignoring CR and LF) So, if there is an underscore