Quote:
Originally Posted by jols
Dang! Nop, still does not work. Currently:
or $message_body contains "http://[0-9a-z]*\.?[0-9a-z]*\.?[0-9a-z]+\.cn"
|
Never used antispam.exim before, but sure looks like a regex statement, no?
Code:
$message_body contains "http\:\/\/[0-9a-z]*\.?[0-9a-z]*\.?[0-9a-z]+\.cn"
Though I don't understand the question marks there...
Says:
match anything with
http:// + any number or letter combo + a period (? = one, many or not at all) {repeats x 2} + .cn
Or am I misreading?