Re: Need help about pcre REGEX header check

2014-04-18 Thread Joachim Coqblin
thanks guys... I will try and come back ;-) --- \\\|/// \\ - - // ( @ @ ) oOOo-(_)-oOOo- 【ツ】Joachim Coqblin【ツ】 0ooo --- oooO--( )-- ( )) / \ ( (_/

Re: Need help about pcre REGEX header check

2014-04-18 Thread Viktor Dukhovni
On Fri, Apr 18, 2014 at 05:18:55PM +0200, Joachim Coqblin wrote: > needs a Postfix specialist. No, just someone with a respectable score on regex golf: http://regex.alf.nu/ > /From:(*tomorrowltd.*.)/i REJECT "Die spammer!!" You forgot to "anchor" the expression: /^From:.../ You

Re: Need help about pcre REGEX header check

2014-04-18 Thread Patrick Proniewski
On 18 avr. 2014, at 17:18, Joachim Coqblin wrote: > /From:(*tomorrowltd.*.)/i REJECT "Die spammer!!" what about /From: .*tomorrowltd\..*/i REJECT "bye" Patrick