@%@UCRWARNING=#@%@

#URLs in exception virus list will not be virus scanned
#Don't bother with the www. or
#the http://
#
#These are parts of sites that filtering should
#be switched off for.
#
#These should not be domains, i.e. entire sites,
#they should be a domain with a path.
#
#For example 'foo.bar' is no good, you need
#to just have 'foo.bar/porn/'.
#
#Another example:
#generallybadsite.tld/partthatisok/

@!@
if baseConfig.get('squid/virusscan', 'no').lower() in [ 'yes', 'true' ]:
        if not baseConfig.get('dansguardian/virus/exception/urls', '') == '':
                for url in baseConfig['dansguardian/virus/exception/urls'].split(" "):
                        print url
@!@

