@%@UCRWARNING=#@%@

#Sites in exception list
#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


# dansguardian.org
# windowsupdate.microsoft.com
# windowsupdate.com

@!@
if baseConfig.get('squid/contentscan', 'no').lower() in [ 'yes', 'true' ]:
	group = configRegistry.get( 'dansguardian/current/group' )
	exception = configRegistry.get( 'dansguardian/groups/%s/exception/sites' % group, '' )
	for entry in exception.split( ' ' ):
		print entry
@!@
