@%@UCRWARNING=#@%@

#Sites in virus exception list will not be virus scanned
#Don't bother with the www. or
#the http://
#
#These are specifically domains and are not URLs.
#For example 'foo.bar/porn/' is no good, you need
#to just have 'foo.bar'.
#
#You can also match IPs here too.
#
#As of DansGuardian 2.7.3 you can now include
#.tld so for example you can match .gov for example


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

