irzyxel wrote: > ive created a custome.cf in my spamassassin folder, sa is readin it, cause my > simple text rule > > body TEST_RULE /gwx/ > score TEST_RULE 0.1 0.1 0.1 0.1 > describe TEST_RULE Test Regel > > is working. but as soon as i do the slightest regex, it doesnt trigger > anymore ... > > rawbody KETYCASINO /www\.ketycasino\.com/i > score KETYCASINO 0.1 0.1 0.1 0.1 > describe KETYCASINO bk.ru Regel > Well, there's noting fancy about that rule.. it's a basic case-insensitive exact-text match and really does noting special as far as regex is concerned.
The only "fancy" bit here is you've switched to rawbody. Is there a good reason you're using this instead of uri? rawbody doesn't remove line-breaks, so if a HTML tag is wrapped across lines, it won't match. > rawbody BK_RU /bk\.ru\?subject=/ > score BK_RU 0.1 0.1 0.1 0.1 > describe BK_RU bk.ru Regel > > any idea what could be the reason for that ? >