You didn't understand my problem.
I need to block http://aaa.com and http://www.aaa.com, but don't block
http://*.aaa.com (where * - all except www)
If i wrote into "good" file: *.aaa.com and into "bad" file: aaa.com and
www.aaa.com
[dest section skipped]
clients {
pass good !bad
}
then www.aaa.com is not blocked. I need third file: bad_in_good:
clients {
pass !bad_in_good good !bad
}
but it's not fine way. Fine one would be write into "bad" something like
perl regex: (?!www).aaa.com.
But it seems to be impossible.
----
Sem.