Filters reg exp format
Further to the last conversation
if I wish to allow the following
anything @ sun.com
i can use two expressions
http://.*.sun.com/.*
http://sun.com/.*
can i do this with just one expression - yet not allow the domain(s)blacksun.com, yellowsun.com etc
# 2
but that would also include the domain yellowsun.com I the allowed filter i want to allow anything from the sun.com domaine.g. www.sun.com, java.sun.com, forum.java.sun.combut not permit domains such as blacksun.com, yellowsun.com, bosun.com etc
# 6
In the allowed sites I want to be able to have one entry that will allow
http://domain.com/ and http://111.domain.com/ , http://222.domain.com/ , http://zzz.domain.com/ etc
But not allow anything from a site whose address ends in domian.com e.g somedomain.com, thatdomain.com, otherdomain.com
As far i i see it could be done with two expresions
http://domain.com/.* and http://.*.domain.com/.*
- can it be done with just one expression
i hope this makes it clearer