Re: Regex in header_check is not working

2014-09-25 Thread Dr Michael Daly
Yes, now working with the 'i' flag. Thanks very much! MD On 2014.09.25 16:34:51 +1000, Dr Michael Daly wrote: > /(^Subject: [^a-z]+$)/ REJECT <--not working To give an idea: /^Subject: [^a-z]+$)/i REJECT i (default: on) Toggles the case sensitivity flag. By default, matching is case ins

Re: Regex in header_check is not working

2014-09-25 Thread Manuel Bieling
On 2014.09.25 16:34:51 +1000, Dr Michael Daly wrote: > /(^Subject: [^a-z]+$)/ REJECT <--not working To give an idea: /^Subject: [^a-z]+$)/i REJECT i (default: on) Toggles the case sensitivity flag. By default, matching is case insensitive. > Online PCRE regex checkers seem to indicate th