-----Original Message----- From: Keith Woodworth [mailto:[EMAIL PROTECTED]
> Ive been really going to town on postfix/imgate stuff the last few days > and have tried a header-check.regexp for anything that has as part > of the subject line: >=20 > [ISO-8859-1] >=20 > but its not working. >=20 > Any clue's? Not sure what your header-check.regexp line looks like, but '[' and ']' in a regexp denote a class of characters, so the regexp is looking to match any single character listed in the brackets. To include the brackets themselves, you would need to escape them: =20 \[ISO-8859-1\] Mike
