09-29-2003, 01:25 PM -
Submitted regular expression.
This one is similar to the previous regular expression, but will catch even more spam.
Subject contains regular expression:
This will flag "viagra", "v1agra", "v|agra", "v;agra", "v:agra", "vagra", etc etc.
Basically, anything containing the word "viagra" where the "i" might have been replaced by any printable character or simply removed.
This one is similar to the previous regular expression, but will catch even more spam.
Subject contains regular expression:
Code:
v[[:print:]]?agra
Basically, anything containing the word "viagra" where the "i" might have been replaced by any printable character or simply removed.