actionsfile tracker ID: 2838501
[privoxy.git] / ChangeLog
1 --------------------------------------------------------------------
2 ChangeLog for Privoxy
3 --------------------------------------------------------------------
4 *** Version 3.0.14 Beta ***
5
6 - The latency is taken into account when evaluating whether or not to
7   reuse a connection. This should significantly reduce the number of
8   connections problems several users reported.
9 - If the server doesn't specify how long the connection stays alive,
10   Privoxy errs on the safe side of caution and assumes it's only a second.
11 - The error pages for connection timeouts or missing server data use a
12   Last-Modified date in the past. Retry attempts are detected and Privoxy
13   removes the If-Modified-Since header to prevent the server from responding
14   with status code 304 in which case the client would reuse the error message.
15 - Setting keep-alive-timeout to 0 disables keep-alive support. Previously
16   Privoxy would claim to allow persistence but not reuse the connection.
17 - Pipelined requests are less likely to be mistaken for the request
18   body of the previous request. Note that Privoxy still has no real
19   pipeline support and will either serialize pipelined requests or
20   drop them in which case the client has to resent them.
21 - Fixed a crash on some Windows versions when header randomization
22   is enabled and the date couldn't be parsed.
23 - Privoxy's keep-alive timeout for the current connection is reduced
24   to the one specified in the client's Keep-Alive header.
25 - For HTTP/1.1 requests, Privoxy implies keep-alive support by not
26   setting any Connection header instead of using 'Connection: keep-alive'.
27 - If the socket isn't reusable, Privoxy doesn't temporarily waste
28   a socket slot to remember the connection.
29 - If keep-alive support is disabled but compiled in, the client's
30   Keep-Alive header is removed.
31 - Fixed a bug on mingw32 where downloading large files failed if
32   keep-alive support was enabled.
33 - Fixed a bug that (at least theoretically) could cause log
34   timestamps to be occasionally off by about a second.
35 - No Proxy-Connection header if added if there already is one.
36 - The configure script respects the $PATH variable when searching
37   for groups and id.
38
39 *** Version 3.0.13 Beta ***
40
41 - Added IPv6 support. Thanks to Petr Pisar who not only provided
42   the initial patch but also helped a lot with the integration.
43 - Added client-side keep-alive support.
44 - The connection sharing code is only used if the connection-sharing
45   option is enabled.
46 - The max-client-connections option has been added to restrict
47   the number of client connections below a value enforced by
48   the operating system.
49 - Fixed a regression reintroduced in 3.0.12 that could cause
50   crashes on mingw32 if header date randomization was enabled.
51 - Compressed content with extra fields couldn't be decompressed
52   and would get passed to the client unfiltered. This problem
53   has only be detected through statical analysis with clang as
54   nobody seems to be using extra fields anyway.
55 - If the server resets the Connection after sending only the headers
56   Privoxy forwards what it got to the client. Previously Privoxy
57   would deliver an error message instead.
58 - Error messages in case of connection timeouts use the right
59   HTTP status code.
60 - If spawning a child to handle a request fails, the client
61   gets an error message and Privoxy continues to listen for
62   new requests right away.
63 - The error messages in case of server-connection timeouts or
64   prematurely closed server connections are now template-based.
65 - If zlib support isn't compiled in, Privoxy no longer tries to
66   filter compressed content unless explicitly asked to do so.
67 - In case of connections that are denied based on ACL directives,
68   the memory used for the client IP is no longer leaked.
69 - Fixed another small memory leak if the client request times out
70   while waiting for client headers other than the request line.
71 - The client socket is kept open until the server socket has
72   been marked as unused. This should increase the chances that
73   the still-open connection will be reused for the client's next
74   request to the same destination. Note that this only matters
75   if connection-sharing is enabled.
76 - A TODO list has been added to the source tarballs to give potential
77   volunteers a better idea of what the current goals are. Donations
78   are still welcome too: http://www.privoxy.org/faq/general.html#DONATE
79
80 *** Version 3.0.12 ***
81
82 - The socket-timeout option now also works on platforms whose
83   select() implementation modifies the timeout structure.
84   Previously the timeout was triggered even if the connection
85   didn't stall. Reported by cyberpatrol.
86 - The Connection: keep-alive code properly deals with files
87   larger than 2GB. Previously the connection was closed too
88   early.
89 - The content length for files above 2GB is logged correctly.
90 - The user-manual directive on the show-status page links to
91   the documentation location specified with the directive,
92   not to the Privoxy website.
93 - When running in daemon mode, Privoxy doesn't log anything
94   to the console unless there are errors before the logfile
95   has been opened.
96 - The show-status page prints warnings about invalid directives
97   on the same line as the directives themselves.
98 - Fixed several justified (but harmless) compiler warnings,
99   mostly on 64 bit platforms.
100 - The mingw32 version explicitly requests the default charset
101   to prevent display problems with some fonts available on more
102   recent Windows versions. Patch by Burberry.
103 - The mingw32 version uses the Privoxy icon in the alt-tab
104   windows. Patch by Burberry.
105 - The timestamp and the thread id is omitted in the "Fatal error"
106   message box on mingw32.
107 - Fixed two related mingw32-only buffer overflows. Triggering
108   them required control over the configuration file, therefore
109   this isn't seen as a security issue.
110 - In verbose mode, or if the new option --show-skipped-tests
111   is used, Privoxy-Regression-Test logs skipped tests and the
112   skip reason.
113
114 *** Version 3.0.11 ***
115         
116 - On most platforms, outgoing connections can be kept alive and
117   reused if the server supports it. Whether or not this improves
118   things depends on the connection.
119 - When dropping privileges, membership in supplementary groups
120   is given up as well. Not doing that can lead to Privoxy running
121   with more rights than necessary and violates the principle of
122   least privilege. Users of the --user option are advised to update.
123   Thanks to Matthias Drochner for reporting the problem,
124   providing the initial patch and testing the final version.
125 - Passing invalid users or groups with the --user option
126   didn't lead to program exit. Regression introduced in 3.0.7.
127 - The match all section has been moved from default.action
128   to a new file called match-all.action. As a result the
129   default.action no longer needs to be touched by the user
130   and can be safely overwritten by updates.
131 - The standard.action file has been removed. Its content
132   is now part of the default.action file.
133 - In some situations the logged content length was slightly too low.
134 - Crunched requests are logged with their own log level.
135   If you used "debug 1" in the past, you'll probably want
136   to additionally enable "debug 1024", otherwise only passed
137   requests will be logged. If you only care about crunched
138   requests, simply replace "debug 1" with "debug 1024".
139 - The crunch reason has been moved to the beginning of the
140   crunch message. For HTTP URLs, the protocol is logged as well.
141 - Log messages are shortened by printing the thread id on its
142   own (as opposed to putting it inside the string "Privoxy()").
143 - The config option socket-timeout has been added to control
144   the time Privoxy waits for data to arrive on a socket.
145 - Support for remote toggling is controlled by the configure
146   option --disable-toggle only. In previous versions it also
147   depended on the action editor and thus configuring with the
148   --disable-editor option would disable remote toggling support
149   as well.
150 - Requests with invalid HTTP versions are rejected.
151 - The template symbol @date@ can be used to include a date(1)-like
152   time string. Initial patch submitted by Endre Szabo.
153 - Responses from shoutcast servers are accepted again.
154   Problem reported and fix suggested by Stefan.
155 - The hide-forwarded-for-headers action has been replaced with
156   the change-x-forwarded-for{} action which can also be used to
157   add X-Forwarded-For headers. The latter functionality already
158   existed in Privoxy versions prior to 3.0.7 but has been removed
159   as it was often used unintentionally (by not using the
160   hide-forwarded-for-headers action).
161 - A "clear log" view option was added to the mingw32 version
162   to clear out all of the lines in the Privoxy log window.
163   Based on a patch submitted by T Ford.
164 - The mingw32 version uses "critical sections" now, which prevents
165   log message corruption under load. As a side effect, the
166   "no thread-safe PRNG" warning could be removed as well.
167 - The mingw32 version's task bar icon is crossed out and
168   the color changed to gray if Privoxy is toggled off.
169
170 *** Version 3.0.10 ***
171
172 - Ordinary configuration file changes no longer cause program
173   termination on OS/2 if the name of the logfile hasn't been
174   changed as well. This regression probably crept in with the
175   logging improvements in 3.0.7. Reported by Maynard.
176 - The img-reorder filter is less likely to mess up JavaScript code in
177   img tags. Problem and solution reported by Glenn Washburn in #2014552.
178 - The source tar ball now includes Privoxy-Log-Parser,
179   a syntax-highlighter for Privoxy logs. For fancy screenshots see:
180   http://www.fabiankeil.de/sourcecode/privoxy-log-parser/
181   Documentation is available through perldoc(1).
182
183 *** Version 3.0.9 Beta ***
184
185 - Added SOCKS5 support (with address resolution done by
186   the SOCKS5 server). Patch provided by Eric M. Hopper.
187 - The "blocked" CGI pages include a block reason that was
188   provided as argument to the last-applying block action.
189 - If enable-edit-actions is disabled (the default since 3.0.7 beta)
190   the show-status page hides the edit buttons and explains why.
191   Previously the user would get the "this feature has been disabled"
192   message after using the edit button.
193 - Forbidden CONNECT requests are treated like blocks by default.
194   The now-pointless treat-forbidden-connects-like-blocks action
195   has been removed.
196 - Not enabling limit-connect now allows CONNECT requests to all ports.
197   In previous versions it would only allow CONNECT requests to port 443.
198   Use +limit-connect{443} if you think you need the old default behaviour.
199 - The CGI editor gets turned off after three edit requests with invalid
200   file modification timestamps. This makes life harder for attackers
201   who can leverage browser bugs to send fake Referers and intend to
202   brute-force edit URLs.
203 - Action settings for multiple patterns in the same section are
204   shared in memory. As a result these sections take up less space
205   (and are loaded slightly faster). Problem reported by Franz Schwartau.
206 - Linear white space in HTTP headers will be normalized to single
207   spaces before parsing the header's content, headers split across
208   multiple lines get merged first. This should prevent problems like:
209    * letting the session-cookies-only action slip
210      some Cookies through unmodified,
211    * only suppressing the first line of a header,
212      thus creating an invalid one, and
213    * to incorrectly block headers with valid timestamps
214      that weren't properly recognized.
215   Headers that could trigger these problems are unlikely to appear
216   in "normal" web traffic, but could be intentionally generated to
217   fool some of Privoxy's header parsers.
218 - Host information is gathered outside the main thread so it's less
219   likely to delay other incoming connections if the host is misconfigured.
220 - New config option "hostname" to use a hostname other than
221   the one returned by the operating system. Useful to speed-up responses
222   for CGI requests on misconfigured systems. Requested by Max Khon.
223 - The CGI editor supports the "disable all filters of this type"
224   directives "-client-header-filter", "-server-header-filter",
225   "-client-header-tagger" and "-server-header-tagger".
226 - Fixed false-positives with the link-by-url filter and URLs that
227   contain the pattern "/jump/".
228 - The less-download-windows filter no longer messes
229   "Content-Type: application/x-shockwave-flash" headers up.
230 - In the show-url-info page's "Final results" section active and
231   inactive actions are listed separately. Patch provided by Lee.
232 - The GNUmakefile supports the DESTDIR variable. Patch for
233   the install target submitted by Radoslaw Zielinski.
234 - Embedding the content of configuration files in the show-status
235   page is significantly faster now. For a largish action file (1 MB)
236   a speedup of about 2450 times has been measured. This is mostly
237   interesting if you are using large action files or regularly use
238   Privoxy-Regression-Test while running Privoxy through Valgrind,
239   for stock configuration files it doesn't really matter.
240 - If zlib support is unavailable and there are content
241   filters active but the prevent-compression action is disabled,
242   the show-url-info page includes a warning that compression
243   might prevent filtering.
244 - The show-url-info page provides an OpenSearch Description that
245   allows to access the page through browser search plugins.
246 - Custom client-header filters that rewrite the request line
247   incorrectly no longer cause Privoxy to crash. Reported by din_a4.
248 - The obsolete kill-popups action has been removed as the
249   PCRS-based popup filters can do the same and are slightly
250   less unreliable.
251 - The inspect-jpegs action has been removed.
252 - The send-wafer and send-vanilla-wafer actions have been removed.
253   They weren't particular useful and their behaviour could be emulated
254   with add-header anyway.
255 - Privoxy-Regression-Test has been significantly improved.
256 - Most sections in the default.action file contain tests for
257   Privoxy-Regression-Test to verify that they are working as intended.
258 - Parts of Privoxy have been refactored to increase maintainability.
259 - Building with zlib (if available) is done by default.
260
261 *** Version 3.0.8 ***
262
263 - Fixed a small memory leak when listen-address only specifies the port.
264 - The source tar balls now include Privoxy-Regression-Test which
265   (upon other things) can be used to automatically detect some
266   packaging problems. Packagers are welcome to give it a try.
267 - Reverted a change in 3.0.7 that caused path patterns to be checked
268   even if the host pattern match already failed. While this doesn't
269   noticeable affect the performance, it makes it less likely to run
270   out of stack space with overly-complex path patterns the user might
271   have added.
272 - Updated the msn, yahoo and google filters to work as advertised again.
273 - The warning message shown by the show-status CGI page is easier to
274   understand. Previously it wasn't clear that the error message
275   is shown below the invalid directive. (Reported by Lee)
276 - When regenerating Content-Disposition headers the more common
277   spelling is used for the name. Previously it was written without caps.
278 - Less confusing log message if the content type isn't overwritten
279   because force-text-type wasn't used but the old type doesn't look
280   like content that would be filtered normally.
281 - Better log messages if the user tries to execute filters that
282   don't exist.
283 - Treat the non-standard Request-Range headers like standard range
284   headers and suppress them if content filtering is enabled.
285 - Prevent the log messages for CONNECT requests to unacceptable
286   ports from printing the limit-connect argument as [null] if
287   limit-connect hasn't been explicitly enabled.
288 - Don't disable the mingw32 log window if the logfile directive
289   isn't used. While it was an intentional change in 3.0.7 at least
290   one user perceived it as a regression and the same effect can
291   be achieved by disabling all debug directives.
292 - Fixed two minor problems related to the win32 build process: a css
293   file was not being in the installer and the trustfile comment in the
294   config.txt referenced a nonexisting file
295 - Minor documentation fixes.
296
297 *** Version 3.0.7 Beta ***
298
299 - Added zlib support to filter content with gzip and deflate
300   encoding. (Patch provided by Wil Mahan)
301 - Dedicated filters and actions are used for header filtering.
302   "filter-client-headers" and "filter-client-headers" are no longer
303   supported, use server-header-filter{} and client-header-filter{}
304   instead.
305 - Tags can be used to change actions based on HTTP headers.
306 - New server-header filter: less-download-windows.
307 - New client-header taggers: css-requests, image-requests,
308   client-ip-address, http-method, allow-post, complete-url,
309   user-agent and privoxy-control.
310 - New server-header taggers: content-type and privoxy-control.
311 - The forward-override{} action allows to change the forwarding
312   settings through the action files, for example based on client
313   headers like the User-Agent, or the request origin.
314 - Socks errors are no longer handled by the CGI page for
315   DNS resolution failures.
316 - CGI pages use favicons to signal whether they are error
317   or control pages. This is useful if you rely heavily on
318   browser tabs.
319 - The show-url-info CGI page shows the forwarding settings.
320 - "Crunch!" log messages (used when Privoxy answers requests
321   by itself) now also contain the reason.
322 - Allow to rewrite the request destination behind the client's back.
323 - Fix socks requests on big-endian platforms. Patch provided by Song Weijia.
324 - Fixes possible deadlocks and crashes on OpenBSD.
325   Patch provided by Ralf Horstmann.
326 - The CGI action editor allows to edit actionfiles with previously
327   forbidden characters like dots.
328 - New trust entries are saved with a comment that contains the
329   trusted referring URL (Suggested by Daniel Griscom).
330 - Filter descriptions are HTML encoded automatically.   
331 - New config option "split-large-forms" to work
332   around a browser bug that caused IE6 and IE7 to ignore
333   the Submit button on the edit-actions-for-url CGI page.
334 - New config option "allow-cgi-request-crunching" to allow
335   requests for Privoxy's CGI pages to be blocked, redirected
336   or (un)trusted like ordinary requests.
337 - Empty filter files no longer interrupt the filtering process
338   prematurely and are correctly listed on the show-status CGI page.
339 - New config option "accept-intercepted-requests" to combine
340   Privoxy with any packet filter to build an intercepting proxy
341   for HTTP/1.1 requests (and for HTTP/1.0 requests with Host header set).
342 - fast-redirects{} catch redirects to https URLs as well.
343 - redirect{s@foo@bar@} can be used to redirect to a rewritten
344   version of the original URL.
345 - Trap unsupported gopher proxy requests.
346 - Fixed a bug in the User Manual delivery on Windows
347   (mingw32 only). Images now show up correctly and HTML
348   pages are no longer padded with garbage data.
349 - Fixed several minor memory leaks, most of them discovered with Valgrind.
350 - Only unlink the pidfile if it's actually used.
351 - Retries after connection problems with forced requests
352   aren't blocked again.
353 - On Unix SIGABRT causes a core dump as expected and is no
354   longer treated as normal shutdown signal.
355 - The "access denied" CGI page is more descriptive and
356   allows retries to circumvent the referrer check.
357 - Updated PCRS to handle unexpected PCRE errors properly.
358   Fixed crashes that could occur if Privoxy was build
359   with external PCRE versions newer than Privoxy's internal
360   one. (Reported by Chung-chieh Shan)
361 - Fixed crashes with null bytes in PCRS replacement strings
362   (Patch provided by Felix Gröbert).
363 - Fixed crashes with header time randomization on mingw32.
364 - The CGI style sheet is no longer delivered if the referring
365   page isn't a Privoxy CGI page. This prevents a JavaScript-based
366   Privoxy detection "attack". Note that detecting Privoxy is
367   still possible through other ways and Privoxy was never intended
368   to be invisible anyway.
369 - Added support for AmigaOS 4, fixed build for AmigaOS 3.x.     
370 - The show-url-info CGI page displays a warning if Privoxy
371   is currently toggled off.
372 - The show-status CGI page suppresses the edit button
373   for action files if Privoxy has no write access.      
374 - Most CGI error pages react properly to HEAD requests.
375 - Requests with RFC 3253 HTTP methods (used by Subversion)
376   are accepted. (Patch provided by Petr Kadlec)
377 - New config option "templdir" to change the location
378   of the CGI templates to make sure customized templates
379   aren't "updated".
380 - Better handling of "HTTP/1.1 100 Continue" responses.
381 - The background of the PNG pattern is transparent.
382 - Fixed XML syntax errors caused by banners-by-size and banners-by-url.
383 - Fixed crashes and possible action file corruptions
384   when lines containing hashes are written through the CGI editor.
385 - Supports dynamic filters which can contain variables.
386 - Supports tags to change the actions based on client or server headers.
387 - Incorrect actions are logged before program termination.
388 - The "actionsfile" syntax in the configuration file is consistent
389   with the rest of the configuration options and requires the
390   whole file name. This is an incompatible change, if you use
391   an old configuration file you might have to append ".action"
392   to your "actionsfile" directives.
393 - With the configuration file option "enforce-blocks" the
394   "go there anyway" mechanism can be disabled without recompiling
395   Privoxy.
396 - More precise error messages in case of incorrect acl syntax.
397 - Logs a warning if filtering is enabled but impossible due
398   to lack of zlib support or use of the prevent-compression action.
399 - Less noisy handling of Cookie:" and "Connection:" headers.
400 - Improved error messages in case of connection problems.
401 - Fix a command-line-parsing bug that was introduced before 3.0.5
402   beta and caused Privoxy to treat the last argument as configuration
403   file if no configuration file was specified.
404 - Treat unknown command line options as fatal errors instead
405   of silently ignoring them.
406 - Use string functions with length checks more often.
407 - Don't log CONNECT requests twice.
408 - Allow to log the source address for ACL-related connection drops.
409 - Don't ignore applying filters if the server didn't
410   specify a Content-Type. Bug reported by Amuro Namie.
411 - Rejected CONNECT requests are logged with log level info
412   (enabled by default) and the reason for the block.
413 - New command line option "--pre-chroot-nslookup hostname" to
414   intialize the resolver library before chroot'ing. On some systems this
415   reduces the number of files that must be copied into the chroot tree.
416   (Patch provided by Stephen Gildea)
417 - Fix a long-standing memory corruption bug that could cause
418   Privoxy to overwrite a single byte in memory it didn't explicitly
419   allocate (but that probably was allocated anyway due to bucket size).
420 - Send template-based CGI pages as HTTP/1.1 unless the client
421   asked for HTTP/1.0.
422 - Let the first line in connection established responses
423   end in \r\n as required by RFC1945. Reported by Bert van Leeuwen.
424 - If no log file has been specified, disable logging instead of logging
425   to stderr.
426 - Don't block stderr when in daemon mode.
427 - Ignore missing zero-chunks when filtering chunk-encoded content.
428   Earlier Privoxy versions would buffer and then forward the content
429   unmodified which caused some browsers to simply show empty pages.
430 - Fix double free in cgi_edit_actions_list(). Reported by Venustech AD-LAB.
431 - The code to add X-Forwarded-For headers when the hide-forwarded-for-headers
432   action isn't being used has been removed.
433 - Fixed trustfile feature which previously didn't work without FEATURE_TOGGLE.
434   Reported by Lee.
435 - Minor code clean-ups, filter and action file updates.
436   (Some of them reported by Davide Alberani, Markus Elfring,
437    Stefan Huehner and Adam Piggott)
438
439 *** Version 3.0.6 ***
440
441 - New content filters: no-ping, google, msn, yahoo and blogspot.
442 - New header filters:  x-httpd-php-to-html, html-to-xml, xml-to-html
443                        and hide-tor-exit-notation.
444 - The special header "X-Filter: No" now disables header filtering as well.
445 - Improved the filters img-reorder, js-annoyances, webbugs,
446   banners-by-size, banners-by-link and ie-exploits to make them
447   less likely to break anything.
448 - Removed outdated URL patterns in default.action and added new ones. 
449 - Added redirection from http://p.p/user-manual to http://p.p/user-manual/
450 - Changed webinterface default values for hide-user-agent, hide-referrer
451   and set-image-blocker.
452         
453 *** Version 3.0.5 Beta ***
454
455 - Windows version can be installed/started as a service.
456 - Windows icon stays blue when Privoxy is idle, green when busy.
457 - Integrated Fabian Keil's extensive patch.  See:
458   http://www.fabiankeil.de/sourcecode/privoxy/. Includes the 
459   following new or significantly improved actions (among many 
460   other improvements):
461
462      content-type-overwrite{}
463      crunch-client-header{string}
464      crunch-if-none-match
465      crunch-server-header{string}
466      fast-redirects{check-decoded-url}
467      filter-client-headers
468      filter-server-headers
469      force-text-mode
470      handle-as-empty-document
471      hide-accept-language{}
472      hide-content-disposition{}
473      hide-if-modified-since
474      hide-referrer{conditional-block}
475      overwrite-last-modified{}
476      redirect{URL}
477      treat-forbidden-connects-like-blocks
478
479 - Standard-compliant clients are prevented from displaying cached
480   copies of Privoxy's error messages after the cause of the problem
481   has gone.
482 - Improved DNS error handling.
483 - Multiple filter files can now be specified in config.
484 - Added jpeg filtering to defend against MS jpeg vulnerability MS04-028
485   with the new inspect-jpegs action.
486 - Removed the "arbitrary" 1000 filter limit - addresses tracker #911950
487 - Thanks to Jindrich Makovicka for a race condition fix for the log 
488   file.  The race condition remains for non-pthread implementations.
489   Reference patch #1175720. Various other logging enhancements.
490 - A pile of assorted bug fixes, memory leaks, enhancements, etc.
491 - Moved Actions file reporting mechanism to SF tracker.
492 - Two new options for config: enable-remote-http-toggle and 
493   forwarded-connect-retries.
494 - Trap unsupported FTP requests.
495 - Let text/xml be filtered.
496 - Numerous updates to default.action
497 - Increase the compiled in limit of trusted referrers from 64 to 512 
498   (for trustfile users).
499
500 *** Version 3.0.3 ***
501
502 - Fixed yet another two memory leaks. Process growth seems stopped now.
503 - Further tightened security against malicious toggle-off links.
504 - Excluded text/plain MIME types from filtering. This fixes a
505   couple of client-crashing, download corruption and
506   Privoxy performance issues, whose root cause lies in
507   web servers labelling content of unknown type as text/plain.
508 - Assorted fixes for POSIX compliance, signal handling, graceful
509   termination, compiler warnings, OSX support, Win32 systray,
510   error logging, hostname wildcards, correct detection of NetBSD.
511 - Workarounds for client (iTunes etc) and server (PHP < 4.2.3) bugs
512   including the notorious "blank page" problem.
513 - Various filter improvements; most notably the unsolicited-popups
514   filter became less destructive     
515 - Major revamp of the actions file
516         
517 *** Version 3.0.2 ***
518
519 - Fixed two memory leaks, one serious
520 - Fixed bug in pcrs which could cause crashes with user-defined filters
521 - Fixed bug in domain name matching
522 - Assorted small fixes (Win32 menu, CGI URL editor, ..) 
523 - Added basic support for the OPTIONS and TRACE http methods
524 - Added workaround for Bug in Mac OSX that made Privoxy crash occasionally
525 - Refined the default action file through >400 items of user feedback
526 - Filter changes:
527   - Assorted refinements, optimizations and fixes in the js-annoyances,
528     img-reorder, banners-by-size, banners-by-link, webbugs, refresh-tags,
529     html-annoyances, content-cookies and fun filters
530   - Replaced filter "popups" by choice between two modes:
531     - "unsolicited-popups" tries to catch only the unsolicited ones
532     - "all-popups" tries to kill them all (as before)
533   - New filter "tiny-textforms" Help those tiny or hard-wrap textareas. 
534   - New filter "jumping-windows" that prevents windows from resizing
535     and moving themselves
536   - New filter "demoronizer" which fixes MS's abuse of std charsets
537     (common cases anyway).
538   - Replaced "nimda" with more general "ie-exploits" filter in which
539     all filters for exploits shall be collected
540 - Improved cookie logging
541 - Rewrote make install target. Added uninstall and install-strip
542   targets.
543 - Fixed a potential (application-level, NOT OS-level!) security
544   problem involving remote toggling and action file manipulation
545   by mailicious websites.
546 - Added ability to chroot (thanks to Sviatoslav Sviridov)
547 - Added more action aliases for prehistoric action names
548 - Add Slackware support to Makefile.
549
550 *** Version 3.0  ***
551
552 - Fixed Windows startmenu items, log window and tray icon menus.
553 - Added warning for bogus install target
554 - Added quicktime-kioskmode filter and improved frameset-borders
555 - Updated default.action based on latest feedback
556 - New PDF doc build process
557 - Add a user contrib module to cvs: 
558   http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/ijbswa/contrib/
559
560 *** Version 2.9.18  ***
561
562 - Added workaround for IE bug that broke CGI interface
563 - Bugfix: String actions now reliably editable through CGI interface
564 - Three filters fixed (again!)
565 - Assorted small fixes and doc enhancements
566
567 *** Version 2.9.16  *** 
568
569 - Major revamp of default.action to get rid of years of cruft.
570 - Same for default.filter
571 - Re-design and major improvements to the CGI editor interface.
572 - Address spurious 'out of memory' error due to incorrect file permissions.
573 - Impose buffer limits while reading client and server headers.
574 - Better memory and CPU optimization.
575 - Add Conectiva Linux package.
576 - user-manual directive added to config for help links from within CGI
577   editor.
578 - Multiple actions files can now be specified in config.
579 - Actions files are changed to: default.action, standard.action, and 
580   user.action. user.action is for personal/local configuration.
581 - The usual many small and miscellaneous bug and security fixes.
582
583 *** Version 2.9.14 Beta *** 
584
585 - Fix Solaris compile problem (gateway.h and filters.h)
586 - Makefile fixes for Solaris, FreeBSD (?)
587 - Fix build failure where certain features were disabled.
588 - 'blocked-compact' template is removed. Various CGI improvements,
589   including an adaptive 'blocked' template.
590 - Various tweaks for actions file to get ready for stable 3.0
591 - Included a 'Bookmarklet' and PHP scripts for reporting actions file
592   problems via web interface at privoxy.org. Accessed via internal CGIs.
593 - Include cgi-style.css for templates.
594 - #include mechansim for common text in templates
595 - Various other minor fixes.
596
597 *** Version 2.9.13 Beta *** 
598
599 - *NEWS*: The project has been renamed to Privoxy! The new name is 
600   reflected throughout (file locations, etc).
601 - ijb.action is now default.action. re_filterfile is now 
602   default.filter.
603 - http://i.j.b/ is now http://p.p/
604 - The 'logo' option for replacing ad iamges is removed now. 'Pattern' 
605   (checkerboard) is now the default.
606 - RPM spec file make over.
607
608
609 *** Version 2.9.12 Beta *** 
610
611 - **READ**: The default listening PORT is NOW 8118!!! Changed from 
612   8000 due to conflict with NAS (Network Audio Server, whatever that 
613   is.)
614 - More CGI actions editor fixes and improvements.
615 - Win32 command line fix ups.
616 - re_filterfile now has modular sections that can be activated on a 
617   per site basis. Some new goodies there too.
618 - +filter now takes arguments to match FILTER sections in re_filterfile
619   for even more flexibility. 
620 - Added a new image blocker option: +image-blocker{pattern}, which 
621   displays a checkerboard patthern and scales better than the logo.
622 - PNG images will be used in place of GIF for JB built-in images
623   if configured with --enable-no-gif.
624 - Clean up compiler warnings (mostly).
625 - Improved handling of failed DNS lookups & diagnostics for failed bind
626   to listen socket
627 - Made --no-daemon mode log to tty instead of logfile.
628 - Various spec file and init script cleanups and improvements (Redhat and
629   SuSE).
630 - CGI Editor works on OS/2 now.
631 - Fix restart failure where sockets were in TIME_WAIT.
632 - Fixes for actions cgi editor, make sure we have right file.
633 - A --pidfile command line option now, in addition to --help, 
634   --version, --no-daemon, --user and configfile. --no-daemon replaces
635   the former -d option and _DEBUG define. --user will drop privileges 
636   to the specified user.
637 - Signal handling cleanups (*nix).
638 - CGI actions editor improvements and fixes.
639 - Error handling improvements, especially out of memory.
640 - Default re_filterfile fix that caused spurious IJB logos 
641   (instead of 'blank').
642 - configure.in threading fixes for Solaris.
643 - Various other minor fixes.
644
645
646 *** Version 2.9.11 Beta Changes ***
647
648 - Add "session" cookie concept where cookies exist for the life 
649 of that browser session only (ie never goes to disk). 
650 - Checks for correct header length.
651 - Fix user:pass@host.domain.com auth bug.
652 - Better signal handling on *nix.
653 - Fix CFLAGS hard-coded in configure.in
654 - Fix threading bug re: gethostbyname() that caused random 
655 URLs to fail in some cases.
656
657
658 *** Version 2.9.11 Alpha Changes ***
659
660 - A web-based editor for the actions file is included (go to http://i.j.b/).
661 - Web-based toggle IJB on/off support.
662 - Cookie handling has changed - the new +no-cookies-keep feature is now the
663 default.
664 - actionsfile is renamed to ijb.action.
665 - junkbstr.txt is now config.txt on Win32.
666 - Support for running IJB as a UNIX daemon process has improved.
667 - Unix daemon now returns error code on failed start.
668 - Timestamps in logfile and jarfile now.
669 - Fix for the Netscape bug reintroduced in 2.9.9.
670 - make should now abort if gmake (GNU make) not present.
671 - Many other minor bugfixes
672 - Start a ChangeLog :)
673
674
675
676 *** Version 2.9.3 pre-Alpha Changes ***
677
678 - Amiga support (completely untested by me - I don't have an Amiga)
679 - "tinygif 3" support (redirects blocked images to a specified URL, so
680 the browser doesn't have to load and cache many copies of the same
681 image).
682 - one case where there were both local and global "referrer" variables
683 (yuck!) clarified by renaming the local one to "refer".
684 - Fixed some places where close() was used instead of close_socket().
685 Thanks to Jörg Strohmayer (joergs at users.sourceforge.net) for these.
686 - Temporary hack to get FORCE_LOAD to work with IE.  I just lowercased the
687 FORCE_LOAD_PREFIX.  Needs fixing properly.
688 - Most URLs hardcoded into Junkbuster were changed to go through a script
689 e.g. http://ijbswa.sourceforge.net/redirect.php?v=2.9.3&to=faq
690 The only other URLs left are the GNU GPL:
691   http://www.fsf.org/copyleft/gpl.html
692 and the home page:
693   http://ijbswa.sourceforge.net/
694 ... and various URLs which will be intercepted by Junkbuster anyway.
695 TODO: Still need to do something with the URLs in Junkbuster Corp's 
696 copyright/trademark notice on the bottom of the show-proxy-args page.
697 - PCRE or GNU Regex is now a #define option.
698
699
700 *** Version 2.9.2 pre-Alpha Changes ***
701
702 - Andreas applied the latest version of the FORCE patch.
703
704
705 *** Version 2.9.1 pre-Alpha Changes ***
706
707 - in parsers.c, fixed two #ifdef FORCE to #ifdef FORCE_LOAD
708 (BTW: I think FORCE is precise enough, since loading remote
709 data is the whole purpose of a proxy..)
710 - Set the FORCE_PREFIX (back) to 'IJB-FORCE-LOAD-'. While 'noijb.'
711 is more elegant and looks like a hostname in the URL, it doesn't
712 make clear to the inexperienced user that the proxy is bypassed. It
713 also has a higher name collision risk.
714 - Filled in the function header templates for my functions in
715 parsers.c (again). They obviously got lost in our current
716 patch war ;-)
717 - Cut the credit for the §-referrer-option from the config file,
718 that Stefan had placed there.
719 - Improved the re_filterfile 
720
721
722 *** Version 2.9.0 pre-Alpha Changes ***
723
724 -  Now use PCRE, not GNU REGEX.  I have not yet had chance to check the
725 syntax of the block/image/cookie file to ensure that they match what
726 is expected - however they seem to work.
727 -  Replaced "configure" script with one generated by "autoconf".  Also 
728 use a header "config.h" (was ijbconfig.h in my previous release) for 
729 the #defines.  "config.h" is now generated with "autoheader" from 
730 "acconfig.h" and "configure.in".  (Note that to install you do not
731 need autoconf or autoheader - just run "./configure".)
732 To see command-line options, run "./configure --help".
733 This is my first ever autoconf script, so it has some rough edges
734 (how PCRE is handled is the roughest).
735 -  Error logging code replaced with new module errlog.c, based on the
736 one from JunkbusterMT (but with the threading code removed).
737 -  Most of Rodney's 0.21 and 0.21A patches applied. (Marked *).  I did not
738 apply all of these, since I had already independently done conditional
739 popup file, conditional image file, and integration of popup code.
740 - ACL, Jar and trust files conditionally compiled.
741 - New source file headers.
742 - Various cosmetic changes.  (But I have not consistently ordered the 
743 config files - I think that's worthwhile, but it's 1am and I want to
744 get this released!)
745 - RCS tags on .h files.
746 -  RCS tags are const char[] rather than const char *.  (Saves 4 bytes
747 per tag ;-)
748 - VC++ project files renamed to vc_junkbuster.*.
749 - show-proxy-args now shows status of all conditionals, not just REGEX
750 - Various functions moved around.  Most notably all the system-specific
751 sockets code which was spread between jcc.c, bind.c, and connect.c,
752 has been moved to "jbsockets.c".  The non-system-specific code from
753 connect.c and socks4.c has been movet to "gateway.c".  Also, the
754 config file loader and the global variables it writes to have been
755 moved to "loadcfg.c".  (Maybe this should go into loaders.c?)
756 And candidate for the "worst filename ever" award is "miscutil.c",
757 which contains, well, miscellaneous utility functions like zalloc.
758 (Suggestions for a better name for this file are welcome!)
759 - Loaders now use a common function to read a line and skip comments,
760 and this function also stores the proxy_args.
761 - Added ./junkbuster --help     (Not for Win32 GUI)
762 - Added ./junkbuster --version  (Not for Win32 GUI)
763 - Win32 resources are now all marked as "U.S. English", rather than
764 being a mix of "U.S. English", "U.K. English" and "Irish English".
765 - Version number changes to 2.9.0
766
767
768
769 ----------------------------------------------------------------------
770 Copyright   :  Written by and Copyright (C) 2001-2008 the SourceForge
771                Privoxy team. http://www.privoxy.org/
772
773                Based on the Internet Junkbuster originally written
774                by and Copyright (C) 1997 Anonymous Coders and 
775                Junkbusters Corporation.  http://www.junkbusters.com/
776
777                This program is free software; you can redistribute it 
778                and/or modify it under the terms of the GNU General
779                Public License as published by the Free Software
780                Foundation; either version 2 of the License, or (at
781                your option) any later version.
782
783                This program is distributed in the hope that it will
784                be useful, but WITHOUT ANY WARRANTY; without even the
785                implied warranty of MERCHANTABILITY or FITNESS FOR A
786                PARTICULAR PURPOSE.  See the GNU General Public
787                License for more details.
788
789                The GNU General Public License should be included with
790                this file.  If not, you can view it at
791                http://www.gnu.org/copyleft/gpl.html
792                or write to the Free Software Foundation, Inc., 59
793                Temple Place - Suite 330, Boston, MA  02111-1307, USA.