cgi_show_url_info(): Kill the "paths are ignored for https URLs" block
[privoxy.git] / ChangeLog
1 --------------------------------------------------------------------
2 ChangeLog for Privoxy
3 --------------------------------------------------------------------
4 *** Version 3.0.28 stable ***
5
6 - Bug fixes for regressions in 3.0.27:
7   - Fixed misplaced parentheses.
8     Reported by David Binderman.
9   - Changed two regression tests to depend on config directive
10     enable-remote-toggle instead of FEATURE_TOGGLE.
11
12 *** Version 3.0.27 stable ***
13
14 - General improvements:
15   - Add a receive-buffer-size directive which can be used to
16     set the size of the previously statically allocated buffer
17     in handle_established_connection().
18     Increasing the buffer size increases Privoxy's memory usage but
19     can lower the number of context switches and thereby reduce the
20     CPU usage and potentially increase the throughput.
21     This is mostly relevant for fast network connections and
22     large downloads that don't require filtering.
23     Sponsored by: Robert Klemme
24   - Add a listen-backlog directive which specifies the backlog
25     value passed to listen().
26     Sponsored by: Robert Klemme
27   - Add an enable-accept-filter directive which allows to
28     toggle accept filter support at run time when compiled
29     with FEATURE_ACCEPT_FILTER support.
30     It makes testing more convenient and now that it's
31     optional we can emit an error message if enabling
32     the accept filter fails.
33     Sponsored by: Robert Klemme
34   - Add a delay-response{} action.
35     This is useful to tar pit JavaScript requests that
36     are endlessly retried in case of blocks. It can also
37     be used to simulate a slow Internet connection.
38     Sponsored by: Robert Klemme
39   - Add a 'trusted-cgi-referrer' directive.
40     It allows to configure another page or site that can be used
41     to reach sensitive CGI resources.
42     Sponsored by: Robert Klemme
43   - Add a --fuzz mode which exposes Privoxy internals to input
44     from files or stdout.
45     Mainly tested with American Fuzzy Lop. For details see:
46     https://www.fabiankeil.de/talks/fuzzing-on-freebsd/
47     This work was partially funded with donations and done
48     as part of the Privoxy month in 2015.
49   - Consistently use the U(ngreedy) flag in the 'img-reorder' filter.
50   - listen_loop(): Reuse a single thread attribute object
51     The object doesn't change and creating a new one for
52     every thread is a waste of (CPU) time.
53     Sponsored by: Robert Klemme
54   - Free csp resources in the thread that belongs to the csp instead
55     of the main thread which has enough on its plate already.
56     Sponsored by: Robert Klemme
57   - Improve 'socket timeout reached' message.
58     Log the timeout that was triggered and downgrade the
59     log level to LOG_LEVEL_CONNECT to reduce the log noise
60     with common debug settings.
61     The timeout isn't necessary the result of an error and
62     usually merely indicates that Privoxy's socket timeout
63     is lower than the relevant timeouts used by client and
64     server.
65     Sponsored by: Robert Klemme
66   - Explicitly taint the server socket in case of CONNECT requests.
67     This doesn't fix any known problems, but makes
68     some log messages less confusing.
69   - Let write_pid_file() terminate if the pid file can't be opened.
70     Logging the issue at info level is unlikely to help.
71   - log_error(): Reduce the mutex-protected area by not using a
72     heap-allocated buffer that is shared between all threads.
73     This increases performance and reduces the latency with
74     verbose debug settings and multiple concurrent connections.
75     Sponsored by: Robert Klemme
76   - Let zalloc() use calloc() if it's available.
77     In some situations using calloc() can be faster than
78     malloc() + memset() and it should never be slower.
79     In the real world the impact of this change is not
80     expected to be noticeable.
81     Sponsored by: Robert Klemme
82   - Never use select() when poll() is available.
83     On most platforms select() is limited by FD_SETSIZE while
84     poll() is not. This was a scaling issue for multi-user setups.
85     Using poll() has no downside other than the usual risk
86     that code modifications may introduce new bugs that have
87     yet to be found and fixed.
88     At least in theory this commit could also reduce the latency
89     when there are lots of connections and select() would use
90     "bit fields in arrays of integers" to store file descriptors.
91     Another side effect is that Privoxy no longer has to stop
92     monitoring the client sockets when pipelined requests are
93     waiting but can't be read yet.
94     This code keeps the select()-based code behind ifdefs for
95     now but hopefully it can be removed soonish to make the
96     code more readable.
97     Sponsored by: Robert Klemme
98   - Add a 'reproducible-tarball-dist' target.
99     It's currently separate from the "tarball-dist" target
100     because it requires a tar implementation with mtree spec
101     support.
102     It's far from being perfect and does not enforce a
103     reproducible mode, but it's better than nothing.
104   - Use arc4random() if it's available.
105     While Privoxy doesn't need high quality pseudo-random numbers
106     there's no reason not to use them when we can and this silences
107     a warning emitted by code checkers that can't tell whether or not
108     the quality matters.
109   - Show the FEATURE_EXTERNAL_FILTERS status on the status page.
110     Better late than never. Previously a couple of tests weren't
111     executed as Privoxy-Regression-Test couldn't detect that the
112     FEATURE_EXTERNAL_FILTERS dependency was satisfied.
113   - Ditch FEATURE_IMAGE_DETECT_MSIE.
114     It's an obsolete workaround we inherited from Junkbuster
115     and was already disabled by default.
116     Users that feel the urge to work around issues with
117     image requests coming from an Internet Explorer version
118     from more than 15 years ago can still do this using tags.
119   - Consistently use strdup_or_die() instead of strdup() in
120     cases where allocation failures aren't expected.
121     Using strdup_or_die() allows to remove a couple of explicit
122     error checks which slightly reduces the size of the binary.
123   - Insert a refresh tag into the /client-tags CGI page when
124     serving it while a client-specific tag is temporarily enabled.
125     This makes it less likely that the user ends up
126     looking at tag state that is out of date.
127   - Use absolute URLs in the client-tag forms.
128     It's more consistent with the rest of the CGI page
129     URLs and makes it more convenient to copy the forms
130     to external pages.
131   - cgi_error_disabled(): Use status code 403 and an appropriate response line
132   - Use a dedicated CGI handler to deal with tag-toggle requests
133     As a result the /client-tags page is now safe to reach without
134     trusted Referer header which makes bookmarking or linking to
135     it more convenient.
136     Finally, refreshing the /client-tags page to show the
137     current state can no longer unintentionally repeat the
138     previous toggle request.
139   - Don't add a "Connection" header for CONNECT requests.
140     Explicitly sending "Connection: close" is not necessary and
141     apparently it causes problems with some forwarding proxies
142     that will close the connection prematurely.
143     Reported by Marc Thomas.
144   - Fix compiler warnings.
145
146 - Bug fixes:
147   - rfc2553_connect_to(): Properly detect and log when poll()
148     reached the time out. Previously this was logged as:
149     Could not connect to [...]: No error: 0.
150     which isn't very helpful.
151     Sponsored by: Robert Klemme
152   - add_tag_for_client(): Set time_to_live properly.
153     Previously the time_to_live was always set for the first tag.
154     Attempts to temporarily enable a tag would result in enabling
155     it permanently unless no tag was enabled already.
156   - Revert r1.165 which didn't perform as advertised.
157     While the idea was to use "https:// when creating links
158     for the user manual on the website", the actual effect
159     was to use "https://" when Privoxy was supposed to serve
160     the user manual itself.
161     Reported by Yossi Zahn on Privoxy-devel@.
162   - socks5_connect(): Fail in case of unsupported address types.
163     Previously they would not be detected right away and
164     Privoxy would fail later on with an error message that
165     didn't make it obvious that the problem was socks-related.
166     So far, no such problems have actually been reported.
167   - socks5_connect(): Properly deal with socks replies that
168     contain IPv6 addresses.
169     Previously parts of the reply were left unread and
170     later on treated as invalid HTTP response data.
171     Fixes #904 reported by Danny Goossen who also provided
172     the initial version of this patch.
173
174 - Action file improvements:
175   - Unblock 'msdn.microsoft.com/'.
176     It (presumably) isn't used to serve the kind of ads Privoxy should
177     block by default but happens to serve lots of pages with URLs that
178     are likely to result in false positives.
179     Reported by bugreporter1694 in AF#939.
180   - Disable gif deanimation for requests tagged with CSS-REQUEST.
181     The action will ignore content that isn't considered text
182     anyway and explicitly disabling it makes this more obvious
183     if "action" debugging (debug 65536) is enabled while
184     "gif deanimation" debugging (debug 256) isn't.
185   - Explicitly disable HTML filters for requests with CSS-REQUEST tag.
186     The filters are unlikely to break CSS files but executing
187     them without (intentionally) getting any hits is a waste of
188     cpu time and makes the log more noisy when running with
189     "debug 64".
190   - Unblock 'adventofcode.com/'.
191     Reported by Clint Adams in Debian bug #848211.
192     Fixes Roland's AF#937.
193   - Unblock 'adlibris.com'.
194     Reported by Wyrex in #935
195   - Unblock .golang.org/
196   - Add fast-redirects exception for '.youtube.com/.*origin=http'
197
198 - Privoxy-Log-Parser:
199   - Don't gather host and resource statistics if they aren't requested.
200     While the performance impact seems negligible this significantly
201     reduces the memory usage if there are lots of requests.
202   - Bump version as the behaviour (slightly) changed.
203   - Count connection failures as well in statistics mode.
204     Sponsored by: Robert Klemme
205   - Count connection timeouts as well in statistics mode.
206     Sponsored by: Robert Klemme
207   - Fix an 'uninitialized value' warning when generating
208     statistics for a log file without response headers.
209     While privoxy-log-parser was supposed to detect this already,
210     the check was flawed and the message the user didn't see was
211     somewhat confusing anyway.
212     Now the message is less confusing, more helpful and actually printed.
213     Reported by: Robert Klemme
214
215 - Documentation improvements:
216   - Refer to the git sources instead of CVS.
217   - Use GNU/Linux when referring to the OS instead of the kernel.
218   - Add FAQ entry for what to do if editing the config file is access denied.
219   - Add brief HTTP/2 FAQ.
220   - Add a small fuzzing section to the developer documentation.
221   - Add a client-header-tagger{client-ip-address} example.
222   - Stop suggesting that Privoxy is an anonymizing proxy.
223     The term could lead to Privoxy users overestimating
224     what it can do on its own (without Tor).
225   - Make it more obvious that SPI accepts Paypal, too.
226     Currently most donations are made through the Paypal account
227     managed by Zwiebelfreunde e.V. and a more even distribution
228     would be useful.
229   - Suggest to log applying actions as well when reproducing problems.
230   - Explicitly mention that Privoxy binaries are built by individuals
231     on their own systems. Buyer beware!
232   - Mention the release feed on the homepage.
233   - Remove a mysterious comment with a GNU FDL link as it isn't
234     useful and could confuse license scanners.
235     In May 2002 it was briefly claimed that "this document" was covered
236     by the GNU FDL. The commit message (r1.5) doesn't explain the motivation
237     or whether all copyright holders were actually asked and agreed to the
238     declared license change.
239     It's thus hard to tell whether or not the license change was legit,
240     but luckily two days later the "doc license" was "put" "back to GPL"
241     anyway (r1.6).
242     At the same time the offending comment with a link to the FDL
243     (not the GPL) was added for no obvious reason.
244     Now it's gone again.
245
246 - Regression tests:
247   - Bump for-privoxy-version to 3.0.27 as we now rely on untrusted
248     CGI request being rejected with status code 403 (instead of 200).
249   - Update test for /send-stylesheet and add another one
250
251 - Templates:
252   - Consistently use https:// when linking to the Privoxy website.
253   - Remove SourceForge references in Copyright header.
254   - Remove a couple of SourceForge references in a comment.
255     While at it, fix the grammar.
256   - Move the site-specific documentation block before the generic one.
257     While most Privoxy installations don't have a site-specific
258     documentation block, in cases were it exists it's likely to
259     be more relevant than the generic one.
260     Showing it first makes it less likely that users stop reading
261     before they reach it, especially on pages that don't fit on
262     the screen.
263
264 - Build system improvements:
265   - Prefer openjade to jade. On some systems Jade produces
266     HTML with unescaped ampersands in URLs.
267   - Prefer OpenSP to SP to be consistent.
268   - Have Docbook generated HTML files be straight ASCII.
269     Dealing with a mixture of ISO-8859 and UTF-8 files is problematic.
270   - Echo the filename to stderr for 'make dok-tidy'.
271     Make it a bit easier to find errors in docbook generated HTML.
272   - Warn when still using select().
273   - Warn when compiling without calloc().
274   - Make it more obvious that the --with-fdsetsize configure switch
275     is pointless if poll() is available.
276   - Remove support for AmigaOS.
277   - Update windows build system to use supported software.
278     The cygwin gcc -mno-cygwin option is no longer supported, so
279     convert the windows build system to use the cygwin cross-compiler
280     to build "native" code.
281   - Add --enable-static-linking option for configure
282     does the same thing as LDFLAGS=-static; ./configure
283     but nicer than mixing evars and configure options.
284
285 *** Version 3.0.26 stable ***
286
287 - Bug fixes:
288   - Fixed crashes with "listen-addr :8118" (SF Bug #902).
289     The regression was introduced in 3.0.25 beta and reported
290     by Marvin Renich in Debian bug #834941.
291
292 - General improvements:
293   - Log when privoxy is toggled on or off via cgi interface.
294   - Highlight the "Info: Now toggled " on/off log message
295     in the Windows log viewer.
296   - Highlight the loading actions/filter file log message
297     in the Windows log viewer.
298   - Mention client-specific tags on the toggle page as a
299     potentionally more appropriate alternative.
300
301 - Documentation improvements:
302   - Update download section on the homepage.
303     The downloads are available from the website now.
304   - Add sponsor FAQ.
305   - Remove obsolete reference to mailing lists hosted at SourceForge.
306   - Update the "Before the Release" section of the developer manual.
307
308 - Infrastructure improvements:
309   - Add perl script to generate an RSS feed for the packages
310     Submitted by "Unknown".
311
312 - Build system improvements:
313   - strptime.h: fix a compiler warning about ambiguous else.
314   - configure.in: Check for Docbook goo on the BSDs as well.
315   - GNUMakefile.in: Let the dok-user target remove temporary files.
316
317 *** Version 3.0.25 beta ***
318
319 - Bug fixes:
320   - Always use the current toggle state for new requests.
321     Previously new requests on reused connections inherited
322     the toggle state from the previous request even though
323     the toggle state could have changed.
324     Reported by Robert Klemme.
325   - Fixed two buffer-overflows in the (deprecated) static
326     pcre code. These bugs are not considered security issues
327     as the input is trusted.
328     Found with afl-fuzz and ASAN.
329
330 - General improvements:
331   - Added support for client-specific tags which allow Privoxy
332     admins to pre-define tags that are set for all requests from
333     clients that previously opted in through the CGI interface.
334     They are useful in multi-user setups where admins may
335     want to allow users to disable certain actions and filters
336     for themselves without affecting others.
337     In single-user setups they are useful to allow more fine-grained
338     toggling. For example to disable request blocking while still
339     crunching cookies, or to disable experimental filters only.
340     This is an experimental feature, the syntax and behaviour may
341     change in future versions.
342     Sponsored by Robert Klemme.
343   - Dynamic filters and taggers now support a $listen-address variable
344     which contains the address the request came in on.
345     For external filters the variable is called $PRIVOXY_LISTEN_ADDRESS.
346     Original patch contributed by pursievro.
347   - Add client-header-tagger 'listen-address'.
348   - Include the listen-address in the log message when logging new requests.
349     Patch contributed by pursievro.
350   - Turn invalid max-client-connections values into fatal errors.
351   - The show-status page now shows whether or not dates before 1970
352     and after 2038 are expected to be handled properly.
353     This is mainly useful for Privoxy-Regression-Test but could
354     also come handy when dealing with time-related support requests.
355   - On Mac OS X the thread id in log messages are more likely to
356     be unique now.
357   - When complaining about missing filters, the filter type is logged
358     as well.
359   - A couple of harmless coverity warnings were silenced
360     (CID #161202, CID #161203, CID #161211).
361
362 - Action file improvements:
363   - Filtering is disabled for Range requests to let download resumption
364     and Windows updates work with the default configuration.
365   - Unblock ".ardmediathek.de/".
366     Reported by ThTomate in #932.
367
368 - Documentation improvements:
369   - Add FAQ entry for crashes caused by memory limits.
370   - Remove obsolete FAQ entry about a bug in PHP 4.2.3.
371   - Mention the new mailing lists were appropriate.
372     As the archives have not been migrated, continue to
373     mention the archives at SF in the contacting section
374     for now.
375   - Note that the templates should be adjusted if Privoxy is
376     running as intercepting proxy without getting all requests.
377   - A bunch of links were converted to https://.
378   - Rephrase onion service paragraph to make it more obvious
379     that Tor is involved and that the whole website (and not
380     just the homepage) is available as onion service.
381   - Streamline the "More information" section on the homepage further
382     by additionally ditching the link to the 'See also' section
383     of the user manual. The section contains mostly links that are
384     directly reachable from the homepage already and the rest is
385     not significant enough to get a link from the homepage.
386   - Change the add-header{} example to set the DNT header
387     and use a complete section to make copy and pasting
388     more convenient.
389     Add a comment to make it obvious that adding the
390     header is not recommended for obvious reasons.
391     Using the DNT header as example was suggested by
392     Leo Wzukw.
393   - Streamline the support-and-service template
394     Instead of linking to the various support trackers
395     (whose URLs hopefully change soon), link to the
396     contact section of the user manual to increase the
397     chances that users actually read it.
398   - Add a FAQ entry for tainted sockets.
399   - More sections in the documentation have stable URLs now.
400   - FAQ: Explain why 'ping config.privoxy.org' is not expected
401     to reach a local Privoxy installation.
402   - Note that donations done through Zwiebelfreunde e.V. currently
403     can't be checked automatically.
404   - Updated section regarding starting Privoxy under OS X.
405   - Use dedicated start instructions for FreeBSD and ElectroBSD.
406   - Removed release instructions for AIX. They haven't been working
407     for years and unsurprisingly nobody seems to care.
408   - Removed obsolete reference to the solaris-dist target.
409   - Updated the release instructions for FreeBSD.
410   - Removed unfinished release instructions for Amiga OS and HP-UX 11.
411   - Added a pointer to the Cygwin Time Machine for getting the last release of
412     Cygwin version 1.5 to use for building Privoxy on Windows.
413   - Various typos have been fixed.
414
415 - Infrastructure improvements:
416   - The website is no longer hosted at SourceForge and
417     can be reached through https now.
418   - The mailing lists at SourceForge have been deprecated,
419     you can subscribe to the new ones at: https://lists.privoxy.org/
420   - Migrating the remaining services from SourceForge is
421     work in progress (TODO list item #53).
422
423 - Build system improvements:
424   - Add configure argument to optimistically redefine FD_SETSIZE
425     with the intent to change the maximum number of client
426     connections Privoxy can handle. Only works with some libcs.
427     Sponsored by Robert Klemme.
428   - Let the tarball-dist target skip files in ".git".
429   - Let the tarball-dist target work in cwds other than current.
430   - Make the 'clean' target faster when run from a git repository.
431   - Include tools in the generic distribution.
432   - Let the gen-dist target work in cwds other than current.
433   - Sort find output that is used for distribution tarballs
434     to get reproducible results.
435   - Don't add '-src' to the name of the tar ball generated by the
436     gen-dist target. The package isn't a source distribution but a
437     binary package.
438     While at it, use a variable for the name to reduce the chances
439     that the various references get out of sync and fix the gen-upload
440     target which was looking in the wrong directory.
441   - Add regression-tests.action to the files that are distributed.
442   - The gen-dist target which was broken since 2002 (r1.92) has been fixed.
443   - Remove genclspec.sh which has been obsolete since 2009.
444   - Remove obsolete reference to Redhat spec file.
445   - Remove the obsolete announce target which has been commented out years ago.
446   - Let rsync skip files if the checksums match.
447
448 - Privoxy-Regression-Test:
449   - Add a "Default level offset" directive which can be used to
450     change the default level by a given value.
451     This directive affects all tests located after it until the end
452     of the file or a another "Default level offset" directive is reached.
453     The purpose of this directive is to make it more convenient to skip
454     similar tests in a given file without having to remove or disable
455     the tests completely.
456   - Let test level 17 depend on FEATURE_64_BIT_TIME_T
457     instead of FEATURE_PTHREAD which has no direct connection
458     to the time_t size.
459   - Fix indentation in perldoc examples.
460   - Don't overlook directives in the first line of the action file.
461   - Bump version to 0.7.
462   - Fix detection of the Privoxy version now that https://
463     is used for the website.
464
465 *** Version 3.0.24 stable ***
466
467 - Security fixes (denial of service):
468   - Prevent invalid reads in case of corrupt chunk-encoded content.
469     CVE-2016-1982. Bug discovered with afl-fuzz and AddressSanitizer.
470   - Remove empty Host headers in client requests.
471     Previously they would result in invalid reads. CVE-2016-1983.
472     Bug discovered with afl-fuzz and AddressSanitizer.
473
474 - Bug fixes:
475   - When using socks5t, send the request body optimistically as well.
476     Previously the request body wasn't guaranteed to be sent at all
477     and the error message incorrectly blamed the server.
478     Fixes #1686 reported by Peter Müller and G4JC.
479   - Fixed buffer scaling in execute_external_filter() that could lead
480     to crashes. Submitted by Yang Xia in #892.
481   - Fixed crashes when executing external filters on platforms like
482     Mac OS X. Reported by Jonathan McKenzie on ijbswa-users@.
483   - Properly parse ACL directives with ports when compiled with HAVE_RFC2553.
484     Previously the port wasn't removed from the host and in case of
485     'permit-access 127.0.0.1 example.org:80' Privoxy would try (and fail)
486     to resolve "example.org:80" instead of example.org.
487     Reported by Pak Chan on ijbswa-users@.
488   - Check requests more carefully before serving them forcefully
489     when blocks aren't enforced. Privoxy always adds the force token
490     at the beginning of the path, but would previously accept it anywhere
491     in the request line. This could result in requests being served that
492     should be blocked. For example in case of pages that were loaded with
493     force and contained JavaScript to create additionally requests that
494     embed the origin URL (thus inheriting the force prefix).
495     The bug is not considered a security issue and the fix does not make
496     it harder for remote sites to intentionally circumvent blocks if
497     Privoxy isn't configured to enforce them.
498     Fixes #1695 reported by Korda.
499   - Normalize the request line in intercepted requests to make rewriting
500     the destination more convenient. Previously rewrites for intercepted
501     requests were expected to fail unless $hostport was being used, but
502     they failed "the wrong way" and would result in an out-of-memory
503     message (vanilla host patterns) or a crash (extended host patterns).
504     Reported by "Guybrush Threepwood" in #1694.
505   - Enable socket lingering for the correct socket.
506     Previously it was repeatedly enabled for the listen socket
507     instead of for the accepted socket. The bug was found by
508     code inspection and did not cause any (reported) issues.
509   - Detect and reject parameters for parameter-less actions.
510     Previously they were silently ignored.
511   - Fixed invalid reads in internal and outdated pcre code.
512     Found with afl-fuzz and AddressSanitizer.
513   - Prevent invalid read when loading invalid action files.
514     Found with afl-fuzz and AddressSanitizer.
515   - Windows build: Use the correct function to close the event handle.
516     It's unclear if this bug had a negative impact on Privoxy's behaviour.
517     Reported by Jarry Xu in #891.
518   - In case of invalid forward-socks5(t) directives, use the
519     correct directive name in the error messages. Previously they
520     referred to forward-socks4t failures.
521     Reported by Joel Verhagen in #889.
522
523 - General improvements:
524   - Set NO_DELAY flag for the accepting socket. This significantly reduces
525     the latency if the operating system is not configured to set the flag
526     by default. Reported by Johan Sintorn in #894.
527   - Allow to build with mingw x86_64. Submitted by Rustam Abdullaev in #135.
528   - Introduce the new forwarding type 'forward-webserver'.
529     Currently it is only supported by the forward-override{} action and
530     there's no config directive with the same name. The forwarding type
531     is similar to 'forward', but the request line only contains the path
532     instead of the complete URL.
533   - The CGI editor no longer treats 'standard.action' special.
534     Nowadays the official "standards" are part of default.action
535     and there's no obvious reason to disallow editing them through
536     the cgi editor anyway (if the user decided that the lack of
537     authentication isn't an issue in her environment).
538   - Improved error messages when rejecting intercepted requests
539     with unknown destination.
540   - A couple of log messages now include the number of active threads.
541   - Removed non-standard Proxy-Agent headers in HTTP snipplets
542     to make testing more convenient.
543   - Include the error code for pcre errors Privoxy does not recognize.
544   - Config directives with numerical arguments are checked more carefully.
545   - Privoxy's malloc() wrapper has been changed to prevent zero-size
546     allocations which should only occur as the result of bugs.
547   - Various cosmetic changes.
548
549 - Action file improvements:
550   - Unblock ".deutschlandradiokultur.de/".
551     Reported by u302320 in #924.
552   - Add two fast-redirect exceptions for "yandex.ru".
553   - Disable filter{banners-by-size} for ".plasmaservice.de/".
554   - Unblock "klikki.fi/adv/".
555   - Block requests for "resources.infolinks.com/".
556     Reported by "Black Rider" on ijbswa-users@.
557   - Block a bunch of criteo domains.
558     Reported by Black Rider.
559   - Block "abs.proxistore.com/abe/".
560     Reported by Black Rider.
561   - Disable filter{banners-by-size} for ".black-mosquito.org/".
562   - Disable fast-redirects for "disqus.com/".
563
564 - Documentation improvements:
565   - FAQ: Explicitly point fingers at ASUS as an example of a
566     company that has been reported to force malware based on
567     Privoxy upon its customers.
568   - Correctly document the action type for a bunch of "multi-value"
569     actions that were incorrectly documented to be "parameterized".
570     Reported by Gregory Seidman on ijbswa-users@.
571   - Fixed the documented type of the forward-override{} action
572     which is obviously 'parameterized'.
573
574 - Website improvements:
575   - Users who don't trust binaries served by SourceForge
576     can get them from a mirror. Migrating away from SourceForge
577     is planned for 2016 (TODO list item #53).
578   - The website is now available as onion service
579     (http://jvauzb4sb3bwlsnc.onion/).
580
581 *** Version 3.0.23 stable ***
582
583 - Bug fixes:
584   - Fixed a DoS issue in case of client requests with incorrect
585     chunk-encoded body. When compiled with assertions enabled
586     (the default) they could previously cause Privoxy to abort().
587     Reported by Matthew Daley. CVE-2015-1380.
588   - Fixed multiple segmentation faults and memory leaks in the
589     pcrs code. This fix also increases the chances that an invalid
590     pcrs command is rejected as such. Previously some invalid commands
591     would be loaded without error. Note that Privoxy's pcrs sources
592     (action and filter files) are considered trustworthy input and
593     should not be writable by untrusted third-parties. CVE-2015-1381.
594   - Fixed an 'invalid read' bug which could at least theoretically
595     cause Privoxy to crash. So far, no crashes have been observed.
596     CVE-2015-1382.
597   - Compiles with --disable-force again. Reported by Kai Raven.
598   - Client requests with body that can't be delivered no longer
599     cause pipelined requests behind them to be rejected as invalid.
600     Reported by Basil Hussain.
601
602 - General improvements:
603   - If a pcrs command is rejected as invalid, Privoxy now logs
604     the cause of the problem as text. Previously the pcrs error
605     code was logged.
606   - The tests are less likely to cause false positives.
607
608 - Action file improvements:
609   - '.sify.com/' is no longer blocked. Apparently it is not actually
610     a pure tracking site (anymore?). Reported by Andrew on ijbswa-users@.
611   - Unblock banners on .amnesty.de/ which aren't ads.
612
613 - Documentation improvements:
614   - The 'Would you like to donate?' section now also contains
615     a "Paypal" address.
616   - The list of supported operating systems has been updated.
617   - The existence of the SF support and feature trackers has been
618     deemphasized because they have been broken for months.
619     Most of the time the mailing lists still work.
620   - The claim that default.action updates are sometimes released
621     on their own has been removed. It hasn't happened in years.
622   - Explicitly mention that Tor's port may deviate from the default
623     when using a bundle. Requested by Andrew on ijbswa-users@.
624
625 *** Version 3.0.22 stable ***
626
627 - Bug fixes:
628   - Fixed a memory leak when rejecting client connections due to
629     the socket limit being reached (CID 66382). This affected
630     Privoxy 3.0.21 when compiled with IPv6 support (on most
631     platforms this is the default). CVE-2015-1030.
632   - Fixed an immediate-use-after-free bug (CID 66394) and two
633     additional unconfirmed use-after-free complaints made by
634     Coverity scan (CID 66391, CID 66376). CVE-2015-1031.
635   - Actually show the FORCE_PREFIX value on the show-status page.
636   - Properly deal with Keep-Alive headers with timeout= parameters
637     If the timeout still can't be parsed, use the configured
638     timeout instead of preventing the client from keeping the
639     connection alive. Fixes #3615312/#870 reported by Bernard Guillot.
640   - Not using any filter files no longer results in warning messages
641     unless an action file is referencing header taggers or filters.
642     Reported by Stefan Kurtz in #3614835.
643   - Fixed a bug that prevented Privoxy from reusing some reusable
644     connections. Two bit masks with different purpose unintentionally
645     shared the same bit.
646   - A couple of additional bugs were discovered by Coverity Scan.
647     The fixes that are not expected to affect users are not explicitly
648     mentioned here, for details please have a look at the CVS logs.
649
650 - General improvements:
651   - Introduced negative tag patterns NO-REQUEST-TAG and NO-RESPONSE-TAG.
652     They apply if no matching tag is found after parsing client or
653     server headers.
654   - Add support for external filters which allow to process the
655     response body with a script or program written in any language
656     the platform supports. External filters are enabled with
657     +external-filter{} after they have been defined in one of the
658     filter files with a header line starting with "EXTERNAL-FILTER:".
659     External filter support is experimental, not compiled by default
660     and known not to work on all platforms.
661   - Add support for the 'PATCH' method as defined in RFC5789.
662   - Reject requests with unsupported Expect header values.
663     Fixes a couple of Co-Advisor tests.
664   - Normalize the HTTP-version in forwarded requests and responses.
665     This is an explicit RFC 2616 MUST and RFC 7230 mandates that
666     intermediaries send their own HTTP-version in forwarded
667     messages.
668   - Server 'Keep-Alive' headers are no longer forwarded. From a user's
669     point of view it doesn't really matter, but RFC 2616 (obsolete)
670     mandates that the header is removed and this fixes a Co-Advisor
671     complaint.
672   - Change declared template file encoding to UTF-8. The templates
673     already used a subset of UTF-8 anyway and changing the declaration
674     allows to properly display UTF-8 characters used in the action files.
675     This change may require existing action files with ISO-8859-1
676     characters that aren't valid UTF-8 to be converted to UTF-8.
677     Requested by Sam Chen in #582.
678   - Do not pass rejected keep-alive timeouts to the server. It might
679     not have caused any problems (we know of), but doing the right
680     thing shouldn't hurt either.
681   - Let log_error() use its own buffer size #define to make changing
682     the log buffer size slightly less inconvenient.
683   - Turned single-threaded into a "proper" toggle directive with arguments.
684   - CGI templates no longer enforce new windows for some links.
685   - Remove an undocumented workaround ('HOST' header removal) for
686     an Apple iTunes bug that according to #729900 got fixed in 2003.
687
688 - Action file improvements:
689   - The pattern 'promotions.' is no longer being blocked.
690     Reported by rakista in #3608540.
691   - Disable fast-redirects for .microsofttranslator.com/.
692   - Disable filter{banners-by-size} for .dgb-tagungszentren.de/.
693   - Add adn.speedtest.net as a site-specific unblocker.
694     Support request #3612908.
695   - Disable filter{banners-by-size} for creativecommons.org/.
696   - Block requests to data.gosquared.com/. Reported by cbug in #3613653.
697   - Unblock .conrad./newsletter/. Reported by David Bo in #3614238.
698   - Unblock .bundestag.de/.
699   - Unblock .rote-hilfe.de/.
700   - Disable fast-redirects for .facebook.com/plugins/like.php.
701   - Unblock Stackexchange popup URLs that aren't used to serve ads.
702     Reported by David Wagner in #3615179.
703   - Disable fast-redirects for creativecommons.org/.
704   - Unblock .stopwatchingus.info/.
705   - Block requests for .adcash.com/script/.
706     Reported by Tyrexionibus in #3615289.
707   - Disable HTML filters if the response was tagged as JavaScript.
708     Filtering JavaScript code with filters intended to deal with HTML
709     is usually a waste of time and, more importantly, may break stuff.
710   - Use a custom redirect{} for .washingtonpost.com/wp-apps/imrs\.php\?src=
711     Previously enabling the 'Advanced' settings (or manually enabling
712     +fast-redirects{}) prevented some images from being loaded properly.
713   - Unblock "adina*." Fixes #919 reported by Morton A. Goldberg.
714   - Block '/.*DigiAd'.
715   - Unblock 'adele*.'. Reported by Adele Lime in #1663.
716   - Disable banners-by-size for kggp.de/.
717
718 - Filter file improvements & bug fixes:
719   - Decrease the chances that js-annoyances creates invalid JavaScript.
720     Submitted by John McGowan on ijbswa-users@.
721   - Let the msn filter hide 'related' ads again.
722   - Remove a stray '1' in the 'html-annoyances' filter.
723   - Prevent img-reorder from messing up img tags with empty src
724     attributes. Fixes #880 reported by Duncan.
725
726 - Documentation improvements:
727   - Updated the 'Would you like to donate?' section.
728   - Note that invalid forward-override{} parameter syntax isn't
729     detected until the parameter is used.
730   - Add another +redirect{} example: a shortcut for illumos bugs.
731   - Make it more obvious that many operating systems support log
732     rotation out of the box.
733   - Fixed dead links. Reported by Mark Nelson in #3614557.
734   - Rephrased the 'Why is the configuration so complicated?' answer
735     to be slightly less condescending. Anonymously suggested in #3615122.
736   - Be more explicit about accept-intercepted-requests's lack of MITM support.
737   - Make 'demoronizer' FAQ entries more generic.
738   - Add an example hostname to the --pre-chroot-nslookup description.
739   - Add an example for a host pattern that matches an IP address.
740   - Rename the 'domain pattern' to 'host pattern' as it may
741     contain IP addresses as well.
742   - Recommend forward-socks5t when using Tor. It seems to work fine and
743     modifying the Tor configuration to profit from it hasn't been necessary
744     for a while now.
745   - Add another redirect{} example to stress that redirect loops can
746     and should be avoided.
747   - The usual spelling and grammar fixes. Parts of them were
748     reported by Reuben Thomas in #3615276.
749   - Mention the PCRS option letters T and D in the filter section.
750   - Clarify that handle-as-empty-doc-returns-ok is still useful
751     and will not be removed without replacement.
752   - Note that security issues shouldn't be reported using the bug tracker.
753   - Clarify what Privoxy does if both +block{} and +redirect{} apply.
754   - Removed the obsolete bookmarklets section.
755
756 - Build system improvements:
757   - Let --with-group properly deal with secondary groups.
758     Patch submitted by Anatoly Arzhnikov in #3615187.
759   - Fix web-actions target.
760   - Add a web-faq target that only updates the FAQ on the webserver.
761   - Remove already-commented-out non-portable DOSFILTER alternatives.
762   - Remove the obsolete targets dok-put and dok-get.
763   - Add a sf-shell target.
764
765 *** Version 3.0.21 stable ***
766
767 - Bug fixes:
768   - On POSIX-like platforms, network sockets with file descriptor
769     values above FD_SETSIZE are properly rejected. Previously they
770     could cause memory corruption in configurations that allowed
771     the limit to be reached.
772   - Proxy authentication headers are removed unless the new directive
773     enable-proxy-authentication-forwarding is used. Forwarding the
774     headers potentially allows malicious sites to trick the user
775     into providing them with login information.
776     Reported by Chris John Riley.
777   - Compiles on OS/2 again now that unistd.h is only included
778     on platforms that have it.
779
780 - General improvements:
781   - The show-status page shows the FEATURE_STRPTIME_SANITY_CHECKS status.
782   - A couple of assert()s that could theoretically dereference
783     NULL pointers in debug builds have been relocated.
784   - Added an LSB info block to the generic start script.
785     Based on a patch from Natxo Asenjo.
786   - The max-client-connections default has been changed to 128
787     which should be more than enough for most setups.
788
789 - Action file improvements:
790   - Block rover.ebay./ar.*\&adtype= instead of "/.*\&adtype=" which
791     caused too man false positives.
792     Reported by u302320 in #360284, additional feedback from Adam Piggott.
793   - Unblock '.advrider.com/' and '/.*ADVrider'.
794     Anonymously reported in #3603636.
795   - Stop blocking '/js/slider\.js'.
796     Reported by Adam Piggott in #3606635 and _lvm in #2791160.
797
798 - Filter file improvements:
799   - Added an iframes filter.
800
801 - Documentation improvements:
802   - The whole GPLv2 text is included in the user manual now,
803     so Privoxy can serve it itself and the user can read it
804     without having to wade through GPLv3 ads first.
805   - Properly numbered and underlined a couple of section titles
806     in the config that where previously overlooked due to a flaw
807     in the conversion script. Reported by Ralf Jungblut.
808   - Improved the support instruction to hopefully make it harder to
809     unintentionally provide insufficient information when requesting
810     support. Previously it wasn't obvious that the information we need
811     in bug reports is usually also required in support requests.
812   - Removed documentation about packages that haven't been provided
813     in years.
814
815 - Privoxy-Regression-Test:
816   - Only log the test number when not running in verbose mode
817     The position of the test is rarely relevant and it previously
818     wasn't exactly obvious which one of the numbers was useful to
819     repeat the test with --test-number.
820
821 - GNUmakefile improvements:
822   - Factor generate-config-file out of config-file to make testing
823     more convenient.
824   - The clean target now also takes care of patch leftovers.
825
826 *** Version 3.0.20 beta ***
827
828 - Bug fixes:
829   - Client sockets are now properly shutdown and drained before being
830     closed. This fixes page truncation issues with clients that aggressively
831     pipeline data on platforms that otherwise discard already written data.
832     The issue mainly affected Opera users and was initially reported
833     by Kevin in #3464439, szotsaki provided additional information to track
834     down the cause.
835   - Fix latency calculation for shared connections (disabled by default).
836     It was broken since their introduction in 2009. The calculated latency
837     for most connections would be 0 in which case the timeout detection
838     failed to account for the real latency.
839   - Reject URLs with invalid port. Previously they were parsed incorrectly and
840     characters between the port number and the first slash were silently
841     dropped as shown by curl test 187.
842   - The default-server-timeout and socket-timeout directives accept 0 as
843     valid value.
844   - Fix a race condition on Windows that could cause Privoxy to become
845     unresponsive after toggling it on or off through the taskbar icon.
846     Reported by Tim H. in #3525694.
847   - Fix the compilation on Windows when configured without IPv6 support.
848   - Fix an assertion that could cause debug builds to abort() in case of
849     socks5 connection failures with "debug 2" enabled.
850   - Fix an assertion that could cause debug builds to abort() if a filter
851     contained nul bytes in the replacement text.
852
853 - General improvements:
854   - Significantly improved keep-alive support for both client and server
855     connections.
856   - New debug log level 65536 which logs all actions that were applied to
857     the request.
858   - New directive client-header-order to forward client headers in a
859     different order than the one in which they arrived.
860   - New directive tolerate-pipelining to allow client-side pipelining.
861     If enabled (3.0.20 beta enables it by default), Privoxy will keep
862     pipelined client requests around to deal with them once the current
863     request has been served.
864   - New --config-test option to let Privoxy exit after checking whether or not
865     the configuration seems valid. The limitations noted in TODO #22 and #23
866     still apply. Based on a patch by Ramkumar Chinchani.
867   - New limit-cookie-lifetime{} action to let cookies expire before the end
868     of the session. Suggested by Rick Sykes in #1049575.
869   - Increase the hard-coded maximum number of actions and filter files from
870     10 to 30 (each). It doesn't significantly affect Privoxy's memory usage
871     and recompiling wasn't an option for all Privoxy users that reached the
872     limit.
873   - Add support for chunk-encoded client request bodies. Previously
874     chunk-encoded request bodies weren't guaranteed to be forwarded correctly,
875     so this can also be considered a bug fix although chunk-encoded request
876     bodies aren't commonly used in the real world.
877   - Add support for Tor's optimistic-data SOCKS extension, which can reduce the
878     latency for requests on newly created connections. Currently only the
879     headers are sent optimistically and only if the client request has already
880     been read completely which rules out requests with large bodies.
881   - After preventing the client from pipelining, don't signal keep-alive
882     intentions. When looking at the response headers alone, it previously
883     wasn't obvious from the client's perspective that no additional responses
884     should be expected.
885   - Stop considering client sockets tainted after receiving a request with body.
886     It hasn't been necessary for a while now and unnecessarily causes test
887     failures when using curl's test suite.
888   - Allow HTTP/1.0 clients to signal interest in keep-alive through the
889     Proxy-Connection header. While such client are rare in the real world, it
890     doesn't hurt and couple of curl tests rely on it.
891   - Only remove duplicated Content-Type headers when filters are enabled.
892     If they are not it doesn't cause ill effects and the user might not want it.
893     Downgrade the removal message to LOG_LEVEL_HEADER to clarify that it's not
894     an error in Privoxy and is unlikely to cause any problems in general.
895     Anonymously reported in #3599335.
896   - Set the socket option SO_LINGER for the client socket.
897   - Move several variable declarations to the beginning of their code block.
898     It's required when compiling with gcc 2.95 which is still used on some
899     platforms. Initial patch submitted by Simon South in #3564815.
900   - Optionally try to sanity-check strptime() results before trusting them.
901     Broken strptime() implementations have caused problems in the past and
902     the most recent offender seems to be FreeBSD's libc (standards/173421).
903   - When filtering is enabled, let Range headers pass if the range starts at
904     the beginning. This should work around (or at least reduce) the video
905     playback issues with various Apple clients as reported by Duc in #3426305.
906   - Do not confuse a client hanging up with a connection time out. If a client
907     closes its side of the connection without sending a request line, do not
908     send the CLIENT_CONNECTION_TIMEOUT_RESPONSE, but report the condition
909     properly.
910   - Allow closing curly braces as part of action values as long as they are
911     escaped.
912   - On Windows, the logfile is now written before showing the GUI error
913     message which blocks until the user acknowledges it.
914     Reported by Adriaan in #3593603.
915   - Remove an unreasonable parameter limit in the CGI interface. The new
916     parameter limit depends on the memory available and is currently unlikely
917     to be reachable, due to other limits in both Privoxy and common clients.
918     Reported by Andrew on ijbswa-users@.
919   - Decrease the chances of parse failures after requests with unsupported
920     methods were sent to the CGI interface.
921
922 - Action file improvements:
923   - Remove the comment that indicated that updated default.action versions
924     are released on their own.
925   - Block 'optimize.indieclick.com/' and 'optimized-by.rubiconproject.com/'
926   - Unblock 'adjamblog.wordpress.com/' and 'adjamblog.files.wordpress.com/'.
927     Reported by Ryan Farmer in #3496116.
928   - Unblock '/.*Bugtracker'. Reported by pwhk in #3522341.
929   - Add test URLs for '.freebsd.org' and '.watson.org'.
930   - Unblock '.urbandictionary.com/popular'.
931   - Block '.adnxs.com/'.
932   - Block 'farm.plista.com/widgetdata.php'.
933   - Block 'rotation.linuxnewmedia.com/'.
934   - Block 'reklamy.sfd.pl/'. Reported by kacperdominik in #3399948.
935   - Block 'g.adspeed.net/'.
936   - Unblock 'websupport.wdc.com/'. Reported by Adam Piggot in #3577851.
937   - Block '/openx/www/delivery/'.
938   - Disable fast-redirects for '.googleapis.com/'.
939   - Block 'imp.double.net/'. Reported by David Bo in #3070411.
940   - Block 'gm-link.com/' which is used for email tracking.
941     Reported by David Bo in #1812733.
942   - Verify that requests to "bwp." are blocked. URL taken from #1736879
943     submitted by Francois Marier.
944   - Block '/.*bannerid='. Reported by Adam Piggott in #2975779.
945   - Block 'cltomedia.info/delivery/' and '.adexprt.com/'.
946     Anonymously reported in #2965254.
947   - Block 'de17a.com/'. Reported by David Bo in #3061472.
948   - Block 'oskar.tradera.com/'. Reported by David Bo in #3060596.
949   - Block '/scripts/webtrends\.js'. Reported by johnd16 in #3002729.
950   - Block requests for 'pool.*.adhese.com/'. Reported by johnd16 in #3002716.
951   - Update path pattern for Coremetrics and add tests.
952     Pattern and URLs submitted by Adam Piggott #3168443.
953   - Enable +fast-redirects{check-decoded-url} for 'tr.anp.se/'.
954     Reported by David Bo in #3268832.
955   - Unblock '.conrad.se/newsletter/banners/'. Reported by David Bo in #3413824.
956   - Block '.tynt.com/'. Reported by Dan Stahlke in #3421767.
957   - Unblock '.bbci.co.uk/radio/'. Reported by Adam Piggott in #3569603.
958   - Block requests to 'service.maxymiser.net/'.
959     Reported by johnd16 in #3118401 (with a previous URL).
960   - Disable fast-redirects for Google's "let's pretend your computer is
961     infected" page.
962   - Unblock '/.*download' to resolve actionsfile feedback #3498129.
963     Submitted by Steven Kolins (soundcloud.com not working).
964   - Unblock '.wlxrs.com/' which is required by hotmail.com.
965     Fixes #3413827 submitted by David Bo.
966   - Add two unblock patterns for popup radio and TV players.
967     Submitted by Adam Piggott in #3596089.
968
969 - Filter file improvements & bug fixes:
970   - Add a referer tagger.
971   - Reduce the likelihood that the google filter messes up HTML-generating
972     JavaScript. Reported by Zeno Kugy in #3520260.
973
974 - Documentation improvements:
975   - Revised all OS X sections due to new packaging module (OSXPackageBuilder).
976   - Update the list of supported operating systems to clarify that all Windows
977     versions after 95 are expected to work and note that the platform-specific
978     code for AmigaOS and QNX currently isn't maintained.
979   - Update 'Signals' section, the only explicitly handled signals are SIGINT,
980     SIGTERM and SIGHUP.
981   - Add Haiku to the list of operating systems on which Privoxy is known to
982     run.
983   - Add DragonFly to the list of BSDs on which Privoxy is known to run.
984   - Removed references to redhat-specific documentation set since it no longer
985     exists.
986   - Removed references to building PDFs since we no longer do so.
987   - Multiple listen-address directives are supported since 3.0.18, correct the
988     documentation to say so.
989   - Remove bogus section about long and short being preferable to int.
990   - Corrected some Internet JunkBuster references to Privoxy.
991   - Removed references to www.junkbusters.com since it is no longer
992     maintained. Reported by Angelina Matson.
993   - Various grammar and spelling corrections
994   - Add a client-header-tagger{} example for disabling filtering for range
995     requests.
996   - Correct a URL in the "Privoxy with Tor" FAQ.
997   - Spell 'refresh-tags' correctly. Reported by Don in #3571927.
998   - Sort manpage options alphabetically.
999   - Remove an incorrect sentence in the toggle section. The toggle state
1000     doesn't affect whether or not the Windows version uses the tray icon.
1001     Reported by Zeno Kugy in #3596395.
1002   - Add new contributors since 3.0.19.
1003
1004 - Log message improvements:
1005   - When stopping to watch a client socket due to pipelining, additionally log
1006     the socket number.
1007   - Log the client socket and its condition before closing it. This makes it
1008     more obvious that the socket actually gets closed and should help when
1009     diagnosing problems like #3464439.
1010   - In case of SOCKS5 failures, do not explicitly log the server's response.
1011     It hasn't helped so far and the response can already be logged by enabling
1012     "debug 32768" anyway. This reverts v1.81 and the follow-up bug fix v1.84.
1013   - Relocate the connection-accepted message from listen_loop() to serve().
1014     This way it's printed by the thread that is actually serving the
1015     connection which is nice when grepping for thread ids in log files.
1016
1017 - Code cleanups:
1018   - Remove compatibility layer for versions prior to 3.0 since it has been
1019     obsolete for more than 10 years now.
1020   - Remove the ijb_isupper() and ijb_tolower() macros from parsers.c since
1021     they aren't used in this file.
1022   - Removed the 'Functions declared include:' comment sections since they tend
1023     to be incomplete, incorrect and out of date and the benefit seems
1024     questionable.
1025   - Various comment grammar and comprehensibility improvements.
1026   - Remove a pointless fflush() call in chat(). Flushing all streams pretty
1027     much all the time for no obvious reason is ridiculous.
1028   - Relocate ijb_isupper()'s definition to project.h and get the ijb_tolower()
1029     definition from there, too.
1030   - Relocate ijb_isdigit()'s definition to project.h.
1031   - Rename ijb_foo macros to privoxy_foo.
1032   - Add malloc_or_die() which will allow to simplify code paths where malloc()
1033     failures don't need to be handled gracefully.
1034   - Add strdup_or_die() which will allow to simplify code paths where strdup()
1035     failures don't need to be handled gracefully.
1036   - Replace strdup() calls with strdup_or_die() calls where it's safe and
1037     simplifies the code.
1038   - Fix white-space around parentheses.
1039   - Add missing white-space behind if's and the following parentheses.
1040   - Unwrap a memcpy() call in resolve_hostname_to_ip().
1041   - Declare pcrs_get_delimiter()'s delimiters[] static const.
1042   - Various optimisations to remove dead code and merge inefficient code
1043     structures for improved clarity, performance or code compactness.
1044   - Various data type corrections.
1045   - Change visibility of several code segments when compiling without
1046     FEATURE_CONNECTION_KEEP_ALIVE enabled for clarity.
1047   - In pcrs_get_delimiter(), do not use delimiters outside the ASCII range.
1048     Fixes a clang complaint.
1049   - Fix an error message in get_last_url() nobody is supposed to see.
1050     Reported by Matthew Fischer in #3507301.
1051   - Fix a typo in the no-zlib-support complaint. Patch submitted by Matthew
1052     Fischer in #3507304.
1053   - Shorten ssplit()'s prototype by removing the last two arguments. We always
1054     want to skip empty fields and ignore leading delimiters, so having
1055     parameters for this only complicates the API.
1056   - Use an enum for the type of the action value.
1057   - Rename action_name's member takes_value to value_type as it isn't used as
1058     boolean.
1059   - Turn family mismatches in match_sockaddr() into fatal errors.
1060   - Let enlist_unique_header() verify that the caller didn't pass a header
1061     containing either \r or \n.
1062   - Change the hashes used in load_config() to unsigned int. That's what
1063     hash_string() actually returns and using a potentially larger type
1064     is at best useless.
1065   - Use privoxy_tolower() instead of vanilla tolower() with manual casting of
1066     the argument.
1067   - Catch ssplit() failures in parse_cgi_parameters().
1068
1069 - Privoxy-Regression-Test:
1070   - Add an 'Overwrite condition' directive to skip any matching tests before
1071     it. As it has a global scope, using it is more convenient than clowning
1072     around with the Ignore directive.
1073   - Log to STDOUT instead of STDERR.
1074   - Include the Privoxy version in the output.
1075   - Various grammar and spelling corrections in documentation and code.
1076   - Additional tests for range requests with filtering enabled.
1077   - Tests with mostly invalid range request.
1078   - Add a couple of hide-if-modified-since{} tests with different date formats.
1079   - Cleaned up the format of the regression-tests.action file to match the
1080     format of default.action.
1081   - Remove the "Copyright" line from print_version(). When using --help, every
1082     line of screen space matters and thus shouldn't be wasted on things the
1083     user doesn't care about.
1084
1085 - Privoxy-Log-Parser:
1086   - Improve the --statistics performance by skipping sanity checks for input
1087     that shouldn't affect the results anyway. Add a --strict-checks option
1088     that enables some of the checks again, just in case anybody cares.
1089   - The distribution of client requests per connection is included in
1090     the --statistic output.
1091   - The --accept-unknown-messages option has been removed and the behavior
1092     is now the default.
1093   - Accept and (mostly) highlight new log messages introduced with
1094     Privoxy 3.0.20.
1095
1096 - uagen:
1097   - Bump generated Firefox version to 17.
1098
1099 - GNUmakefile improvements:
1100   - The dok-tidy target no longer taints documents with a tidy-mark
1101   - Change RA_MODE from 0664 to 0644. Suggested by Markus Dittrich in
1102     #3505445.
1103   - Remove tidy's clean flag as it changes the scope of attributes.
1104     Link-specific colors end up being applied to all text. Reported by Adam
1105     Piggott in #3569551.
1106   - Leave it up to the user whether or not smart tags are inserted.
1107   - Let w3m itself do the line wrapping for the config file. It works better
1108     than fmt as it can honour pre tags causing less unintentional line breaks.
1109   - Ditch a pointless '-r' passed to rm to delete files.
1110   - The config-file target now requires less manual intervention and updates
1111     the original config.
1112   - Change WDUMP to generate ASCII. Add WDUMP_UTF8 to allow UTF-8 in the
1113     AUTHORS file so the names are right.
1114   - Stop pretending that lynx and links are supported for the documentation.
1115
1116 - configure improvements:
1117   - On Haiku, do not pass -lpthread to the compiler. Haiku's pthreads
1118     implementation is contained in its system library, libroot, so no
1119     additional library needs to be searched.
1120     Patch submitted by Simon South in #3564815.
1121   - Additional Haiku-specific improvements. Disable checks intended for
1122     multi-user systems as Haiku is presently single-user. Group Haiku-specific
1123     settings in their own section, following the pattern for Solaris, OS/2 and
1124     AmigaOS. Add additional library-related settings to remove the need for
1125     providing configure with custom LDFLAGS.
1126     Submitted by Simon South in #3574538.
1127
1128 *** Version 3.0.19 Stable ***
1129
1130 - Bug fixes:
1131   - Prevent a segmentation fault when de-chunking buffered content.
1132     It could be triggered by malicious web servers if Privoxy was
1133     configured to filter the content and running on a platform
1134     where SIZE_T_MAX isn't larger than UINT_MAX, which probably
1135     includes most 32-bit systems. On those platforms, all Privoxy
1136     versions before 3.0.19 appear to be affected.
1137     To be on the safe side, this bug should be presumed to allow
1138     code execution as proving that it doesn't seems unrealistic.
1139   - Do not expect a response from the SOCKS4/4A server until it
1140     got something to respond to. This regression was introduced
1141     in 3.0.18 and prevented the SOCKS4/4A negotiation from working.
1142     Reported by qqqqqw in #3459781.
1143
1144 - General improvements:
1145   - Fix an off-by-one in an error message about connect failures.
1146   - Use a GNUMakefile variable for the webserver root directory and
1147     update the path. Sourceforge changed it which broke various
1148     web-related targets.
1149   - Update the CODE_STATUS description.
1150
1151 *** Version 3.0.18 Stable ***
1152
1153 - Bug fixes:
1154   - If a generated redirect URL contains characters RFC 3986 doesn't
1155     permit, they are (re)encoded. Not doing this makes Privoxy versions
1156     from 3.0.5 to 3.0.17 susceptible to HTTP response splitting (CWE-113)
1157     attacks if the +fast-redirects{check-decoded-url} action is used.
1158   - Fix a logic bug that could cause Privoxy to reuse a server
1159     socket after it got tainted by a server-header-tagger-induced
1160     block that was triggered before the whole server response had
1161     been read. If keep-alive was enabled and the request following
1162     the blocked one was to the same host and using the same forwarding
1163     settings, Privoxy would send it on the tainted server socket.
1164     While the server would simply treat it as a pipelined request,
1165     Privoxy would later on fail to properly parse the server's
1166     response as it would try to parse the unread data from the
1167     first response as server headers for the second one.
1168     Regression introduced in 3.0.17.
1169   - When implying keep-alive in client_connection(), remember that
1170     the client didn't. Fixes a regression introduced in 3.0.13 that
1171     would cause Privoxy to wait for additional client requests after
1172     receiving a HTTP/1.1 request with "Connection: close" set
1173     and connection sharing enabled.
1174     With clients which terminates the client connection after detecting
1175     that the whole body has been received it doesn't really matter,
1176     but with clients that don't the connection would be kept open until
1177     it timed out.
1178   - Fix a subtle race condition between prepare_csp_for_next_request()
1179     and sweep(). A thread preparing itself for the next client request
1180     could briefly appear to be inactive.
1181     If all other threads were already using more recent files,
1182     the thread could get its files swept away under its feet.
1183     So far this has only been reproduced while stress testing in
1184     valgrind while touching action files in a loop. It's unlikely
1185     to have caused any actual problems in the real world.
1186   - Disable filters if SDCH compression is used unless filtering is forced.
1187     If SDCH was combined with a supported compression algorithm, Privoxy
1188     previously could try to decompress it and ditch the Content-Encoding
1189     header even though the SDCH compression wasn't dealt with.
1190     Reported by zebul666 in #3225863.
1191   - Make a copy of the --user value and only mess with that when splitting
1192     user and group. On some operating systems modifying the value directly
1193     is reflected in the output of ps and friends and can be misleading.
1194     Reported by zepard in #3292710.
1195   - If forwarded-connect-retries is set, only retry if Privoxy is actually
1196     forwarding the request. Previously direct connections would be retried
1197     as well.
1198   - Fixed a small memory leak when retrying connections with IPv6
1199     support enabled.
1200   - Remove an incorrect assertion in compile_dynamic_pcrs_job_list()
1201     It could be triggered by a pcrs job with an invalid pcre
1202     pattern (for example one that contains a lone quantifier).
1203   - If the --user argument user[.group] contains a dot, always bail out
1204     if no group has been specified. Previously the intended, but undocumented
1205     (and apparently untested), behaviour was to try interpreting the whole
1206     argument as user name, but the detection was flawed and checked for '0'
1207     instead of '\0', thus merely preventing group names beginning with a zero.
1208   - In html_code_map[], use a numeric character reference instead of '
1209     which wasn't standardized before XHTML 1.0.
1210   - Fix an invalid free when compiled with FEATURE_GRACEFUL_TERMINATION
1211     and shut down through http://config.privoxy.org/die
1212   - In get_actions(), fix the "temporary" backwards compatibility hack
1213     to accept block actions without reason.
1214     It also covered other actions that should be rejected as invalid.
1215     Reported by Billy Crook.
1216
1217 - General improvements:
1218   - Privoxy can (re)compress buffered content before delivering
1219     it to the client. Disabled by default as most users wouldn't
1220     benefit from it.
1221   - The +fast-redirects{check-decoded-url} action checks URL
1222     segments separately. If there are other parameters behind
1223     the redirect URL, this makes it unnecessary to cut them off
1224     by additionally using a +redirect{} pcrs command.
1225     Initial patch submitted by Jamie Zawinski in #3429848.
1226   - When loading action sections, verify that the referenced filters
1227     exist. Currently missing filters only result in an error message,
1228     but eventually the severity will be upgraded to fatal.
1229   - Allow to bind to multiple separate addresses.
1230     Patch set submitted by Petr Pisar in #3354485.
1231   - Set socket_error to errno if connecting fails in rfc2553_connect_to().
1232     Previously rejected direct connections could be incorrectly reported
1233     as DNS issues if Privoxy was compiled with IPv6 support.
1234   - Adjust url_code_map[] so spaces are replaced with %20 instead of '+'
1235     While '+' can be used by client's submitting form data, this is not
1236     actually what Privoxy is using the lookups for. This is more of a
1237     cosmetic issue and doesn't fix any known problems.
1238   - When compiled without FEATURE_FAST_REDIRECTS, do not silently
1239     ignore +fast-redirect{} directives
1240   - Added a workaround for GNU libc's strptime() reporting negative
1241     year values when the parsed year is only specified with two digits.
1242     On affected systems cookies with such a date would not be turned
1243     into session cookies by the +session-cookies-only action.
1244     Reported by Vaeinoe in #3403560
1245   - Fixed bind failures with certain GNU libc versions if no non-loopback
1246     IP address has been configured on the system. This is mainly an issue
1247     if the system is using DHCP and Privoxy is started before the network
1248     is completely configured.
1249     Reported by Raphael Marichez in #3349356.
1250     Additional insight from Petr Pisar.
1251   - Privoxy log messages now use the ISO 8601 date format %Y-%m-%d.
1252     It's only slightly longer than the old format, but contains
1253     the full date including the year and allows sorting by date
1254     (when grepping in multiple log files) without hassle.
1255   - In get_last_url(), do not bother trying to decode URLs that do
1256     not contain at least one '%' sign. It reduces the log noise and
1257     a number of unnecessary memory allocations.
1258   - In case of SOCKS5 failures, dump the socks response in the log message.
1259   - Simplify the signal setup in main().
1260   - Streamline socks5_connect() slightly.
1261   - In socks5_connect(), require a complete socks response from the server.
1262     Previously Privoxy didn't care how much data the server response
1263     contained as long as the first two bytes contained the expected
1264     values. While at it, shrink the buffer size so Privoxy can't read
1265     more than a whole socks response.
1266   - In chat(), do not bother to generate a client request in case of
1267     direct CONNECT requests. It will not be used anyway.
1268   - Reduce server_last_modified()'s stack size.
1269   - Shorten get_http_time() by using strftime().
1270   - Constify the known_http_methods pointers in unknown_method().
1271   - Constify the time_formats pointers in parse_header_time().
1272   - Constify the formerly_valid_actions pointers in action_used_to_be_valid().
1273   - Introduce a GNUMakefile MAN_PAGE variable that defaults to privoxy.1.
1274     The Debian package uses section 8 for the man page and this
1275     should simplify the patch.
1276   - Deduplicate the INADDR_NONE definition for Solaris by moving it to jbsockets.h
1277   - In block_url(), ditch the obsolete workaround for ancient Netscape versions
1278     that supposedly couldn't properly deal with status code 403.
1279   - Remove a useless NULL pointer check in load_trustfile().
1280   - Remove two useless NULL pointer checks in load_one_re_filterfile().
1281   - Change url_code_map[] from an array of pointers to an array of arrays
1282     It removes an unnecessary layer of indirection and on 64bit system reduces
1283     the size of the binary a bit.
1284   - Fix various typos. Fixes taken from Debian's 29_typos.dpatch by Roland Rosenfeld.
1285   - Add a dok-tidy GNUMakefile target to clean up the messy HTML
1286     generated by the other dok targets.
1287   - GNUisms in the GNUMakefile have been removed.
1288   - Change the HTTP version in static responses to 1.1
1289   - Synced config.sub and config.guess with upstream
1290     2011-11-11/386c7218162c145f5f9e1ff7f558a3fbb66c37c5.
1291   - Add a dedicated function to parse the values of toggles. Reduces duplicated
1292     code in load_config() and provides better error handling. Invalid or missing
1293     toggle values are now a fatal error instead of being silently ignored.
1294   - Terminate HTML lines in static error messages with \n instead of \r\n.
1295   - Simplify cgi_error_unknown() a bit.
1296   - In LogPutString(), don't bother looking at pszText when not
1297     actually logging anything.
1298   - Change ssplit()'s fourth parameter from int to size_t.
1299     Fixes a clang complaint.
1300   - Add a warning that the statistics currently can't be trusted.
1301     Mention Privoxy-Log-Parser's --statistics option as
1302     an alternative for the time being.
1303   - In rfc2553_connect_to(), start setting cgi->error_message on error.
1304   - Change the expected status code returned for http://p.p/die depending
1305     on whether or not FEATURE_GRACEFUL_TERMINATION is available.
1306   - In cgi_die(), mark the client connection for closing.
1307     If the client will fetch the style sheet through another connection
1308     it gets the main thread out of the accept() state and should thus
1309     trigger the actual shutdown.
1310   - Add a proper CGI message for cgi_die().
1311   - Don't enforce a logical line length limit in read_config_line().
1312   - Slightly refactor server_last_modified() to remove useless gmtime*() calls.
1313   - In get_content_type(), also recognize '.jpeg' as JPEG extension.
1314   - Add '.png' to the list of recognized file extensions in get_content_type().
1315   - In block_url(), consistently use the block reason "Request blocked by Privoxy"
1316     In two places the reason was "Request for blocked URL" which hides the
1317     fact that the request got blocked by Privoxy and isn't necessarily
1318     correct as the block may be due to tags.
1319   - In listen_loop(), reload the configuration files after accepting
1320     a new connection instead of before.
1321     Previously the first connection that arrived after a configuration
1322     change would still be handled with the old configuration.
1323   - In chat()'s receive-data loop, skip a client socket check if
1324     the socket will be written to right away anyway. This can
1325     increase the transfer speed for unfiltered content on fast
1326     network connections.
1327   - The socket timeout is used for SOCKS negotiations as well which
1328     previously couldn't timeout.
1329   - Don't keep the client connection alive if any configuration file
1330     changed since the time the connection came in. This is closer to
1331     Privoxy's behaviour before keep-alive support for client connection
1332     has been added and also less confusing in general.
1333   - Treat all Content-Type header values containing the pattern
1334     'script' as a sign of text. Reported by pribog in #3134970.
1335
1336 - Action file improvements:
1337   - Moved the site-specific block pattern section below the one for the
1338     generic patterns so for requests that are matched in both, the block
1339     reason for the domain is shown which is usually more useful than showing
1340     the one for the generic pattern.
1341   - Remove -prevent-compression from the fragile alias. It's no longer
1342     used anywhere by default and isn't known to break stuff anyway.
1343   - Add a (disabled) section to block various Facebook tracking URLs.
1344     Reported by Dan Stahlke in #3421764.
1345   - Add a (disabled) section to rewrite and redirect click-tracking
1346     URLs used on news.google.com.
1347     Reported by Dan Stahlke in #3421755.
1348   - Unblock linuxcounter.net/.
1349     Reported by Dan Stahlke in #3422612.
1350   - Block 'www91.intel.com/' which is used by Omniture.
1351     Reported by Adam Piggott in #3167370.
1352   - Disable the handle-as-empty-doc-returns-ok option and mark it as deprecated.
1353     Reminded by tceverling in #2790091.
1354   - Add ".ivwbox.de/" to the "Cross-site user tracking" section.
1355     Reported by Nettozahler in #3172525.
1356   - Unblock and fast-redirect ".awin1.com/.*=http://".
1357     Reported by Adam Piggott in #3170921.
1358   - Block "b.collective-media.net/".
1359   - Widen the Debian popcon exception to "qa.debian.org/popcon".
1360     Seen in Debian's 05_default_action.dpatch by Roland Rosenfeld.
1361   - Block ".gemius.pl/" which only seems to be used for user tracking.
1362     Reported by johnd16 in #3002731. Additional input from Lee and movax.
1363   - Disable banners-by-size filters for '.thinkgeek.com/'.
1364     The filter only seems to catch pictures of the inventory.
1365   - Block requests for 'go.idmnet.bbelements.com/please/showit/'.
1366     Reported by kacperdominik in #3372959.
1367   - Unblock adainitiative.org/.
1368   - Add a fast-redirects exception for '.googleusercontent.com/.*=cache'.
1369   - Add a fast-redirects exception for webcache.googleusercontent.com/.
1370   - Unblock http://adassier.wordpress.com/ and http://adassier.files.wordpress.com/.
1371
1372 - Filter file improvements:
1373   - Let the yahoo filter hide '.ads'.
1374   - Let the msn filter hide overlay ads for Facebook 'likes' in search
1375     results and elements with the id 's_notf_div'. They only seem to be
1376     used to advertise site 'enhancements'.
1377   - Let the js-events filter additionally disarm setInterval().
1378     Suggested by dg1727 in #3423775.
1379
1380 - Documentation improvements:
1381   - Clarify the effect of compiling Privoxy with zlib support.
1382     Suggested by dg1727 in #3423782.
1383   - Point out that the SourceForge messaging system works like a black
1384     hole and should thus not be used to contact individual developers.
1385   - Mention some of the problems one can experience when not explicitly
1386     configuring an IP addresses as listen address.
1387   - Explicitly mention that hostnames can be used instead of IP addresses
1388     for the listen-address, that only the first address returned will be
1389     used and what happens if the address is invalid.
1390     Requested by Calestyo in #3302213.
1391
1392 - Log message improvements:
1393   - If only the server connection is kept alive, do not pretend to
1394     wait for a new client request.
1395   - Remove a superfluous log message in forget_connection().
1396   - In chat(), properly report missing server responses as such
1397     instead of calling them empty.
1398   - In forwarded_connect(), fix a log message nobody should ever see.
1399   - Fix a log message in socks5_connect(), a failed write operation
1400     was logged as failed read operation.
1401   - Let load_one_actions_file() properly complain about a missing
1402     '{' at the beginning of the file.
1403     Simply stating that a line is invalid isn't particularly helpful.
1404   - Do not claim to listen on a socket until Privoxy actually does.
1405     Patch submitted by Petr Pisar #3354485
1406   - Prevent a duplicated LOG_LEVEL_CLF message when sending out
1407     the "no-server-data" response.
1408   - Also log the client socket when dropping a connection.
1409   - Include the destination host in the 'Request ... marked for
1410     blocking. limit-connect{...} doesn't allow CONNECT ...' message
1411     Patch submitted by Saperski in #3296250.
1412   - Prevent a duplicated log message if none of the resolved IP
1413     addresses were reachable.
1414   - In connect_to(), do not pretend to retry if forwarded-connect-retries
1415     is zero or unset.
1416   - When a specified user or group can't be found, put the name in
1417     single-quotes when logging it.
1418   - In rfc2553_connect_to(), explain getnameinfo() errors better.
1419   - Remove a useless log message in chat().
1420   - When retrying to connect, also log the maximum number of connection
1421     attempts.
1422   - Rephrase a log message in compile_dynamic_pcrs_job_list().
1423     Divide the error code and its meaning with a colon. Call the pcrs
1424     job dynamic and not the filter. Filters may contain dynamic and
1425     non-dynamic pcrs jobs at the same time. Only mention the name of
1426     the filter or tagger, but don't claim it's a filter when it could
1427     be a tagger.
1428   - In a fatal error message in load_one_actions_file(), cover both
1429     URL and TAG patterns.
1430   - In pcrs_strerror(), properly report unknown positive error code
1431     values as such. Previously they were handled like 0 (no error).
1432   - In compile_dynamic_pcrs_job_list(), also log the actual error code as
1433     pcrs_strerror() doesn't handle all errors reported by pcre.
1434   - Don't bother trying to continue chatting if the client didn't ask for it.
1435     Reduces log noise a bit.
1436   - Make two fatal error message in load_one_actions_file() more descriptive.
1437   - In cgi_send_user_manual(), log when rejecting a file name due to '/' or '..'.
1438   - In load_file(), log a message if opening a file failed.
1439     The CGI error message alone isn't too helpful.
1440   - In connection_destination_matches(), improve two log messages
1441     to help understand why the destinations don't match.
1442   - Rephrase a log message in serve(). Client request arrival
1443     should be differentiated from closed client connections now.
1444   - In serve(), log if a client connection isn't reused due to a
1445     configuration file change.
1446   - Let mark_server_socket_tainted() always mark the server socket tainted,
1447     just don't talk about it in cases where it has no effect. It doesn't change
1448     Privoxy's behaviour, but makes understanding the log file easier.
1449
1450 - configure:
1451   - Added a --disable-ipv6-support switch for platforms where support
1452     is detected but doesn't actually work.
1453   - Do not check for the existence of strerror() and memmove() twice
1454   - Remove a useless test for setpgrp(2). Privoxy doesn't need it and
1455     it can cause problems when cross-compiling.
1456   - Rename the --disable-acl-files switch to --disable-acl-support.
1457     Since about 2001, ACL directives are specified in the standard
1458     config file.
1459   - Update the URL of the 'Removing outdated PCRE version after the
1460     next stable release' posting. The old URL stopped working after
1461     one of SF's recent site "optimizations". Reported by Han Liu.
1462
1463 - Privoxy-Regression-Test:
1464   - Added --shuffle-tests option to increase the chances of detection race conditions.
1465   - Added a --local-test-file option that allows to use Privoxy-Regression-Test without Privoxy.
1466   - Added tests for missing socks4 and socks4a forwarders.
1467   - The --privoxy-address option now works with IPv6 addresses containing brackets, too.
1468   - Perform limited sanity checks for parameters that are supposed to have numerical values.
1469   - Added a --sleep-time option to specify a number of seconds to
1470     sleep between tests, defaults to 0.
1471   - Disable the range-requests tagger for tests that break if it's enabled.
1472   - Log messages use the ISO 8601 date format %Y-%m-%d.
1473   - Fix spelling in two error messages.
1474   - In the --help output, include a list of supported tests and their default levels.
1475   - Adjust the tests to properly deal with FEATURE_TOGGLE being disabled.
1476
1477 - Privoxy-Log-Parser:
1478   - Perform limited sanity checks for command line parameters that
1479     are supposed to have numerical values.
1480   - Implement a --unbreak-lines-only option to try to revert MUA breakage.
1481   - Accept and highlight: Added header: Content-Encoding: deflate
1482   - Accept and highlight: Compressed content from 29258 to 8630 bytes.
1483   - Accept and highlight: Client request arrived in time on socket 21.
1484   - Highlight: Didn't receive data in time: a.fsdn.com:443
1485   - Accept log messages with ISO 8601 time stamps, too.
1486
1487 - uagen:
1488   - Bump generated Firefox version to 8.0.
1489   - Only randomize the release date if the new --randomize-release-date
1490     option is enabled. Firefox versions after 4 use a fixed date string
1491     without meaning.
1492
1493 *** Version 3.0.17 Stable ***
1494
1495 - Fixed last-chunk-detection for responses where the body was small
1496   enough to be read with the headers, causing Privoxy to wait for the
1497   end of the content until the server closed the connection or the
1498   request timed out. Reported by "Karsten" in #3028326.
1499 - Responses with status code 204 weren't properly detected as body-less
1500   like RFC2616 mandates. Like the previous bug, this caused Privoxy to
1501   wait for the end of the content until the server closed the connection
1502   or the request timed out. Fixes #3022042 and #3025553, reported by a
1503   user with no visible name. Most likely also fixes a bunch of other
1504   AJAX-related problem reports that got closed in the past due to
1505   insufficient information and lack of feedback.
1506 - Fixed an ACL bug that made it impossible to build a blacklist.
1507   Usually the ACL directives are used in a whitelist, which worked
1508   as expected, but blacklisting is still useful for public proxies
1509   where one only needs to deny known abusers access.
1510 - Added LOG_LEVEL_RECEIVED to log the not-yet-parsed data read from the
1511   network. This should make debugging various parsing issues a lot easier.
1512 - The IPv6 code is enabled by default on Windows versions that support it.
1513   Patch submitted by oCameLo in #2942729.
1514 - In mingw32 versions, the user.filter file is reachable through the
1515   GUI, just like default.filter is. Feature request 3040263.
1516 - Added the configure option --enable-large-file-support to set a few
1517   defines that are required by platforms like GNU/Linux to support files
1518   larger then 2GB. Mainly interesting for users without proper logfile
1519   management.
1520 - Logging with "debug 16" no longer stops at the first nul byte which is
1521   pretty useless. Non-printable characters are replaced with their hex value
1522   so the result can't span multiple lines making parsing them harder then
1523   necessary.
1524 - Privoxy logs when reading an action, filter or trust file.
1525 - Fixed incorrect regression test markup which caused a test in
1526   3.0.16 to fail while Privoxy itself was working correctly.
1527   While Privoxy accepts hide-referer, too, the action name is actually
1528   hide-referrer which is also the name used one the final results page,
1529   where the test expected the alias.
1530
1531 - CGI interface improvements:
1532   - In finish_http_response(), continue to add the 'Connection: close'
1533     header if the client connection will not be kept alive.
1534     Anonymously pointed out in #2987454.
1535   - Apostrophes in block messages no longer cause parse errors
1536     when the blocked page is viewed with JavaScript enabled.
1537     Reported by dg1727 in #3062296.
1538   - Fix a bunch of anchors that used underscores instead of dashes.
1539   - Allow to keep the client connection alive after crunching the previous request.
1540     Already opened server connections can be kept alive, too.
1541   - In cgi_show_url_info(), don't forget to prefix URLs that only contain
1542     http:// or https:// in the path. Fixes #2975765 reported by Adam Piggott.
1543   - Show the 404 CGI page if cgi_send_user_manual() is called while
1544     local user manual delivery is disabled.
1545
1546 - Action file improvements:
1547   - Enable user.filter by default. Suggested by David White in #3001830.
1548   - Block .sitestat.com/. Reported by johnd16 in #3002725.
1549   - Block .atemda.com/. Reported by johnd16 in #3002723.
1550   - Block js.adlink.net/. Reported by johnd16 in #3002720.
1551   - Block .analytics.yahoo.com/. Reported by johnd16 in #3002713.
1552   - Block sb.scorecardresearch.com, too. Reported by dg1727 in #2992652.
1553   - Fix problems noticed on Yahoo mail and news pages.
1554   - Remove the too broad yahoo section, only keeping the
1555     fast-redirects exception as discussed on ijbswa-devel@.
1556   - Don't block adesklets.sourceforge.net. Reported in #2974204.
1557   - Block chartbeat ping tracking. Reported in #2975895.
1558   - Tag CSS and image requests with cautious and medium settings, too.
1559   - Don't handle view.atdmt.com as image. It's used for click-throughs
1560     so users should be able to "go there anyway".
1561     Reported by Adam Piggott in #2975927.
1562   - Also let the refresh-tags filter remove invalid refresh tags where
1563     the 'url=' part is missing. Anonymously reported in #2986382.
1564     While at it, update the description to mention the fact that only
1565     refresh tags with refresh times above 9 seconds are covered.
1566   - javascript needs to be blocked with +handle-as-empty-document to
1567     work around Firefox bug 492459.  So move .js blockers from
1568     +block{Might be a web-bug.} -handle-as-empty-document to
1569     +block{Might be a web-bug.} +handle-as-empty-document.
1570   - ijbswa-Feature Requests-3006719 - Block 160x578 Banners.
1571   - Block another omniture tracking domain.
1572   - Added a range-requests tagger.
1573   - Added two sections to get Flickr's Ajax interface working with
1574     default pre-settings. If you change the configuration to block
1575     cookies by default, you'll need additional exceptions.
1576     Reported by Mathias Homann in #3101419 and by Patrick on ijbswa-users@.
1577
1578 - Documentation improvements:
1579   - Explicitly mention how to match all URLs.
1580   - Consistently recommend socks5 in the Tor FAQ entry and mention
1581     its advantage compared to socks4a. Reported by David in #2960129.
1582   - Slightly improve the explanation of why filtering may appear
1583     slower than it is.
1584   - Grammar fixes for the ACL section.
1585   - Fixed a link to the 'intercepting' entry and add another one.
1586   - Rename the 'Other' section to 'Mailing Lists' and reword it
1587     to make it clear that nobody is forced to use the trackers
1588   - Note that 'anonymously' posting on the trackers may not always
1589     be possible.
1590   - Suggest to enable debug 32768 when suspecting parsing problems.
1591
1592 - Privoxy-Log-Parser improvements:
1593   - Gather statistics for ressources, methods, and HTTP versions
1594     used by the client.
1595   - Also gather statistics for blocked and redirected requests.
1596   - Provide the percentage of keep-alive offers the client accepted.
1597   - Add a --url-statistics-threshold option.
1598   - Add a --host-statistics-threshold option to also gather
1599     statistics about how many request where made per host.
1600   - Fix a bug in handle_loglevel_header() where a 'scan: ' got lost.
1601   - Add a --shorten-thread-ids option to replace the thread id with
1602     a decimal number.
1603   - Accept and ignore: Looks like we got the last chunk together
1604     with the server headers. We better stop reading.
1605   - Accept and ignore: Continue hack in da house.
1606   - Accept and higlight: Rejecting connection from 10.0.0.2.
1607     Maximum number of connections reached.
1608   - Accept and highlight: Loading actions file: /usr/local/etc/privoxy/default.action
1609   - Accept and highlight: Loading filter file: /usr/local/etc/privoxy/default.filter
1610   - Accept and highlight: Killed all-caps Host header line: HOST: bestproxydb.com
1611   - Accept and highlight: Reducing expected bytes to 0. Marking
1612     the server socket tainted after throwing 4 bytes away.
1613   - Accept: Merged multiple header lines to: 'X-FORWARDED-PROTO: http X-HOST: 127.0.0.1'
1614
1615 - Code cleanups:
1616   - Remove the next member from the client_state struct. Only the main
1617     thread needs access to all client states so give it its own struct.
1618   - Garbage-collect request_contains_null_bytes().
1619   - Ditch redundant code in unload_configfile().
1620   - Ditch LogGetURLUnderCursor() which doesn't seem to be used anywhere.
1621   - In write_socket(), remove the write-only variable write_len in
1622     an ifdef __OS2__ block. Spotted by cppcheck.
1623   - In connect_to(), don't declare the variable 'flags' on OS/2 where
1624     it isn't used. Spotted by cppcheck.
1625   - Limit the scope of various variables. Spotted by cppcheck.
1626   - In add_to_iob(), turn an interestingly looking for loop into a
1627     boring while loop.
1628   - Code cleanup in preparation for external filters.
1629   - In listen_loop(), mention the socket on which we accepted the
1630     connection, not just the source IP address.
1631   - In write_socket(), also log the socket we're writing to.
1632   - In log_error(), assert that escaped characters get logged
1633     completely or not at all.
1634   - In log_error(), assert that ival and sval have reasonable values.
1635     There's no reason not to abort() if they don't.
1636   - Remove an incorrect cgi_error_unknown() call in a
1637     cannot-happen-situation in send_crunch_response().
1638   - Clean up white-space in http_response definition and
1639     move the crunch_reason to the beginning.
1640   - Turn http_response.reason into an enum and rename it
1641     to http_response.crunch_reason.
1642   - Silence a 'gcc (Debian 4.3.2-1.1) 4.3.2' warning on i686 GNU/Linux.
1643   - Fix white-space in a log message in remove_chunked_transfer_coding().
1644     While at it, add a note that the message doesn't seem to
1645     be entirely correct and should be improved later on.
1646
1647 - GNUmakefile improvements:
1648   - Use $(SSH) instead of ssh, so one only needs to specify a username once.
1649   - Removed references to the action feedback thingy that hasn't been
1650     working for years.
1651   - Consistently use shell.sourceforge.net instead of shell.sf.net so
1652     one doesn't need to check server fingerprints twice.
1653   - Removed GNUisms in the webserver and webactions targets so they
1654     work with standard tar.
1655
1656 *** Version 3.0.16 Stable ***
1657
1658 - Added the config file option handle-as-empty-doc-returns-ok to
1659   work around Firefox bug #492459, which causes Firefox to hang
1660   if JavaScripts are blocked in certain situations. The option is
1661   enabled in the default config file.
1662 - Added the config file option default-server-timeout to control the
1663   assumed default server timeout. Since Privoxy no longer returns
1664   an error message for connection resets on reused client connections,
1665   assuming larger server timeout values appears to actually work
1666   pretty well as long as connections aren't shared.
1667 - Added optional support for FreeBSD's accf_http(9). Use the
1668   configure option --enable-accept-filter to enable it.
1669 - Added fancier Privoxy icons for win32. Contributed by Jeff H.
1670 - In daemon mode, fd 0, 1 and 2 are bound to /dev/null.
1671 - Resolve localhost using whatever address family the operating
1672   system feels like. Previous betas would try to use IPv4 as this
1673   is what most users expect, but this didn't work reliably on
1674   GNU/Linux systems.
1675 - In the action lists on CGI pages, actions and their parameters are
1676   no longer separated with a space. The action file parser doesn't
1677   actually allow this and will throw an invalid syntax error if actions
1678   and parameters in the action files are separated. Not adding the
1679   spaces means copy and pasting CGI output into the action files works.
1680 - The default keep-alive timeout has been reduced to 5 seconds to work
1681   around hangs in clients that treat the proxy like any other host and
1682   stop allowing any new connections if the "maximum number of
1683   connections per host" is reached.
1684 - Several webbug URLs that look like they are leading to images are now
1685   blocked as image instead of empty documents. Doing the latter causes
1686   WebKit-based clients to show a "missing image" icon which may mess up
1687   the layout.
1688 - The no-such-domain template is used for DNS resolution
1689   problems with FEATURE_IPV6_SUPPORT enabled. Previously the
1690   connect-failed template was used. Reported by 'zebul666'.
1691 - Accepts quoted expiration dates even though RFC 2109 10.1.2
1692   doesn't seem to allow them. Reported anonymously.
1693 - Don't try to forget connections if connection sharing is disabled.
1694   This wasn't a real problem but caused an unnecessary log message.
1695 - The still undocumented --enable-extended-host-patterns configure
1696   option has a better description.
1697 - Fixed an error message that would claim a write to the server
1698   failed when actually writing to the client failed.
1699 - Log the crunch reason before trying to write to the client.
1700   The log is easier to read that way.
1701 - Several log messages about client connections also mention
1702   the socket number.
1703 - handle-as-empty-document no longer depends on the image blocking
1704   code being enabled.
1705 - Privoxy-Log-Parser is roughly 40% faster in highlighting mode.
1706 - uagen, a Firefox User-Agent generator for Privoxy and Mozilla
1707   browsers has been imported and is available in the tarball's
1708   tools directory.
1709 - The scripts in the tools directory treat unknown parameters
1710   as fatal errors.
1711
1712 *** Version 3.0.15 beta ***
1713
1714 - In case of missing server data, no error message is send to the
1715   client if the request arrived on a reused connection. The client
1716   is then supposed to silently retry the request without bothering
1717   the user. This should significantly reduce the frequency of the
1718   "No server or forwarder data received" error message many users
1719   reported.
1720 - More reliable detection of prematurely closed client sockets
1721   with keep-alive enabled.
1722 - FEATURE_CONNECTION_KEEP_ALIVE is decoupled from
1723   FEATURE_CONNECTION_SHARING and now available on
1724   all platforms.
1725 - Improved handling of POST requests on reused connections.
1726   Should fix problems with stalled connections after submitting
1727   form data with some browser configurations.
1728 - Fixed various latency calculation issues.
1729 - Allows the client to pass NTLM authentication requests to a
1730   forwarding proxy. This was already assumed and hinted to work
1731   in 3.0.13 beta but actually didn't. Now it's confirmed to work
1732   with IE, Firefox and Chrome.
1733   Thanks to Francois Botha and Wan-Teh Chang
1734 - Fixed a calculation problem if receiving the server headers
1735   takes more than two reads, that could cause Privoxy to terminate
1736   the connection prematurely. Reported by Oliver.
1737 - Compiles again on platforms such as OpenBSD and systems
1738   using earlier glibc version that don't support AI_ADDRCONFIG.
1739   Anonymously submitted in #2872591.
1740 - A bunch of MS VC project files and Suse and Redhat RPM spec
1741   files have been removed as they were no longer maintained for
1742   quite some time.
1743 - Overly long action lines are properly rejected with a proper
1744   error message. Previously they would be either rejected as
1745   invalid or cause a core dump through abort().
1746 - Already timed-out connections are no longer temporarily remembered.
1747   They weren't reused anyway, but wasted a socket slot.
1748 - len refers to the number of bytes actually read which might
1749   differ from the ones received. Adjust log messages accordingly.
1750 - The optional JavaScript on the CGI page uses encodeURIComponent()
1751   instead of escape() which doesn't encode all characters that matter.
1752   Anonymously reported in #2832722.
1753 - Fix gcc45 warnings in decompress_iob().
1754 - Various log message improvements.
1755 - Privoxy-Regression-Test supports redirect tests.
1756 - Privoxy-Log-Parser can gather some connection statistics.
1757
1758 *** Version 3.0.14 beta ***
1759
1760 - The latency is taken into account when evaluating whether or not to
1761   reuse a connection. This should significantly reduce the number of
1762   connections problems several users reported.
1763 - If the server doesn't specify how long the connection stays alive,
1764   Privoxy errs on the safe side of caution and assumes it's only a second.
1765 - The error pages for connection timeouts or missing server data use a
1766   Last-Modified date in the past. Retry attempts are detected and Privoxy
1767   removes the If-Modified-Since header to prevent the server from responding
1768   with status code 304 in which case the client would reuse the error message.
1769 - Setting keep-alive-timeout to 0 disables keep-alive support. Previously
1770   Privoxy would claim to allow persistence but not reuse the connection.
1771 - Pipelined requests are less likely to be mistaken for the request
1772   body of the previous request. Note that Privoxy still has no real
1773   pipeline support and will either serialize pipelined requests or
1774   drop them in which case the client has to resent them.
1775 - Fixed a crash on some Windows versions when header randomization
1776   is enabled and the date couldn't be parsed.
1777 - Privoxy's keep-alive timeout for the current connection is reduced
1778   to the one specified in the client's Keep-Alive header.
1779 - For HTTP/1.1 requests, Privoxy implies keep-alive support by not
1780   setting any Connection header instead of using 'Connection: keep-alive'.
1781 - If the socket isn't reusable, Privoxy doesn't temporarily waste
1782   a socket slot to remember the connection.
1783 - If keep-alive support is disabled but compiled in, the client's
1784   Keep-Alive header is removed.
1785 - Fixed a bug on mingw32 where downloading large files failed if
1786   keep-alive support was enabled.
1787 - Fixed a bug that (at least theoretically) could cause log
1788   timestamps to be occasionally off by about a second.
1789 - No Proxy-Connection header if added if there already is one.
1790 - The configure script respects the $PATH variable when searching
1791   for groups and id.
1792
1793 *** Version 3.0.13 beta ***
1794
1795 - Added IPv6 support. Thanks to Petr Pisar who not only provided
1796   the initial patch but also helped a lot with the integration.
1797 - Added client-side keep-alive support.
1798 - The connection sharing code is only used if the connection-sharing
1799   option is enabled.
1800 - The max-client-connections option has been added to restrict
1801   the number of client connections below a value enforced by
1802   the operating system.
1803 - Fixed a regression reintroduced in 3.0.12 that could cause
1804   crashes on mingw32 if header date randomization was enabled.
1805 - Compressed content with extra fields couldn't be decompressed
1806   and would get passed to the client unfiltered. This problem
1807   has only be detected through statical analysis with clang as
1808   nobody seems to be using extra fields anyway.
1809 - If the server resets the Connection after sending only the headers
1810   Privoxy forwards what it got to the client. Previously Privoxy
1811   would deliver an error message instead.
1812 - Error messages in case of connection timeouts use the right
1813   HTTP status code.
1814 - If spawning a child to handle a request fails, the client
1815   gets an error message and Privoxy continues to listen for
1816   new requests right away.
1817 - The error messages in case of server-connection timeouts or
1818   prematurely closed server connections are now template-based.
1819 - If zlib support isn't compiled in, Privoxy no longer tries to
1820   filter compressed content unless explicitly asked to do so.
1821 - In case of connections that are denied based on ACL directives,
1822   the memory used for the client IP is no longer leaked.
1823 - Fixed another small memory leak if the client request times out
1824   while waiting for client headers other than the request line.
1825 - The client socket is kept open until the server socket has
1826   been marked as unused. This should increase the chances that
1827   the still-open connection will be reused for the client's next
1828   request to the same destination. Note that this only matters
1829   if connection-sharing is enabled.
1830 - A TODO list has been added to the source tarball to give potential
1831   volunteers a better idea of what the current goals are. Donations
1832   are still welcome too: https://www.privoxy.org/faq/general.html#DONATE
1833
1834 *** Version 3.0.12 ***
1835
1836 - The socket-timeout option now also works on platforms whose
1837   select() implementation modifies the timeout structure.
1838   Previously the timeout was triggered even if the connection
1839   didn't stall. Reported by cyberpatrol.
1840 - The Connection: keep-alive code properly deals with files
1841   larger than 2GB. Previously the connection was closed too
1842   early.
1843 - The content length for files above 2GB is logged correctly.
1844 - The user-manual directive on the show-status page links to
1845   the documentation location specified with the directive,
1846   not to the Privoxy website.
1847 - When running in daemon mode, Privoxy doesn't log anything
1848   to the console unless there are errors before the logfile
1849   has been opened.
1850 - The show-status page prints warnings about invalid directives
1851   on the same line as the directives themselves.
1852 - Fixed several justified (but harmless) compiler warnings,
1853   mostly on 64 bit platforms.
1854 - The mingw32 version explicitly requests the default charset
1855   to prevent display problems with some fonts available on more
1856   recent Windows versions. Patch by Burberry.
1857 - The mingw32 version uses the Privoxy icon in the alt-tab
1858   windows. Patch by Burberry.
1859 - The timestamp and the thread id is omitted in the "Fatal error"
1860   message box on mingw32.
1861 - Fixed two related mingw32-only buffer overflows. Triggering
1862   them required control over the configuration file, therefore
1863   this isn't seen as a security issue.
1864 - In verbose mode, or if the new option --show-skipped-tests
1865   is used, Privoxy-Regression-Test logs skipped tests and the
1866   skip reason.
1867
1868 *** Version 3.0.11 ***
1869
1870 - On most platforms, outgoing connections can be kept alive and
1871   reused if the server supports it. Whether or not this improves
1872   things depends on the connection.
1873 - When dropping privileges, membership in supplementary groups
1874   is given up as well. Not doing that can lead to Privoxy running
1875   with more rights than necessary and violates the principle of
1876   least privilege. Users of the --user option are advised to update.
1877   Thanks to Matthias Drochner for reporting the problem,
1878   providing the initial patch and testing the final version.
1879 - Passing invalid users or groups with the --user option
1880   didn't lead to program exit. Regression introduced in 3.0.7.
1881 - The match all section has been moved from default.action
1882   to a new file called match-all.action. As a result the
1883   default.action no longer needs to be touched by the user
1884   and can be safely overwritten by updates.
1885 - The standard.action file has been removed. Its content
1886   is now part of the default.action file.
1887 - In some situations the logged content length was slightly too low.
1888 - Crunched requests are logged with their own log level.
1889   If you used "debug 1" in the past, you'll probably want
1890   to additionally enable "debug 1024", otherwise only passed
1891   requests will be logged. If you only care about crunched
1892   requests, simply replace "debug 1" with "debug 1024".
1893 - The crunch reason has been moved to the beginning of the
1894   crunch message. For HTTP URLs, the protocol is logged as well.
1895 - Log messages are shortened by printing the thread id on its
1896   own (as opposed to putting it inside the string "Privoxy()").
1897 - The config option socket-timeout has been added to control
1898   the time Privoxy waits for data to arrive on a socket.
1899 - Support for remote toggling is controlled by the configure
1900   option --disable-toggle only. In previous versions it also
1901   depended on the action editor and thus configuring with the
1902   --disable-editor option would disable remote toggling support
1903   as well.
1904 - Requests with invalid HTTP versions are rejected.
1905 - The template symbol @date@ can be used to include a date(1)-like
1906   time string. Initial patch submitted by Endre Szabo.
1907 - Responses from shoutcast servers are accepted again.
1908   Problem reported and fix suggested by Stefan.
1909 - The hide-forwarded-for-headers action has been replaced with
1910   the change-x-forwarded-for{} action which can also be used to
1911   add X-Forwarded-For headers. The latter functionality already
1912   existed in Privoxy versions prior to 3.0.7 but has been removed
1913   as it was often used unintentionally (by not using the
1914   hide-forwarded-for-headers action).
1915 - A "clear log" view option was added to the mingw32 version
1916   to clear out all of the lines in the Privoxy log window.
1917   Based on a patch submitted by T Ford.
1918 - The mingw32 version uses "critical sections" now, which prevents
1919   log message corruption under load. As a side effect, the
1920   "no thread-safe PRNG" warning could be removed as well.
1921 - The mingw32 version's task bar icon is crossed out and
1922   the color changed to gray if Privoxy is toggled off.
1923
1924 *** Version 3.0.10 ***
1925
1926 - Ordinary configuration file changes no longer cause program
1927   termination on OS/2 if the name of the logfile hasn't been
1928   changed as well. This regression probably crept in with the
1929   logging improvements in 3.0.7. Reported by Maynard.
1930 - The img-reorder filter is less likely to mess up JavaScript code in
1931   img tags. Problem and solution reported by Glenn Washburn in #2014552.
1932 - The source tar ball now includes Privoxy-Log-Parser,
1933   a syntax-highlighter for Privoxy logs. For fancy screenshots see:
1934   http://www.fabiankeil.de/sourcecode/privoxy-log-parser/
1935   Documentation is available through perldoc(1).
1936
1937 *** Version 3.0.9 beta ***
1938
1939 - Added SOCKS5 support (with address resolution done by
1940   the SOCKS5 server). Patch provided by Eric M. Hopper.
1941 - The "blocked" CGI pages include a block reason that was
1942   provided as argument to the last-applying block action.
1943 - If enable-edit-actions is disabled (the default since 3.0.7 beta)
1944   the show-status page hides the edit buttons and explains why.
1945   Previously the user would get the "this feature has been disabled"
1946   message after using the edit button.
1947 - Forbidden CONNECT requests are treated like blocks by default.
1948   The now-pointless treat-forbidden-connects-like-blocks action
1949   has been removed.
1950 - Not enabling limit-connect now allows CONNECT requests to all ports.
1951   In previous versions it would only allow CONNECT requests to port 443.
1952   Use +limit-connect{443} if you think you need the old default behaviour.
1953 - The CGI editor gets turned off after three edit requests with invalid
1954   file modification timestamps. This makes life harder for attackers
1955   who can leverage browser bugs to send fake Referers and intend to
1956   brute-force edit URLs.
1957 - Action settings for multiple patterns in the same section are
1958   shared in memory. As a result these sections take up less space
1959   (and are loaded slightly faster). Problem reported by Franz Schwartau.
1960 - Linear white space in HTTP headers will be normalized to single
1961   spaces before parsing the header's content, headers split across
1962   multiple lines get merged first. This should prevent problems like:
1963    * letting the session-cookies-only action slip
1964      some Cookies through unmodified,
1965    * only suppressing the first line of a header,
1966      thus creating an invalid one, and
1967    * to incorrectly block headers with valid timestamps
1968      that weren't properly recognized.
1969   Headers that could trigger these problems are unlikely to appear
1970   in "normal" web traffic, but could be intentionally generated to
1971   fool some of Privoxy's header parsers.
1972 - Host information is gathered outside the main thread so it's less
1973   likely to delay other incoming connections if the host is misconfigured.
1974 - New config option "hostname" to use a hostname other than
1975   the one returned by the operating system. Useful to speed-up responses
1976   for CGI requests on misconfigured systems. Requested by Max Khon.
1977 - The CGI editor supports the "disable all filters of this type"
1978   directives "-client-header-filter", "-server-header-filter",
1979   "-client-header-tagger" and "-server-header-tagger".
1980 - Fixed false-positives with the link-by-url filter and URLs that
1981   contain the pattern "/jump/".
1982 - The less-download-windows filter no longer messes
1983   "Content-Type: application/x-shockwave-flash" headers up.
1984 - In the show-url-info page's "Final results" section active and
1985   inactive actions are listed separately. Patch provided by Lee.
1986 - The GNUmakefile supports the DESTDIR variable. Patch for
1987   the install target submitted by Radoslaw Zielinski.
1988 - Embedding the content of configuration files in the show-status
1989   page is significantly faster now. For a largish action file (1 MB)
1990   a speedup of about 2450 times has been measured. This is mostly
1991   interesting if you are using large action files or regularly use
1992   Privoxy-Regression-Test while running Privoxy through Valgrind,
1993   for stock configuration files it doesn't really matter.
1994 - If zlib support is unavailable and there are content
1995   filters active but the prevent-compression action is disabled,
1996   the show-url-info page includes a warning that compression
1997   might prevent filtering.
1998 - The show-url-info page provides an OpenSearch Description that
1999   allows to access the page through browser search plugins.
2000 - Custom client-header filters that rewrite the request line
2001   incorrectly no longer cause Privoxy to crash. Reported by din_a4.
2002 - The obsolete kill-popups action has been removed as the
2003   PCRS-based popup filters can do the same and are slightly
2004   less unreliable.
2005 - The inspect-jpegs action has been removed.
2006 - The send-wafer and send-vanilla-wafer actions have been removed.
2007   They weren't particular useful and their behaviour could be emulated
2008   with add-header anyway.
2009 - Privoxy-Regression-Test has been significantly improved.
2010 - Most sections in the default.action file contain tests for
2011   Privoxy-Regression-Test to verify that they are working as intended.
2012 - Parts of Privoxy have been refactored to increase maintainability.
2013 - Building with zlib (if available) is done by default.
2014
2015 *** Version 3.0.8 ***
2016
2017 - Fixed a small memory leak when listen-address only specifies the port.
2018 - The source tar balls now include Privoxy-Regression-Test which
2019   (upon other things) can be used to automatically detect some
2020   packaging problems. Packagers are welcome to give it a try.
2021 - Reverted a change in 3.0.7 that caused path patterns to be checked
2022   even if the host pattern match already failed. While this doesn't
2023   noticeable affect the performance, it makes it less likely to run
2024   out of stack space with overly-complex path patterns the user might
2025   have added.
2026 - Updated the msn, yahoo and google filters to work as advertised again.
2027 - The warning message shown by the show-status CGI page is easier to
2028   understand. Previously it wasn't clear that the error message
2029   is shown below the invalid directive. (Reported by Lee)
2030 - When regenerating Content-Disposition headers the more common
2031   spelling is used for the name. Previously it was written without caps.
2032 - Less confusing log message if the content type isn't overwritten
2033   because force-text-type wasn't used but the old type doesn't look
2034   like content that would be filtered normally.
2035 - Better log messages if the user tries to execute filters that
2036   don't exist.
2037 - Treat the non-standard Request-Range headers like standard range
2038   headers and suppress them if content filtering is enabled.
2039 - Prevent the log messages for CONNECT requests to unacceptable
2040   ports from printing the limit-connect argument as [null] if
2041   limit-connect hasn't been explicitly enabled.
2042 - Don't disable the mingw32 log window if the logfile directive
2043   isn't used. While it was an intentional change in 3.0.7 at least
2044   one user perceived it as a regression and the same effect can
2045   be achieved by disabling all debug directives.
2046 - Fixed two minor problems related to the win32 build process: a css
2047   file was not being in the installer and the trustfile comment in the
2048   config.txt referenced a nonexisting file
2049 - Minor documentation fixes.
2050
2051 *** Version 3.0.7 beta ***
2052
2053 - Added zlib support to filter content with gzip and deflate
2054   encoding. (Patch provided by Wil Mahan)
2055 - Dedicated filters and actions are used for header filtering.
2056   "filter-client-headers" and "filter-client-headers" are no longer
2057   supported, use server-header-filter{} and client-header-filter{}
2058   instead.
2059 - Tags can be used to change actions based on HTTP headers.
2060 - New server-header filter: less-download-windows.
2061 - New client-header taggers: css-requests, image-requests,
2062   client-ip-address, http-method, allow-post, complete-url,
2063   user-agent and privoxy-control.
2064 - New server-header taggers: content-type and privoxy-control.
2065 - The forward-override{} action allows to change the forwarding
2066   settings through the action files, for example based on client
2067   headers like the User-Agent, or the request origin.
2068 - Socks errors are no longer handled by the CGI page for
2069   DNS resolution failures.
2070 - CGI pages use favicons to signal whether they are error
2071   or control pages. This is useful if you rely heavily on
2072   browser tabs.
2073 - The show-url-info CGI page shows the forwarding settings.
2074 - "Crunch!" log messages (used when Privoxy answers requests
2075   by itself) now also contain the reason.
2076 - Allow to rewrite the request destination behind the client's back.
2077 - Fix socks requests on big-endian platforms. Patch provided by Song Weijia.
2078 - Fixes possible deadlocks and crashes on OpenBSD.
2079   Patch provided by Ralf Horstmann.
2080 - The CGI action editor allows to edit actionfiles with previously
2081   forbidden characters like dots.
2082 - New trust entries are saved with a comment that contains the
2083   trusted referring URL (Suggested by Daniel Griscom).
2084 - Filter descriptions are HTML encoded automatically.
2085 - New config option "split-large-forms" to work
2086   around a browser bug that caused IE6 and IE7 to ignore
2087   the Submit button on the edit-actions-for-url CGI page.
2088 - New config option "allow-cgi-request-crunching" to allow
2089   requests for Privoxy's CGI pages to be blocked, redirected
2090   or (un)trusted like ordinary requests.
2091 - Empty filter files no longer interrupt the filtering process
2092   prematurely and are correctly listed on the show-status CGI page.
2093 - New config option "accept-intercepted-requests" to combine
2094   Privoxy with any packet filter to build an intercepting proxy
2095   for HTTP/1.1 requests (and for HTTP/1.0 requests with Host header set).
2096 - fast-redirects{} catch redirects to https URLs as well.
2097 - redirect{s@foo@bar@} can be used to redirect to a rewritten
2098   version of the original URL.
2099 - Trap unsupported gopher proxy requests.
2100 - Fixed a bug in the User Manual delivery on Windows
2101   (mingw32 only). Images now show up correctly and HTML
2102   pages are no longer padded with garbage data.
2103 - Fixed several minor memory leaks, most of them discovered with Valgrind.
2104 - Only unlink the pidfile if it's actually used.
2105 - Retries after connection problems with forced requests
2106   aren't blocked again.
2107 - On Unix SIGABRT causes a core dump as expected and is no
2108   longer treated as normal shutdown signal.
2109 - The "access denied" CGI page is more descriptive and
2110   allows retries to circumvent the referrer check.
2111 - Updated PCRS to handle unexpected PCRE errors properly.
2112   Fixed crashes that could occur if Privoxy was build
2113   with external PCRE versions newer than Privoxy's internal
2114   one. (Reported by Chung-chieh Shan)
2115 - Fixed crashes with null bytes in PCRS replacement strings
2116   (Patch provided by Felix Gröbert).
2117 - Fixed crashes with header time randomization on mingw32.
2118 - The CGI style sheet is no longer delivered if the referring
2119   page isn't a Privoxy CGI page. This prevents a JavaScript-based
2120   Privoxy detection "attack". Note that detecting Privoxy is
2121   still possible through other ways and Privoxy was never intended
2122   to be invisible anyway.
2123 - Added support for AmigaOS 4, fixed build for AmigaOS 3.x.
2124 - The show-url-info CGI page displays a warning if Privoxy
2125   is currently toggled off.
2126 - The show-status CGI page suppresses the edit button
2127   for action files if Privoxy has no write access.
2128 - Most CGI error pages react properly to HEAD requests.
2129 - Requests with RFC 3253 HTTP methods (used by Subversion)
2130   are accepted. (Patch provided by Petr Kadlec)
2131 - New config option "templdir" to change the location
2132   of the CGI templates to make sure customized templates
2133   aren't "updated".
2134 - Better handling of "HTTP/1.1 100 Continue" responses.
2135 - The background of the PNG pattern is transparent.
2136 - Fixed XML syntax errors caused by banners-by-size and banners-by-url.
2137 - Fixed crashes and possible action file corruptions
2138   when lines containing hashes are written through the CGI editor.
2139 - Supports dynamic filters which can contain variables.
2140 - Supports tags to change the actions based on client or server headers.
2141 - Incorrect actions are logged before program termination.
2142 - The "actionsfile" syntax in the configuration file is consistent
2143   with the rest of the configuration options and requires the
2144   whole file name. This is an incompatible change, if you use
2145   an old configuration file you might have to append ".action"
2146   to your "actionsfile" directives.
2147 - With the configuration file option "enforce-blocks" the
2148   "go there anyway" mechanism can be disabled without recompiling
2149   Privoxy.
2150 - More precise error messages in case of incorrect acl syntax.
2151 - Logs a warning if filtering is enabled but impossible due
2152   to lack of zlib support or use of the prevent-compression action.
2153 - Less noisy handling of Cookie:" and "Connection:" headers.
2154 - Improved error messages in case of connection problems.
2155 - Fix a command-line-parsing bug that was introduced before 3.0.5
2156   beta and caused Privoxy to treat the last argument as configuration
2157   file if no configuration file was specified.
2158 - Treat unknown command line options as fatal errors instead
2159   of silently ignoring them.
2160 - Use string functions with length checks more often.
2161 - Don't log CONNECT requests twice.
2162 - Allow to log the source address for ACL-related connection drops.
2163 - Don't ignore applying filters if the server didn't
2164   specify a Content-Type. Bug reported by Amuro Namie.
2165 - Rejected CONNECT requests are logged with log level info
2166   (enabled by default) and the reason for the block.
2167 - New command line option "--pre-chroot-nslookup hostname" to
2168   intialize the resolver library before chroot'ing. On some systems this
2169   reduces the number of files that must be copied into the chroot tree.
2170   (Patch provided by Stephen Gildea)
2171 - Fix a long-standing memory corruption bug that could cause
2172   Privoxy to overwrite a single byte in memory it didn't explicitly
2173   allocate (but that probably was allocated anyway due to bucket size).
2174 - Send template-based CGI pages as HTTP/1.1 unless the client
2175   asked for HTTP/1.0.
2176 - Let the first line in connection established responses
2177   end in \r\n as required by RFC1945. Reported by Bert van Leeuwen.
2178 - If no log file has been specified, disable logging instead of logging
2179   to stderr.
2180 - Don't block stderr when in daemon mode.
2181 - Ignore missing zero-chunks when filtering chunk-encoded content.
2182   Earlier Privoxy versions would buffer and then forward the content
2183   unmodified which caused some browsers to simply show empty pages.
2184 - Fix double free in cgi_edit_actions_list(). Reported by Venustech AD-LAB.
2185 - The code to add X-Forwarded-For headers when the hide-forwarded-for-headers
2186   action isn't being used has been removed.
2187 - Fixed trustfile feature which previously didn't work without FEATURE_TOGGLE.
2188   Reported by Lee.
2189 - Minor code clean-ups, filter and action file updates.
2190   (Some of them reported by Davide Alberani, Markus Elfring,
2191    Stefan Huehner and Adam Piggott)
2192
2193 *** Version 3.0.6 ***
2194
2195 - New content filters: no-ping, google, msn, yahoo and blogspot.
2196 - New header filters:  x-httpd-php-to-html, html-to-xml, xml-to-html
2197                        and hide-tor-exit-notation.
2198 - The special header "X-Filter: No" now disables header filtering as well.
2199 - Improved the filters img-reorder, js-annoyances, webbugs,
2200   banners-by-size, banners-by-link and ie-exploits to make them
2201   less likely to break anything.
2202 - Removed outdated URL patterns in default.action and added new ones.
2203 - Added redirection from http://p.p/user-manual to http://p.p/user-manual/
2204 - Changed webinterface default values for hide-user-agent, hide-referrer
2205   and set-image-blocker.
2206
2207 *** Version 3.0.5 beta ***
2208
2209 - Windows version can be installed/started as a service.
2210 - Windows icon stays blue when Privoxy is idle, green when busy.
2211 - Integrated Fabian Keil's extensive patch.  See:
2212   http://www.fabiankeil.de/sourcecode/privoxy/. Includes the
2213   following new or significantly improved actions (among many
2214   other improvements):
2215
2216      content-type-overwrite{}
2217      crunch-client-header{string}
2218      crunch-if-none-match
2219      crunch-server-header{string}
2220      fast-redirects{check-decoded-url}
2221      filter-client-headers
2222      filter-server-headers
2223      force-text-mode
2224      handle-as-empty-document
2225      hide-accept-language{}
2226      hide-content-disposition{}
2227      hide-if-modified-since
2228      hide-referrer{conditional-block}
2229      overwrite-last-modified{}
2230      redirect{URL}
2231      treat-forbidden-connects-like-blocks
2232
2233 - Standard-compliant clients are prevented from displaying cached
2234   copies of Privoxy's error messages after the cause of the problem
2235   has gone.
2236 - Improved DNS error handling.
2237 - Multiple filter files can now be specified in config.
2238 - Added jpeg filtering to defend against MS jpeg vulnerability MS04-028
2239   with the new inspect-jpegs action.
2240 - Removed the "arbitrary" 1000 filter limit - addresses tracker #911950
2241 - Thanks to Jindrich Makovicka for a race condition fix for the log
2242   file.  The race condition remains for non-pthread implementations.
2243   Reference patch #1175720. Various other logging enhancements.
2244 - A pile of assorted bug fixes, memory leaks, enhancements, etc.
2245 - Moved Actions file reporting mechanism to SF tracker.
2246 - Two new options for config: enable-remote-http-toggle and
2247   forwarded-connect-retries.
2248 - Trap unsupported FTP requests.
2249 - Let text/xml be filtered.
2250 - Numerous updates to default.action
2251 - Increase the compiled in limit of trusted referrers from 64 to 512
2252   (for trustfile users).
2253
2254 *** Version 3.0.3 ***
2255
2256 - Fixed yet another two memory leaks. Process growth seems stopped now.
2257 - Further tightened security against malicious toggle-off links.
2258 - Excluded text/plain MIME types from filtering. This fixes a
2259   couple of client-crashing, download corruption and
2260   Privoxy performance issues, whose root cause lies in
2261   web servers labelling content of unknown type as text/plain.
2262 - Assorted fixes for POSIX compliance, signal handling, graceful
2263   termination, compiler warnings, OSX support, Win32 systray,
2264   error logging, hostname wildcards, correct detection of NetBSD.
2265 - Workarounds for client (iTunes etc) and server (PHP < 4.2.3) bugs
2266   including the notorious "blank page" problem.
2267 - Various filter improvements; most notably the unsolicited-popups
2268   filter became less destructive
2269 - Major revamp of the actions file
2270
2271 *** Version 3.0.2 ***
2272
2273 - Fixed two memory leaks, one serious
2274 - Fixed bug in pcrs which could cause crashes with user-defined filters
2275 - Fixed bug in domain name matching
2276 - Assorted small fixes (Win32 menu, CGI URL editor, ..)
2277 - Added basic support for the OPTIONS and TRACE http methods
2278 - Added workaround for Bug in Mac OSX that made Privoxy crash occasionally
2279 - Refined the default action file through >400 items of user feedback
2280 - Filter changes:
2281   - Assorted refinements, optimizations and fixes in the js-annoyances,
2282     img-reorder, banners-by-size, banners-by-link, webbugs, refresh-tags,
2283     html-annoyances, content-cookies and fun filters
2284   - Replaced filter "popups" by choice between two modes:
2285     - "unsolicited-popups" tries to catch only the unsolicited ones
2286     - "all-popups" tries to kill them all (as before)
2287   - New filter "tiny-textforms" Help those tiny or hard-wrap textareas.
2288   - New filter "jumping-windows" that prevents windows from resizing
2289     and moving themselves
2290   - New filter "demoronizer" which fixes MS's abuse of std charsets
2291     (common cases anyway).
2292   - Replaced "nimda" with more general "ie-exploits" filter in which
2293     all filters for exploits shall be collected
2294 - Improved cookie logging
2295 - Rewrote make install target. Added uninstall and install-strip
2296   targets.
2297 - Fixed a potential (application-level, NOT OS-level!) security
2298   problem involving remote toggling and action file manipulation
2299   by mailicious websites.
2300 - Added ability to chroot (thanks to Sviatoslav Sviridov)
2301 - Added more action aliases for prehistoric action names
2302 - Add Slackware support to Makefile.
2303
2304 *** Version 3.0  ***
2305
2306 - Fixed Windows startmenu items, log window and tray icon menus.
2307 - Added warning for bogus install target
2308 - Added quicktime-kioskmode filter and improved frameset-borders
2309 - Updated default.action based on latest feedback
2310 - New PDF doc build process
2311 - Add a user contrib module to cvs:
2312   http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/ijbswa/contrib/
2313
2314 *** Version 2.9.18  ***
2315
2316 - Added workaround for IE bug that broke CGI interface
2317 - Bugfix: String actions now reliably editable through CGI interface
2318 - Three filters fixed (again!)
2319 - Assorted small fixes and doc enhancements
2320
2321 *** Version 2.9.16  ***
2322
2323 - Major revamp of default.action to get rid of years of cruft.
2324 - Same for default.filter
2325 - Re-design and major improvements to the CGI editor interface.
2326 - Address spurious 'out of memory' error due to incorrect file permissions.
2327 - Impose buffer limits while reading client and server headers.
2328 - Better memory and CPU optimization.
2329 - Add Conectiva Linux package.
2330 - user-manual directive added to config for help links from within CGI
2331   editor.
2332 - Multiple actions files can now be specified in config.
2333 - Actions files are changed to: default.action, standard.action, and
2334   user.action. user.action is for personal/local configuration.
2335 - The usual many small and miscellaneous bug and security fixes.
2336
2337 *** Version 2.9.14 beta ***
2338
2339 - Fix Solaris compile problem (gateway.h and filters.h)
2340 - Makefile fixes for Solaris, FreeBSD (?)
2341 - Fix build failure where certain features were disabled.
2342 - 'blocked-compact' template is removed. Various CGI improvements,
2343   including an adaptive 'blocked' template.
2344 - Various tweaks for actions file to get ready for stable 3.0
2345 - Included a 'Bookmarklet' and PHP scripts for reporting actions file
2346   problems via web interface at privoxy.org. Accessed via internal CGIs.
2347 - Include cgi-style.css for templates.
2348 - #include mechansim for common text in templates
2349 - Various other minor fixes.
2350
2351 *** Version 2.9.13 beta ***
2352
2353 - *NEWS*: The project has been renamed to Privoxy! The new name is
2354   reflected throughout (file locations, etc).
2355 - ijb.action is now default.action. re_filterfile is now
2356   default.filter.
2357 - http://i.j.b/ is now http://p.p/
2358 - The 'logo' option for replacing ad iamges is removed now. 'Pattern'
2359   (checkerboard) is now the default.
2360 - RPM spec file make over.
2361
2362
2363 *** Version 2.9.12 beta ***
2364
2365 - **READ**: The default listening PORT is NOW 8118!!! Changed from
2366   8000 due to conflict with NAS (Network Audio Server, whatever that
2367   is.)
2368 - More CGI actions editor fixes and improvements.
2369 - Win32 command line fix ups.
2370 - re_filterfile now has modular sections that can be activated on a
2371   per site basis. Some new goodies there too.
2372 - +filter now takes arguments to match FILTER sections in re_filterfile
2373   for even more flexibility.
2374 - Added a new image blocker option: +image-blocker{pattern}, which
2375   displays a checkerboard patthern and scales better than the logo.
2376 - PNG images will be used in place of GIF for JB built-in images
2377   if configured with --enable-no-gif.
2378 - Clean up compiler warnings (mostly).
2379 - Improved handling of failed DNS lookups & diagnostics for failed bind
2380   to listen socket
2381 - Made --no-daemon mode log to tty instead of logfile.
2382 - Various spec file and init script cleanups and improvements (Redhat and
2383   SuSE).
2384 - CGI Editor works on OS/2 now.
2385 - Fix restart failure where sockets were in TIME_WAIT.
2386 - Fixes for actions cgi editor, make sure we have right file.
2387 - A --pidfile command line option now, in addition to --help,
2388   --version, --no-daemon, --user and configfile. --no-daemon replaces
2389   the former -d option and _DEBUG define. --user will drop privileges
2390   to the specified user.
2391 - Signal handling cleanups (*nix).
2392 - CGI actions editor improvements and fixes.
2393 - Error handling improvements, especially out of memory.
2394 - Default re_filterfile fix that caused spurious IJB logos
2395   (instead of 'blank').
2396 - configure.in threading fixes for Solaris.
2397 - Various other minor fixes.
2398
2399
2400 *** Version 2.9.11 beta Changes ***
2401
2402 - Add "session" cookie concept where cookies exist for the life
2403   of that browser session only (ie never goes to disk).
2404 - Checks for correct header length.
2405 - Fix user:pass@host.domain.com auth bug.
2406 - Better signal handling on *nix.
2407 - Fix CFLAGS hard-coded in configure.in
2408 - Fix threading bug re: gethostbyname() that caused random
2409   URLs to fail in some cases.
2410
2411
2412 *** Version 2.9.11 Alpha Changes ***
2413
2414 - A web-based editor for the actions file is included (go to http://i.j.b/).
2415 - Web-based toggle IJB on/off support.
2416 - Cookie handling has changed - the new +no-cookies-keep feature is now the
2417 default.
2418 - actionsfile is renamed to ijb.action.
2419 - junkbstr.txt is now config.txt on Win32.
2420 - Support for running IJB as a UNIX daemon process has improved.
2421 - Unix daemon now returns error code on failed start.
2422 - Timestamps in logfile and jarfile now.
2423 - Fix for the Netscape bug reintroduced in 2.9.9.
2424 - make should now abort if gmake (GNU make) not present.
2425 - Many other minor bugfixes
2426 - Start a ChangeLog :)
2427
2428
2429
2430 *** Version 2.9.3 pre-Alpha Changes ***
2431
2432 - Amiga support (completely untested by me - I don't have an Amiga)
2433 - "tinygif 3" support (redirects blocked images to a specified URL, so
2434 the browser doesn't have to load and cache many copies of the same
2435 image).
2436 - one case where there were both local and global "referrer" variables
2437 (yuck!) clarified by renaming the local one to "refer".
2438 - Fixed some places where close() was used instead of close_socket().
2439 Thanks to Jörg Strohmayer (joergs at users.sourceforge.net) for these.
2440 - Temporary hack to get FORCE_LOAD to work with IE.  I just lowercased the
2441 FORCE_LOAD_PREFIX.  Needs fixing properly.
2442 - Most URLs hardcoded into Junkbuster were changed to go through a script
2443 e.g. http://ijbswa.sourceforge.net/redirect.php?v=2.9.3&to=faq
2444 The only other URLs left are the GNU GPL:
2445   http://www.fsf.org/copyleft/gpl.html
2446 and the home page:
2447   http://ijbswa.sourceforge.net/
2448 ... and various URLs which will be intercepted by Junkbuster anyway.
2449 TODO: Still need to do something with the URLs in Junkbuster Corp's
2450 copyright/trademark notice on the bottom of the show-proxy-args page.
2451 - PCRE or GNU Regex is now a #define option.
2452
2453
2454 *** Version 2.9.2 pre-Alpha Changes ***
2455
2456 - Andreas applied the latest version of the FORCE patch.
2457
2458
2459 *** Version 2.9.1 pre-Alpha Changes ***
2460
2461 - in parsers.c, fixed two #ifdef FORCE to #ifdef FORCE_LOAD
2462 (BTW: I think FORCE is precise enough, since loading remote
2463 data is the whole purpose of a proxy..)
2464 - Set the FORCE_PREFIX (back) to 'IJB-FORCE-LOAD-'. While 'noijb.'
2465 is more elegant and looks like a hostname in the URL, it doesn't
2466 make clear to the inexperienced user that the proxy is bypassed. It
2467 also has a higher name collision risk.
2468 - Filled in the function header templates for my functions in
2469 parsers.c (again). They obviously got lost in our current
2470 patch war ;-)
2471 - Cut the credit for the §-referrer-option from the config file,
2472 that Stefan had placed there.
2473 - Improved the re_filterfile
2474
2475
2476 *** Version 2.9.0 pre-Alpha Changes ***
2477
2478 -  Now use PCRE, not GNU REGEX.  I have not yet had chance to check the
2479 syntax of the block/image/cookie file to ensure that they match what
2480 is expected - however they seem to work.
2481 -  Replaced "configure" script with one generated by "autoconf".  Also
2482 use a header "config.h" (was ijbconfig.h in my previous release) for
2483 the #defines.  "config.h" is now generated with "autoheader" from
2484 "acconfig.h" and "configure.in".  (Note that to install you do not
2485 need autoconf or autoheader - just run "./configure".)
2486 To see command-line options, run "./configure --help".
2487 This is my first ever autoconf script, so it has some rough edges
2488 (how PCRE is handled is the roughest).
2489 -  Error logging code replaced with new module errlog.c, based on the
2490 one from JunkbusterMT (but with the threading code removed).
2491 -  Most of Rodney's 0.21 and 0.21A patches applied. (Marked *).  I did not
2492 apply all of these, since I had already independently done conditional
2493 popup file, conditional image file, and integration of popup code.
2494 - ACL, Jar and trust files conditionally compiled.
2495 - New source file headers.
2496 - Various cosmetic changes.  (But I have not consistently ordered the
2497 config files - I think that's worthwhile, but it's 1am and I want to
2498 get this released!)
2499 - RCS tags on .h files.
2500 -  RCS tags are const char[] rather than const char *.  (Saves 4 bytes
2501 per tag ;-)
2502 - VC++ project files renamed to vc_junkbuster.*.
2503 - show-proxy-args now shows status of all conditionals, not just REGEX
2504 - Various functions moved around.  Most notably all the system-specific
2505 sockets code which was spread between jcc.c, bind.c, and connect.c,
2506 has been moved to "jbsockets.c".  The non-system-specific code from
2507 connect.c and socks4.c has been movet to "gateway.c".  Also, the
2508 config file loader and the global variables it writes to have been
2509 moved to "loadcfg.c".  (Maybe this should go into loaders.c?)
2510 And candidate for the "worst filename ever" award is "miscutil.c",
2511 which contains, well, miscellaneous utility functions like zalloc.
2512 (Suggestions for a better name for this file are welcome!)
2513 - Loaders now use a common function to read a line and skip comments,
2514 and this function also stores the proxy_args.
2515 - Added ./junkbuster --help     (Not for Win32 GUI)
2516 - Added ./junkbuster --version  (Not for Win32 GUI)
2517 - Win32 resources are now all marked as "U.S. English", rather than
2518 being a mix of "U.S. English", "U.K. English" and "Irish English".
2519 - Version number changes to 2.9.0
2520
2521
2522 ----------------------------------------------------------------------
2523 Copyright   :  Written by and Copyright (C) 2001-2018 the
2524                Privoxy team. https://www.privoxy.org/
2525
2526                Based on the Internet Junkbuster originally written
2527                by and Copyright (C) 1997 Anonymous Coders and
2528                Junkbusters Corporation.  http://www.junkbusters.com/
2529
2530                This program is free software; you can redistribute it
2531                and/or modify it under the terms of the GNU General
2532                Public License as published by the Free Software
2533                Foundation; either version 2 of the License, or (at
2534                your option) any later version.
2535
2536                This program is distributed in the hope that it will
2537                be useful, but WITHOUT ANY WARRANTY; without even the
2538                implied warranty of MERCHANTABILITY or FITNESS FOR A
2539                PARTICULAR PURPOSE.  See the GNU General Public
2540                License for more details.
2541
2542                The GNU General Public License should be included with
2543                this file.  If not, you can view it at
2544                http://www.gnu.org/copyleft/gpl.html
2545                or write to the Free Software Foundation, Inc., 59
2546                Temple Place - Suite 330, Boston, MA  02111-1307, USA.