Added support for CLF (Common Log Format) and fixed LOG_LEVEL_LOG
[privoxy.git] / permissionsfile
1 # Sample permissions file for the Internet Junkbuster 2.9.4
2 #
3 # For information, see http://ijbswa.sourceforge.net/
4 #
5 # Empty lines and lines beginning with a # are ignored.
6 #
7 # Each line has the following format:
8 # [flags][domain][:port][/path]
9 #
10 # There should be no spaces between the components.
11 #
12 # The domain, port, and path parts make up the pattern used
13 # to match URLs.  The port part must be a number and must
14 # match exactly.  The domain part is matched by comparing
15 # each sub-domain (between the dots) from right to left.
16 # e.g.:
17 #  - The pattern "com" matches "anything.com"
18 #  - The pattern "yahoo.com" would match "mail.yahoo.com",
19 #    "login.yahoo.com", "www.yahoo.com", or "yahoo.com".
20 # "*" characters are allowed immediately before a dot or at
21 # the end of the domain, and match anything.  e.g.:
22 #  - "microsoft.*" matches "microsoft.com" and "microsoft.net",
23 #    (and "www.microsoft.com", "office.microsoft.com", etc)
24 #    but not "microsoft.xyz.com" or "microsoft.co.uk".
25 # - "ad*.*.*.*" matches "ad.doubleclick.co.uk"
26 # - "*.*click.*.*" is invalid ("*" is not followed by ".")
27 #
28 # The path part is a prefix match (if JunkBuster was compiled
29 # without REGEX), or a POSIX regular expression (if JunkBuster
30 # was compiled with REXEX but not PCRE), or a PERL (PCRE)
31 # regular expression (if JunkBuster was compiled with the
32 # default options).  "^" is automatically prepended to the RE
33 # before the "/".
34 #
35 # Flags are:
36 #       >    Allow cookies to be read by the website, but not set.
37 #       <    Allow cookies to be set by the website, but not read.
38 #       <>   Block all cookies.
39 #       %    Enable re_filterfile processing for this site
40 #       ^    Block popups from this site.
41 #       ~    Same as all of <>%^
42 # (no flags) Allow cookies and popups, don't re_filter.
43 #
44 # Multiple flags (up to 4) may be specified.
45 #
46 # If a web page's URL matches the specified pattern, then the
47 # flags specified for that site are used.  If it matches more
48 # than one pattern, then the first match (searching top-to-bottom
49 # in this file) is used.
50
51 # If a URL does not match any of the patterns in this file,
52 # then the default settings are used.  The default can be set
53 # by a line in this file which contains flags but no pattern.
54 # If this is not specified, then the default is ~
55 #
56 #
57 # EXAMPLES:
58 #
59 # To permit an entire site to set cookies, simply include its domain name:
60 # really-trustyworthy-people.org
61 #
62 # You can allow cookies out, but stop them coming in:
63 # >%^send-user-cookies.com
64 #
65 # dabs.com requires cookies and popups:
66 # %dabs.com
67 #
68 # Windows Update is fragile, so allow everything:
69 # windowsupdate.microsoft.com
70 #
71 #
72 #%^>tvguide.com
73 #%^>wired.com/news/
74 #%^americanexpress.com
75 #%^cnn.com
76 #%^www.nytimes.com
77 #%^amazon.de
78 #%^amazon.co.uk
79 #%^slashdot.org
80 #%^www.palmgear.com
81 #%^onelist.com
82 #%^freshmeat.net
83
84 # Sites that need cookies
85 %^javasoft.com
86 %^sun.com
87 %^msdn.microsoft.com
88 %^sourceforge.net
89 %^yahoo.com
90
91 # These sites are very complex and require
92 # minimal interference.
93 office.microsoft.com
94 windowsupdate.microsoft.com
95
96 # Shopping
97 dabs.com
98 overclockers.co.uk
99 worldpay.com   # for quietpc.com
100 jungle.com
101 scan.co.uk
102
103 # Explicitly set default to ~
104 ~
105
106
107 # End of file
108