Correcting misleading comments
[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 #
37 # (no flags) Allow cookies and popups, don't re_filter.  (compatibility mode)
38 #       >    Do not allow cookies to be set by the website.
39 #       <    Do not allow cookies to be read by the website.
40 #       <>   Block all cookies.
41 #       %    Enable re_filterfile processing for this site
42 #       ^    Block popups from this site.
43 #       ~    Same as all of <>%^
44 #
45 # Multiple flags may be specified.
46 #
47 # If a web page's URL matches the specified pattern, then the
48 # flags specified for that site are used.  If it matches more
49 # than one pattern, then the first match (searching top-to-bottom
50 # in this file) is used.
51
52 # If a URL does not match any of the patterns in this file,
53 # then the default settings are used.  The default can be set
54 # by a line in this file which contains flags but no pattern.
55 # If this is not specified, then the default is ~
56 #
57 #
58 # EXAMPLES:
59 #
60 # To permit an entire site to set cookies, simply include its domain name:
61 # really-trustyworthy-people.org
62 #
63 # You can allow cookies out, but stop them coming in:
64 # >%^send-user-cookies.com
65 #
66 # dabs.com requires cookies and popups:
67 # %dabs.com
68 #
69 # Windows Update is fragile, so allow everything:
70 # windowsupdate.microsoft.com
71 #
72 #
73 #%^>tvguide.com
74 #%^>wired.com/news/
75 #%^americanexpress.com
76 #%^cnn.com
77 #%^www.nytimes.com
78 #%^amazon.de
79 #%^amazon.co.uk
80 #%^slashdot.org
81 #%^www.palmgear.com
82 #%^onelist.com
83 #%^freshmeat.net
84
85 # Sites that need cookies
86 %^javasoft.com
87 %^sun.com
88 %^msdn.microsoft.com
89 %^sourceforge.net
90 %^yahoo.com
91
92 # These sites are very complex and require
93 # minimal interference.
94 office.microsoft.com
95 windowsupdate.microsoft.com
96
97 # Shopping
98 dabs.com
99 overclockers.co.uk
100 worldpay.com   # for quietpc.com
101 jungle.com
102 scan.co.uk
103
104 # Explicitly set default to ~
105 ~
106
107
108 # End of file
109