Let image pattern ignore cache busters (thanks, anonymous)
[privoxy.git] / README
1 /*********************************************************************
2  *
3  * File        :  $Source: /cvsroot/ijbswa/current/doc/source/readme.sgml,v $
4  *
5  * Purpose     :  README file to give a short intro.
6  *
7  * Copyright   :  Written by and Copyright (C) 2001 the SourceForge
8  *                Privoxy team. http://www.privoxy.org/
9  *
10  *                Based on the Internet Junkbuster originally written
11  *                by and Copyright (C) 1997 Anonymous Coders and 
12  *                Junkbusters Corporation.  http://www.junkbusters.com
13  *
14  *                This program is free software; you can redistribute it 
15  *                and/or modify it under the terms of the GNU General
16  *                Public License as published by the Free Software
17  *                Foundation; either version 2 of the License, or (at
18  *                your option) any later version.
19  *
20  *                This program is distributed in the hope that it will
21  *                be useful, but WITHOUT ANY WARRANTY; without even the
22  *                implied warranty of MERCHANTABILITY or FITNESS FOR A
23  *                PARTICULAR PURPOSE.  See the GNU General Public
24  *                License for more details.
25  *
26  *                The GNU General Public License should be included with
27  *                this file.  If not, you can view it at
28  *                http://www.gnu.org/copyleft/gpl.html
29  *                or write to the Free Software Foundation, Inc., 59
30  *                Temple Place - Suite 330, Boston, MA  02111-1307, USA.
31  *
32  *********************************************************************/
33
34 This README is included with the development version of Privoxy 2.9.18, which
35 will eventually become Privoxy v3.0 (and soon we hope!). See http://
36 www.privoxy.org/ for more information. The current code level is beta, and
37 seems stable to us :).
38
39 -------------------------------------------------------------------------------
40
41 Privoxy is a web proxy with advanced filtering capabilities for protecting
42 privacy, filtering web page content, managing cookies, controlling access, and
43 removing ads, banners, pop-ups and other obnoxious Internet junk. Privoxy has a
44 very flexible configuration and can be customized to suit individual needs and
45 tastes. Privoxy has application for both stand-alone systems and multi-user
46 networks.
47
48 Privoxy is based on Internet Junkbuster (tm).
49
50 -------------------------------------------------------------------------------
51
52 1. IMPORTANT CHANGES
53
54 NEWS! As of 03/24/02, the name of this project has been changed from ijbswa/
55 Junkbuster to Privoxy. This is reflected in many of the included files.
56
57 WARNING! If upgrading from earlier versions of this project via RPM packages,
58 the new package will delete any previously installed 'Junkbuster' packages.
59
60 IMPORTANT! READ! Configuration Change as of 17 Mar 2002: The default listening
61 port is now 8118 due to conflicts with port 8000 assignment. You will need to
62 change your browser if upgrading!!! And maybe firewall, etc.
63
64 -------------------------------------------------------------------------------
65
66 2. INSTALL
67
68 To build Privoxy from source, autoconf, GNU make (gmake), and, of course, a C
69 compiler like gcc are required.
70
71 When building from a source tarball (either release version or nightly CVS
72 tarball), first unpack the source:
73
74  tar xzvf privoxy-2.9.18-beta-src* [.tgz or .tar.gz]                           
75  cd privoxy-2.9.18-beta                                                        
76
77 For retrieving the current CVS sources, you'll need CVS installed. Note that
78 sources from CVS are development quality, and may not be stable, or well
79 tested. To download CVS source:
80
81   cvs -d:pserver:anonymous@cvs.ijbswa.sourceforge.net:/cvsroot/ijbswa login          
82   cvs -z3 -d:pserver:anonymous@cvs.ijbswa.sourceforge.net:/cvsroot/ijbswa co current 
83   cd current                                                                         
84
85 This will create a directory named current/, which will contain the source
86 tree.
87
88 Then, in either case, to build from unpacked tarball or CVS source:
89
90  autoheader                                                                    
91  autoconf                                                                      
92  ./configure      # (--help to see options)                                    
93  make             # (the make from gnu, gmake for *BSD)                        
94  su                                                                            
95  make -n install  # (to see where all the files will go)                       
96  make install     # (to really install)                                        
97
98 If you have gnu make, you can have the first four steps automatically done for
99 you by just typing:
100
101   make                                                                         
102
103 in the freshly downloaded or unpacked source directory.
104
105 For more detailed instructions on how to build Redhat and SuSE RPMs, Windows
106 self-extracting installers, building on platforms with special requirements
107 etc, please consult the developer manual.
108
109 For binary RPM installation, and other platforms, see the user-manual as well.
110
111 -------------------------------------------------------------------------------
112
113 3. RUN
114
115 privoxy [--help] [--version] [--no-daemon] [--pidfile PIDFILE] [--user USER
116 [.GROUP]] [config_file]
117
118 See the man page or User Manual for an explanation of each option, and other
119 configuration and usage issues.
120
121 If no config_file is specified on the command line, Privoxy will look for a
122 file named 'config' in the current directory (except Win32 which will look for
123 'config.txt'). If no config_file is found, Privoxy will fail to start.
124
125 Or for Red Hat based distributions: /etc/rc.d/init.d/privoxy start
126
127 Or for SuSE: /etc/rc.d/privoxy start
128
129 Or Debian: /etc/init.d/privoxy start
130
131 -------------------------------------------------------------------------------
132
133 4. CONFIGURATION
134
135 See: 'config', 'default.action', 'user.action', and 'default.filter'.
136 'user.action' is for personal and local configuration preferences. These are
137 all well commented. Most of the magic is in '*.action' files. 'user.action'
138 should be used for any actions customizations. On Unix-like systems, these
139 files are installed in /etc/privoxy. On Windows, then wherever the executable
140 itself is installed. There are many significant changes and advances since
141 Junkbuster v2.0.x. The User Manual has an explanation of all configuration
142 options, and examples: http://www.privoxy.org/user-manual/.
143
144 Be sure to set your browser(s) for HTTP/HTTPS Proxy at <IP>:<Port>, or whatever
145 you specify in the config file under 'listen-address'. DEFAULT is localhost:
146 8118. Note that Privoxy ONLY proxies HTTP (and HTTPS) traffic. Do not try it
147 with FTP or other protocols for the simple reason it does not work.
148
149 The actions list can be configured via the web interface accessed via http://
150 p.p/, as well other options.
151
152 All configuration files are subject to unannounced changes during the
153 development process.
154
155 -------------------------------------------------------------------------------
156
157 5. DOCUMENTATION
158
159 There should be documentation in the 'doc' subdirectory, but it is not
160 completed at this point. In particular, see the User Manual there, the FAQ, and
161 those interested in Privoxy development, should look at developer-manual.
162
163 The most up to date source of information on the current development version,
164 may still be either comments in the source code, or the included configuration
165 files. The source and configuration files are all well commented. The main
166 configuration files are: 'config', 'default.action', and 'default.filter' in
167 the toplevel source directory.
168
169 Included documentation may vary according to platform and packager.
170
171 -------------------------------------------------------------------------------
172
173 6. CONTACTING THE DEVELOPERS, BUG REPORTING AND FEATURE REQUESTS
174
175 We value your feedback. In fact, we rely on it to improve Privoxy and its
176 configuration. However, please note the following hints, so we can provide you
177 with the best support:
178
179 -------------------------------------------------------------------------------
180
181 6.1. Get Support
182
183 For casual users, our support forum at SourceForge is probably best suited: 
184 http://sourceforge.net/tracker/?group_id=11118&atid=211118
185
186 All users are of course welcome to discuss their issues on the users mailing
187 list, where the developers also hang around.
188
189 -------------------------------------------------------------------------------
190
191 6.2. Report Bugs
192
193 Please report all bugs only through our bug tracker: http://sourceforge.net/
194 tracker/?group_id=11118&atid=111118.
195
196 Before doing so, please make sure that the bug has not already been submitted
197 and observe the additional hints at the top of the submit form.
198
199 Please try to verify that it is a Privoxy bug, and not a browser or site bug
200 first. If unsure, try toggling off Privoxy, and see if the problem persists.
201 The appendix of the user manual also has helpful information on action
202 debugging. If you are using your own custom configuration, please try the stock
203 configs to see if the problem is configuration related.
204
205 If not using the latest version, chances are that the bug has been found and
206 fixed in the meantime. We would appreciate if you could take the time to 
207 upgrade to the latest version (or even the latest CVS snapshot) and verify your
208 bug, but this is not required for reporting.
209
210 -------------------------------------------------------------------------------
211
212 6.3. Request New Features
213
214 You are welcome to submit ideas on new features or other proposals for
215 improvement through our feature request tracker at http://sourceforge.net/
216 tracker/?atid=361118&group_id=11118.
217
218 -------------------------------------------------------------------------------
219
220 6.4. Report Ads or Other Actions-Related Problems
221
222 Please send feedback on ads that slipped through, innocent images that were
223 blocked, and any other problems relating to the default.action file through our
224 actions feedback mechanism located at http://www.privoxy.org/actions/. On this
225 page, you will also find a bookmark which will take you back there from any
226 troubled site and even pre-fill the form!
227
228 New, improved default.action files will occasionally be made available based on
229 your feedback. These will be announced on the ijbswa-announce list and
230 available from our the files section of our project page.
231
232 -------------------------------------------------------------------------------
233
234 6.5. Other
235
236 For any other issues, feel free to use the mailing lists. Technically
237 interested users and people who wish to contribute to the project are also
238 welcome on the developers list! You can find an overview of all Privoxy-related
239 mailing lists, including list archives, at: http://sourceforge.net/mail/?
240 group_id=11118.
241