https://bz.apache.org/SpamAssassin/show_bug.cgi?id=7645

--- Comment #12 from Henrik Krohns <[email protected]> ---
Well if Heinlein is reading this, do not use UTF8 in rule files. That's the
most simple fix.

Write rules in pure latin1:

/füübar/

Or better yet, with UTF8 byte alternatives:

$ perl -MEncode -e 'print unpack("H*", encode("UTF-8", "ü"))'
c3bc

/f(?:ü|\xc3\xbc)(?:ü|\xc3\xbc)bar/

Most portable:

$ perl -e 'print unpack("H*", "ü")'
fc

/f(?:\xfc|\xc3\xbc)(?:\xfc|\xc3\xbc)bar/

Some related thread:
http://spamassassin.1065346.n5.nabble.com/UTF8-character-in-doesn-t-match-td154199.html

-- 
You are receiving this mail because:
You are the assignee for the bug.

Reply via email to