DustyC,

Monday, February 10, 2003 you wrote:
D> Anyone have a quick regexp for headers that would stop someone hitting us
D> with 6digits@ourdomain?  Like [EMAIL PROTECTED]?

/^(\d{6})\@(.*)/ # it begins with 6 digits, then @, then anything
/^(\d{6,})\@(.*)/  # it begins with 6 or more digits, then @, anything

$1 is the left side of the @
$2 is the right side of the @



Terry Fritts


Reply via email to