This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Blocking entire top level domains

I've been getting spam emails that make it through various anti-spam measures. They're exclusively from odd domains like .no, .kr, .in etc.
I have the Web proxy set up and it does work for a profile I have set up.

If I put the entire URL into the "Additional URLs/Sites to Block" as "sivertsvikhavn.no" it works. However "http:/.../*.no" does NOT block the site.

What am I missing?


This thread was automatically locked due to age.
Parents
  • Actually, this rule could be written better; right now it will block any page which has the string '.no' in it.

    It would be better to make sure there are no slashes before the .no;
    this should work better:
    http://[A-Za-z0-9\-\.]+\.no/

    If it doesn't work, try removing the trailing /

    If the .no TLD has domains with non-Latin characters in the domain, this will need to be re-written to include those.

    Barry
Reply
  • Actually, this rule could be written better; right now it will block any page which has the string '.no' in it.

    It would be better to make sure there are no slashes before the .no;
    this should work better:
    http://[A-Za-z0-9\-\.]+\.no/

    If it doesn't work, try removing the trailing /

    If the .no TLD has domains with non-Latin characters in the domain, this will need to be re-written to include those.

    Barry
Children