[Declude.JunkMail] PCRE check

2008-05-23 Thread John T
I am taking my first stab at regular expressions. Trying to write a line to catch all of the @ allen info xx . info from addresses. So far, I have mailfrom 10 PCRE @allen(*{0,6}).info Is that to broad or not efficient? (I think that means look for any 6 characters between @allen and .info is a

RE: [Declude.JunkMail] PCRE check (ES)

2008-05-23 Thread Craig Edmonds
Hi John, Keep us posted how you get on because I have no idea about regular expressions and would like to see how you trun out. :o) Kindest Regards Craig Edmonds 123 Marbella Internet W: www.123marbella.net From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John T Sent: 23

RE: [Declude.JunkMail] PCRE check

2008-05-23 Thread David Barker
(?i:allen.{0,6}\.info) All expressions must be in parenthesis ?i:non case sensitive .* any character {0,6} minimum 0 characters to a maximum of 6 \. Because . can mean any character a \. means specifically use . Hope this helps. David B From: [EMAIL

Re: [Declude.JunkMail] PCRE check

2008-05-23 Thread John T
Thanks David.John T eServices For You -Original Message- From: David Barker [EMAIL PROTECTED] Sent 5/23/2008 8:22:11 AM To: declude.junkmail@declude.com Subject: RE: [Declude.JunkMail] PCRE check(?i:allen.{0,6}\.info) All expressions must be in parenthesis ?i:    non case sensitive .*