[mod_ssi] more flexible quoting (fixes #1768)
[lighttpd.git] / NEWS
blob7111be71f2bf958c968770b83847f04601a2cfb3
2 ====
3 NEWS
4 ====
6 - 1.4.40
7   * [mod_ssi] enhance support for ssi vars (thx fbrosson)
8   * add handling for lua 5.2 and 5.3 (fixes #2674)
9   * use libmemcached instead of deprecated libmemcache
10   * add force_assert for more allocation results
11   * [mod_cgi] use MAP_PRIVATE to mmap temporary file (fixes #2715)
12   * [core] do not send SIGHUP to process group unless server.max-workers is used (fixes #2711)
13   * [mod_cgi] edge case chdir "/" when docroot "/" (fixes #2460)
14   * [mod_cgi] issue trace and exit if execve() fails (closes #2302)
15   * [configparser] don't continue after parse error (fixes #2717)
16   * [core] never evaluate else branches until the previous branches are ready (fixes #2598)
17   * [core] fix conditional cache handling
18   * [core] improve conditional enabling (thx Gwenlliana, #2598)
19   * [mod_compress] case-insensitive content-codings (fixes #2645)
20   * [plugins] don't include dlfcn.h if not needed (fixes #2548)
21   * [mod_fastcgi] 404 for X-Sendfile file not found (fixes #2474)
22   * [mod_cgi] send 500 if CGI ends and there is no response (fixes #2542)
23   * [mod_cgi] consolidate CGI cleanup code
24   * [mod_cgi] simplify mod_cgi_handle_subrequest()
25   * [mod_cgi] kill CGI if fail to write request body
26   * [mod_proxy] use case-insensitive comparision to filter headers, send Connection: Close to backend (fixes #421)
27   * [mod_dirlisting] dir-listing.hide-dotfiles = "enabled" by default (fixes #1081)
28   * [mod_secdownload] fix buffer overflow in secdl_verify_mac (reported by Fortify Open Review Project)
29   * [mod_fastcgi,mod_scgi] fix leaking file-descriptor when backend spawning failed (reported by Fortify Open Review Project)
30   * [core] improve array API to prevent memory leaks
31   * [core] refactor array search; raise array size limit to SSIZE_MAX
32   * [core] fix memory leak in configparser_merge_data
33   * [core] provide array_extract_element and use it
34   * [core] configparser: error on duplicate keys in array merge (fixes #2685)
35   * [core] more careful parse of $SERVER["socket"] config str (prepare #2204)
36   * [core] accept $SERVER["socket"] without port, use server.port as fallback (fixes #2204)
37   * [mod_magnet] define lua_pushglobaltable (for lua5.1) and use it (fixes #2719)
38   * [ssl] support disabling ssl.verifyclient.activate in SNI callback (fixes #2531)
39   * restart (some) syscalls after SIGCHLD interrupted them; should fix LDAP problems (fixes #2464)
40   * [core] log remote address on request timeouts (fixes #652)
41   * [autobuild] use AC_CANONICAL_HOST instead of AC_CANONICAL_TARGET (fixes #1866)
42   * [core] fix request_start in keep-alive requests to mark time when received first byte (fixes #2412)
43   * [core] truncate pidfile on exit (fixes #2695)
44   * consistent inclusion of config.h at top of files (fixes #2073)
45   * [core] add generic vector implementation
46   * [core] replace array weakref with vector
47   * [base64] fix crash due to broken force_assert
48   * [unittests] add test_buffer and test_base64 unit tests
49   * [buffer] refactor buffer_path_simplify (fixes #2560)
50   * validate return values from strtol, strtoul (fixes #2564)
51   * [mod_ssi] Add SSI vars SCRIPT_{URI,URL} and REQUEST_SCHEME (fixes #2721)
52   * [config] warn if server.upload-dirs has non-existent dirs (fixes #2508)
53   * [mod_proxy] accept LF delimited headers, not just CRLF (fixes #2594)
54   * [core] wait for grandchild to be ready when daemonizing (fixes #2712, thx pasdVn)
55   * [core] respond 411 Length Required if request has Transfer-Encoding: chunked (fixes #631)
56   * [core] fixed the loading for default modules if they are specified explicitly
57   * [core] lighttpd -tt performs preflight startup checks (fixes #411)
58   * [stat] mimetype.xattr-name global config option (fixes #2631)
59   * [mod_webdav] allow Depth: Infinity lock on file (fixes #2296)
60   * [mod_status] use snprintf() instead of sprintf()
61   * pass buf size to li_tohex()
62   * use li_[iu]tostrn() instead of li_[iu]tostr()
63   * [stream] fstat() after open() to obtain file size
64   * [core] clean up srv before exiting for lighttpd -[vVh]
65   * [mod_fastcgi,mod_scgi] check for spawning on same unix socket (fixes #319)
66   * [mod_cgi] always set QUERY_STRING (fixes #1339)
67   * [mod_auth] send charset="UTF-8" in WWW-Authenticate (fixes #1468)
68   * [mod_magnet] rename var for clarity (fixes #1483)
69   * [mod_extforward] reset cond_cache for scheme (fixes #1499)
70   * [mod_webdav] readdir POSIX compat (fixes #1826)
71   * [mod_expire] reset caching response headers for error docs (fixes #1919)
72   * [mod_status] page refresh option (fixes #2170)
73   * [mod_status] table w/ count of con states (fixes #2427)
74   * [mod_dirlisting] class for dir <tr> (fixes #2304)
75   * [core] define __STDC_WANT_LIB_EXT1__ (fixes #2722)
76   * [core] setrlimit max-fds <= rlim_max for non-root (fixes #2723)
77   * [mod_ssi] config ssi.conditional-requests
78   * [mod_ssi] config ssi.exec (fixes #2051)
79   * [mod_redirect,mod_rewrite] short-circuit if blank replacement (fixes #2085)
80   * [mod_indexfile] save physical path to env (fixes #448, #892)
81   * [core] open fd when appending file to cq (fixes #2655)
82   * [config] server.listen-backlog option (fixes #1825, #2116)
83   * [core] retry tempdirs on partial write, ENOSPC (fixes #2588)
84   * [core] compile with upcoming openssl 1.1.0 release (fixes #2727)
85   * [core] improve dynamic handler control flow logic
86   * [core] defer reading request body until handle subrequest (fixes #2541)
87   * [core] always poll for client POLLHUP/POLLERR events (fixes #399)
88   * [mod_fastcgi,mod_scgi,mod_proxy] handlers can read response before sending req body (fixes #131, #2566)
89   * [mod_cgi] asynchronous send of request body to CGI
90   * [core] compile with upcoming openssl 1.1.0 release (fixes #2727)
91   * [core] set REDIRECT_STATUS to error_handler_saved_status (fixes #1828)
92   * [core] server.error-handler new directive for error pages (fixes #2702)
93   * [core] support IPv6 in $HTTP["remote-ip"] CIDR cond match (fixes #2706)
94   * [core] http_response_send_file() shared code (#2017)
95   * [mod_fastcgi] use http_response_xsendfile() (fixes #799, fixes #851, fixes #2017, fixes #2076)
96   * [mod_scgi] X-Sendfile feature (fixes #2253)
97   * [mod_cgi] X-Sendfile feature (fixes #2313)
98   * [mod_webdav] lseek,read if fs can not mmap (#2666, fixes #962)
99   * [mod_compress] use mmap and trap SIGBUS (#2666, fixes #1879)
100   * fallback to lseek()/read() if mmap() fails (#fixes 2666)
101   * [mod_auth] skip blank lines and comment lines (fixes #2327)
102   * [core] fallback to write if sendfile not supported (fixes #471, #987)
103   * [core] preserve PATH_INFO case on case-insensitive fs (fixes #406)
104   * [mod_ssi, mod_cml] set DOCUMENT_ROOT to basedir (fixes #2383)
105   * [core] cmd line opt to shutdown after idle time limit (fixes #2696)
106   * [core] lighttpd -1 handles single request on stdin socket (fixes #1584)
107   * [mod_fastcgi,mod_scgi] IPv6 support (fixes #2372)
108   * [mod_status] add JSON output option (fixed #2432)
109   * [mod_webdav] map COPY/MOVE Destination to aliases (fixes #1787)
110   * [mod_webdav] improve PROPFIND,PROPPATCH (#1818, #1953)
111   * [core] reset response headers, write_queue for error docs
112   * build with libressl
113   * static build instructions using SCons or make
114   * [mod_auth] preserve WWW-Authenticate for error docs (fixes #2730)
115   * check close() return code after writing to file
117 - 1.4.39 - 2016-01-02
118   * [core] fix memset_s call (fixes #2698)
119   * [chunk] fix use after free / double free (fixes #2700)
121 - 1.4.38 - 2015-12-05
122   * [stat-cache] fix handling of collisions, might have returned wrong data (fixes #2669)
123   * [core] allocate at least 4k buffer for incoming data
124   * [core] fix search for header end if split across chunks (fixes #2670)
125   * [core] check configparserAlloc() result with force_assert
126   * [mod_auth] implement and use safe_memclear, using memset_s or explicit_bzero if available (thx loganaden)
127   * [core] don't buffer request bodies smaller than 64k on disk
128   * add force_assert for many allocations and function results
129   * [mod_secdownload] use a hopefully constant time comparison to check hash (fixes #2679)
130   * [config] check config option scope; warn if server option is given in conditional
131   * [core] revert increase of temp file size back to 1MB, provide a configure option "server.upload-temp-file-size" instead (fixes #2680)
132   * [core] add '~' to safe characters in ENCODING_REL_URI/ENCODING_REL_URI_PART encoding
133   * [core] encode path with ENCODING_REL_URI in redirect to directory (fixes #2661, thx gstrauss)
134   * [mod_secdownload] add required algorithm option; old behaviour available as "md5", new options "hmac-sha1" and "hmac-sha256"
135   * [mod_fastcgi/mod_scgi] zero sockaddr structs before use (fixes #2691, thx Kyle J. McKay)
136   * [network] add darwin-sendfile backend (fixes #2687, thx Kyle J. McKay)
137   * [core] show correct crypt support result (fixes #2690, thx Kyle J. McKay)
139 - 1.4.37 - 2015-08-30
140   * [mod_proxy] remove debug log line from error log (fixes #2659)
141   * [mod_dirlisting] fix dir-listing.set-footer not showing
142   * fix out-of-filedescriptors when uploading "large" files (fixes #2660, thx rmilecki)
143   * increase upload temporary chunk file size from 1MB to 16MB
144   * fix undefined integer shift
145   * rewrite network sendfile/mmap/writev/write backends
146   * fix some unchecked return value warnings
147   * [kqueue] fix kevent call
148   * [autoconf] define HAVE_CRYPT when crypt() is present
149   * [bsd xattr] fix compile break with BSD extended attributes in stat_cache
150   * [mod_cgi] rewrite mmap and generic (post body) send error handling
151   * [mmap] fix mmap alignment
152   * [plugins] when modules are linked statically still only load the modules given in the config
153   * [mmap] handle SIGBUS in network; those get triggered if the file gets smaller during reading
154   * fix some warnings found by coverity ("leak" in setup phase, not catching too long unix socket paths in mod_proxy)
156 - 1.4.36 - 2015-07-26
157   * use keep-alive timeout while waiting for HTTP headers; use always the read timeout while waiting for the HTTP body
158   * fix bad shift in conditional netmask ".../0" handling
159   * add more mime types and a script to generate mime.conf (fixes #2579)
160   * add support for (Free)BSD extended attributes
161   * [build] use fortify flags with "extra-warnings"
162   * [mod_dirlisting,mod_redirect,mod_rewrite] abort config parsing if pcre-compile fails or isn't available
163   * [ssl] disable SSL3.0 by default
164   * fixed typo in example config found by openSUSE user (boo# 907709)
165   * [network] fix compile break in calculation of sockaddr_un size if SUN_LEN is not defined (fixes #2609)
166   * [connections] fix bug in connection state handling
167   * print backtrace in assert logging with libunwind
168   * major refactoring of internal buffer/chunk handling
169   * [mod_auth] use crypt_r instead of crypt if available
170   * fix error message for T_CONFIG_ARRAY config values if an entry value is not a string
171   * fix segfaults in many plugins if they failed configuration
172   * escape all strings for logging (fixes #2646 log file injection, reported by Jaanus Kääp)
173   * fix hex escape in accesslog (fixes #2559)
174   * show extforward re-run warning only with debug.log-request-handling (fixes #2561)
175   * parse If-None-Match for ETag validation (fixes #2578)
176   * fix memory leak in mod_status when no counters are set (found by coverity)
177   * [mod_magnet] fix segfault when accessing not existing lighty.req_env[] entry (found by coverity)
178   * fix segfault when temp file for upload couldn't be created (found by coverity)
179   * mime.conf: add some new mime types, remove .dat, .sha1, .md5, update .vcf
180   * [mod_proxy] add unix domain socket support (fixes #2653)
181   * [configfile] fix reading uninitialized variable (found by Willian B.)
183 - 1.4.35 - 2014-03-12
184   * [network/ssl] fix build error if TLSEXT is disabled
185   * [mod_fastcgi] fix use after free (only triggered if fastcgi debug is active)
186   * [mod_rrdtool] fix invalid read (string not null terminated)
187   * [mod_dirlisting] fix memory leak if pcre fails
188   * [mod_fastcgi,mod_scgi] fix resource leaks on spawning backends
189   * [mod_magnet] fix memory leak
190   * add comments for switch fall throughs
191   * remove logical dead code
192   * [buffer] fix length check in buffer_is_equal_right_len
193   * fix resource leaks in error cases on config parsing and other initializations
194   * add force_assert() to enforce assertions as simple assert()s are disabled by -DNDEBUG (fixes #2546)
195   * [mod_cml_lua] fix null pointer dereference
196   * force assertion: setting FD_CLOEXEC must work (if available)
197   * [network] check return value of lseek()
198   * fix unchecked return values from stream_open/stat_cache_get_entry
199   * [mod_webdav] fix logic error in handling file creation error
200   * check length of unix domain socket filenames
201   * fix SQL injection / host name validation (thx Jann Horn)
203 - 1.4.34 - 2014-01-20
204   * [mod_auth] explicitly link ssl for SHA1 (fixes #2517)
205   * [mod_extforward] fix compilation without IPv6, (not) using undefined var (fixes #2515, thx mm)
206   * [ssl] fix SNI handling; only use key+cert from SNI specific config (fixes #2525, CVE-2013-4508)
207   * [doc] update ssl.cipher-list recommendation
208   * [stat-cache] FAM: fix use after free (CVE-2013-4560)
209   * [stat-cache] fix FAM cleanup/fdevent handling
210   * [core] check success of setuid,setgid,setgroups (CVE-2013-4559)
211   * [ssl] fix regression from CVE-2013-4508 (client-cert sessions were broken)
212   * maintain physical.basedir (the "acting" doc-root as prefix of physical.path) in more places
213   * [core] decode URL before rewrite, enabling it to work in $HTTP["url"] conditionals (fixes #2526)
214   * [auto* build] remove -no-undefined from linker flags, as we actually link modules with undefined symbols (fixes #2533)
215   * [mod_mysql_vhost] fix memory leak on config init (#2530)
216   * [mod_webdav] fix fd leak found with parfait (fixes #2530, thx kukackajiri)
218 - 1.4.33 - 2013-09-27
219   * mod_fastcgi: fix mix up of "mode" => "authorizer" in other fastcgi configs (fixes #2465, thx peex)
220   * fix handling of If-Modified-Since if If-None-Match is present (don't return 412 for date parsing errors);
221     follow current draft for HTTP/1.1, which tells us to ignore If-Modified-Since if we have matching etags.
222   * [mod_fastcgi,log] support multi line logging (fixes #2252)
223   * call ERR_clear_error only for ssl connections in CON_STATE_ERROR
224   * reject non ASCII characters in HTTP header names
225   * [mod_auth] use crypt() on encrypted password instead of extracting salt first (fixes #2483)
226   * [mod_auth] add htpasswd -s (SHA1) support if openssl is used (needs openssl for SHA1). This doesn't use any salt, md5 with salt is probably better.
227   * [mod_auth] fix base64_decode (#2484)
228   * fix some bugs found with canalyze (fixes #2484, thx Zhenbo Xu)
229   * fix undefined stuff found with clang
230   * [cmake] Use TARGET_LINK_LIBRARIES instead of LINK_FLAGS for library dependencies, also add -Wl,--as-needed to extra warnings (fixes #2448)
231   * [mod_auth] fix invalid read in digest qop=auth-int handling (fixes #2478)
232   * [auto* build] simplify autogen.sh, handle automake 1.13 test running (fixes #2490)
233   * [mod_userdir] add userdir.active option, "enabled" by default
234   * [core] return 501 Not Implemented in static file mode for all methods except GET/POST/HEAD/OPTIONS
235   * [core] recognize more http methods to forward to backends (fixes #2346)
236   * [ssl] use DH only if openssl supports it (fixes #2479)
237   * [network] use constants available at compile time for maximum number of chunks for writev instead of calling sysconf (fixes #2470)
238   * [ssl] Fix $HTTP["scheme"] conditional, could be "http" for ssl connections if the ssl $SERVER["socket"] conditional was nested (fixes #2501)
239   * [ssl] accept ssl renegotiations if they are not disabled (fixes #2491)
240   * [ssl] add option ssl.empty-fragments, defaulting to disabled (fixes #2492)
241   * [auth] put REMOTE_USER into cgi environment, making it accessible to lua via lighty.req_env (fixes #2495)
242   * [auth] new method "extern" to use already present REMOTE_USER (from magnet, ssl, ...) (fixes #2436)
243   * [core] remove requirement that default doc-root has to exist, there are reasonable scenarios not requiring static files at all
244   * [core] check whether server.chroot exists
245   * [mod_simple_vhost] fix cache; skip module if simple-vhost.server-root is empty (thx rm for reporting)
246   * [mod_accesslog] add accesslog.syslog-level option (fixes #2480)
247   * [core] allow files to be used as document-root (fixes #2475)
248   * [core] set signal handlers before forking child processes in modules/plugins_call_set_defaults (fixes #2502)
250 - 1.4.32 - 2012-11-21
251   * Code cleanup with clang/sparse (fixes #2437, thx kibi)
252   * Ignore EPIPE/ECONNRESET after SSL_shutdown
253   * Handle ENAMETOOLONG, return 404 Not Found (fixes #2396, thx dererkazo)
254   * configure.ac: remove old stuff, add some new to fix warnings in automake 1.12 (fixes #2419, thx blino)
255   * add PATCH method (fixes #2424)
256   * fix :port handling in $HTTP["host"] checks (fixes #2135. thx liming)
257   * network_server_init: fix double free and memleak on error (fixes #2440, thx kyprizel)
258   * detect "x-gzip"/"x-bzip2" as separate encodings, more strict encoding matching (fixes #2443)
259   * tests: make sure mod_proxy doesn't leave running processes (fixes #2435, thx kibi)
260   * mod_extforward: log address of untrusted proxy with debug.log-request-handling
261   * fix DoS in Connection header value split (reported by Jesse Sipprell, CVE-2012-5533)
262   * remove whitespace at end of header keys
264 - 1.4.31 - 2012-05-31
265   * [ssl] fix segfault in counting renegotiations for openssl versions without TLSEXT/SNI (thx carpii for reporting)
266   * Move fdevent subsystem includes to implementation files to reduce conflicts (fixes #2373)
267   * [mod_compress] fix handling if etags are disabled but cache-dir is set - may lead to double response
268   * disable mmap by default (fixes #2391)
269   * buffer_caseless_compare: always convert letters to lowercase to get transitive results, fixing array lookups (fixes #2405)
270   * Fix handling of empty header list entries in http_request_split_value, fixing invalid read in valgrind (fixes #2413)
271   * Fix access log escaping of " and \\ (fixes #1551)
272   * [mod_auth] Fix digest "md5-sess" implementation (Errata ID 1649, RFC 2617) (fixes #2410)
273   * [auth] Add "AUTH_TYPE" environment (for *cgi), remove fastcgi specific workaround, add fastcgi test case (fixes #889)
274   * [mod_*cgi,mod_accesslog] Fix splitting :port with ipv6 (fixes #2333, thx simoncpu)
275   * Detect multiple -f options: show error message instead of assert (fixes #2416)
276   * [mod_extforward] Support ipv6 addresses (fixes #1889)
277   * [mod_redirect] Support url.redirect-code option (fixes #2247)
278   * Fix --enable-mmap handling in configure.ac
280 - 1.4.30 - 2011-12-18
281   * Always use our 'own' md5 implementation, fixes linking issues on MacOS (fixes #2331)
282   * Limit amount of bytes we send in one go; fixes stalling in one connection and timeouts on slow systems.
283   * [ssl] fix build errors when Elliptic-Curve Diffie-Hellman is disabled
284   * Add static-file.disable-pathinfo option to prevent handling of urls like .../secret.php/image.jpg as static file
285   * Don't overwrite 401 (auth required) with 501 (unknown method) (fixes #2341)
286   * Fix mod_status bug: always showed "0/0" in the "Read" column for uploads (fixes #2351)
287   * [mod_auth] Fix signedness error in http_auth (fixes #2370, CVE-2011-4362)
288   * [ssl] count renegotiations to prevent client renegotiations
289   * [ssl] add option to honor server cipher order (fixes #2364, BEAST attack)
290   * [core] accept dots in ipv6 addresses in host header (fixes #2359)
291   * [ssl] fix ssl connection aborts if files are larger than the MAX_WRITE_LIMIT (256kb)
292   * [libev/cgi] fix waitpid ECHILD errors in cgi with libev (fixes #2324)
294 - 1.4.29 - 2011-07-03
295   * Fix mod_proxy waiting for response even if content-length is 0 (fixes #2259)
296   * Silence annoying "connection closed: poll() -> ERR" error.log message (fixes #2257)
297   * mod_cgi: make read buffer as big as incoming data block
298   * [build] Fix detection of libev (fixes #2300)
299   * ssl: Support for Diffie-Hellman and Elliptic-Curve Diffie-Hellman key exchange (fixes #2301)
300          add ssl.use-sslv3 (fixes #2246)
301          load all algorithms (fixes #2239)
302   * [ssl/md5] prefix our own md5 implementation with li_ so it doesn't conflict with the openssl one (fixes #2269)
303   * [ssl/build] some minor fixes; fix compile without ssl, cleanup ssl config buffers
304   * [proc,include_shell] log error if exec shell fails (fixes #2280)
305   * [*cgi] Use physical base dir (alias, userdir) as DOCUMENT_ROOT in cgi environments (fixes #2216)
306   * [doc] Move docs to outdated/ subdir and refer to wiki instead (fixes #2248)
307   * fdevent: add solaris eventports (fixes #2171)
309 - 1.4.28 - 2010-08-22
310   * Rename fdevent_event_add to _set to reflect what the function does. Fix some handlers. (fixes #2249)
311   * Fix buffer.h to include stdio.h as it is needer for SEGFAULT() (fixes #2250)
313 - 1.4.27 - 2010-08-13
314   * Fix handling return value of SSL_CTX_set_options (fixes #2157, thx mlcreech)
315   * Fix mod_proxy HUP handling (send final chunk, fix usage counter)
316   * mod_proxy: close connection on write error (fixes #2114)
317   * Check uri instead of physical path for directory redirect
318   * Fix detecting git repository (fixes #2173, thx ncopa)
319   * [mod_compress] Fix segfault when etags are disabled (fixes #2169)
320   * Reset uri.authority before TLS servername handling, reset all "keep-alive" data in connection_del (fixes #2125)
321   * Print double quotes properly when dumping config file (fixes #1806)
322   * Include IP addresses on error log on password failures (fixes #2191)
323   * Fix stalls while reading from ssl sockets (fixes #2197)
324   * Fix etag formatting on boxes with 32-bit longs
325   * Fix two compiler warnings
326   * mod_accesslog: fix %p for ipv6 sockets (fixes #2228, thx jo.henke)
327   * mod_fastcgi: Send 502 "Bad Gateway" if we couldn't open the file for X-Sendfile (fixes #2226)
328   * mod_staticfile: add debug output if we ignore a file with static-file.exclude-extensions (fixes #2215)
329   * mod_cgi: fix race condition leaving response not forwarded to client (fixes #2217)
330   * mod_accesslog: Fix var declarations mixed in source (fixes #2233)
331   * mod_status: Add version to status page (fixes #2219)
332   * mod_accesslog: optimize accesslog_append_escaped (fixes #2236, thx crypt)
333   * openssl: silence annoying error messages for errno==0 (fixes #2213)
334   * array.c: improve array_get_unused_element to check data type; fix mem leak if unused_element didn't find a matching entry (fixes #2145)
335   * add check to stop loading plugins twice
336   * cleanup fdevent code, removed linux-rtsig handler, replaced some fprintf calls
337   * only require FDEVENT_IN bit to be set for listening connections (fixes #2227)
338   * add libev fdevent handler: server.event-handler = "libev"
339   * mod_proxy: return response as soon as it is available (fixes #2196)
340   * don't overwrite global server.force-lowercase-filenames setting (fixes #2042)
341   * bind to IPV6-only if ipv6 address was specified (http://redmine.lighttpd.net/projects/lighttpd/wiki/IPv6-Config)
343 - 1.4.26 - 2010-02-07
344   * Fix request parser to handle packets with splitted \r\n\r\n (fixes #2105)
345   * Remove dependency on automake >= 1.11 with m4_ifdef check
346   * mod_accesslog: support %e (fixes #2113, thx presbrey)
347   * Fix mod_cgi cgi.execute-x-only option in global block
348   * mod_fastcgi: x-sendfile2 parse error debugging
349   * Fix mod_proxy dead host detection if connect() fails
350   * Fix fd leaks in mod_cgi (fds not closed on pipe/fork failures, found by Rodrigo, fixes #2158, #2159)
351   * Fix segfault with broken rewrite/redirect patterns (fixes #2140, found by crypt)
352   * Append to previous buffer in con read, fix DoS/OOM vulnerability (fixes #2147, found by liming, CVE-2010-0295)
353   * Fix HUP detection in close-state if event-backend doesn't support FDEVENT_HUP (like select or poll on FreeBSD)
355 - 1.4.25 - 2009-11-21
356   * mod_magnet: fix pairs() for normal tables and strings (fixes #1307)
357   * mod_magnet: add traceback for printing lua errors
358   * mod_rewrite: fix compile error if compiled without pcre
359   * disable warning "CLOSE-read" (fixes #2091)
360   * mod_rrdtool: fix creating file if it doesn't exist (#1788)
361   * reset tlsext_server_name in connection_reset - fixes random hostnames in the $HTTP["host"] conditional
362   * export some SSL_CLIENT_* vars for client cert validation (fixes #1288, thx presbrey)
363   * mod_fastcgi: fix mod_fastcgi packet parsing
364   * mod_fastcgi: Don't reconnect after connect() succeeded (fixes #2096)
365   * Fix configure.ac to allow autoreconf, also enables make V=0
367 - 1.4.24 - 2009-10-25
368   * Add T_CONFIG_INT for bigger integers from the config (needed for #1966)
369   * Use unsigned int (and T_CONFIG_INT) for max_request_size
370   * Use unsigned int for secdownload.timeout (fixes #1966)
371   * Keep url/host values from connection to display information while keep-alive in mod_status (fixes #1202)
372   * Add server.breakagelog, a "special" stderr (fixes #1863)
373   * Fix config evaluation for debug.log-timeouts option (#1529)
374   * Add "cgi.execute-x-only" to mod_cgi, requires +x for cgi scripts (fixes #2013)
375   * Fix FD_SETSIZE comparision warnings
376   * Add "lua-5.1" to searched pkg-config names for lua
377   * Fix unused function webdav_lockdiscovery in mod_webdav
378   * cmake: Fix crypt lib check
379   * cmake: Add -export-dynamic to link flags, fixes build on FreeBSD
380   * Set FD_CLOEXEC for bound sockets before pipe-logger forks (fixes #2026)
381   * Reset ignored signals to SIG_DFL before exec() in fastcgi/scgi (fixes #2029)
382   * Show "no uri specified -> 400" error only when "debug.log-request-header-on-error" is enabled (fixes #2030)
383   * Fix hanging connection in mod_scgi (fixes #2024)
384   * Allow digits in hostnames in more places (fixes #1148)
385   * Use connection_reset instead of handle_request_done for cleanup callbacks
386   * Change mod_expire to append Cache-Control instead of overwriting it (fixes #1997)
387   * Allow all comparisons for $SERVER["socket"] - only bind for "=="
388   * Remove strptime failed message (fixes #2031)
389   * Fix issues found with clang analyzer
390   * Try to fix server.tag issue with localized svnversion
391   * Fix handling network-write return values (#2024)
392   * Use disable-time in fastcgi for all disables after errors, default is 1sec (fixes #2040)
393   * Remove adaptive spawning code from fastcgi (was disabled for a long time)
394   * Allow mod_mysql_vhost to use stored procedures (fixes #2011, thx Ben Brown)
395   * Fix ipv6 in mod_proxy (fixes #2043)
396   * Print errors from include_shell to stderr
397   * Set tm.tm_isdst = 0 before mktime() (fixes #2047)
398   * Use linux-epoll by default if available (fixes #2021, thx Olaf van der Spek)
399   * Print an error if you use too many captures in a regex pattern (fixes #2059)
400   * Combine Cache-Control header value in mod_expire to existing HTTP header if header already added by other modules (fixes #2068)
401   * Remember keep-alive-idle in separate variable (fixes #1988)
402   * Fix header inclusion order, always include "config.h" before any system header
403   * mod_webdav: Patch to skip login information for domain part of Destination field (fixes #1793)
404   * mod_webdav: Delete old properties before updating new for MOVE (fixes #1317)
405   * Read hostname from absolute uris in the request line (fixes #1937)
406   * mod_fastcgi: don't disable backend if disable-time is 0 (fixes #1825)
407   * mod_compress: match partial+full content-type (fixes #1552)
408   * mod_fastcgi: fix is_local detection, respawn backends if bin-path is set (fixes #897)
409   * Fix linger-on-close behaviour to avoid rare failure conditions (was r2636, fixes #657)
410   * mod_fastcgi: restart local procs immediately after they terminated, fix local procs handling
411   * Fix segfault on invalid config "duplicate else conditions" (fixes #2065)
412   * mod_usertrack: Use T_CONFIG_INT for max-age, solves range problem (#1455)
413   * mod_accesslog: configurable timestamp logging (fixes #1479)
414   * always define _GNU_SOURCE
415   * Add some iterators for mod_magnet (fixes #1307)
416   * Fix close_timeout_ts trigger (should finally fix lingering close)
417   * mod_rewrite: add url.rewrite-[repeat-]if-not-file to rewrite if file doesn't exist or is not a regular file (fixes #985, thx lucas aerbeydt)
418   * Add TLS servername indication (SNI) support (fixes #386, thx Peter Colberg <peter@colberg.org>)
419   * Add SSL Client Certificate verification (#1288)
420   * mod_fastcgi: Fix host->active_procs counter, return 503 if connect wasn't successful after 5 tries (fixes #1825)
421   * mod_accesslog: escape special characters (fixes #1551, thx icy)
422   * fix mod_webdav crash from #1793 (fixes #2084, thx hiroya)
423   * Don't print ssl error if client didn't support TLS SNI
424   * Fix linger close timeout handling, drop timeout to 5 seconds (fixes #2086)
425   * Fix broken return values from int to enum in mod_fastcgi
427 - 1.4.23 - 2009-06-19
428   * Added some extra warning options in cmake and fix the resulting warnings (unused/static functions)
429   * New lighttpd man page (moved it to section 8) (fixes #1875)
430   * Create rrd file for empty rrdfile in mod_rrdtool (#1788)
431   * Fix workaround for incorrect path info/scriptname if fastcgi prefix is "/" (fixes #729)
432   * Finally removed spawn-fcgi
433   * Allow xattr to overwrite mime type (fixes #1929)
434   * Remove link from errormsg about fastcgi apps (fixes #1942)
435   * Strip trailing dot from "Host:" header
436   * Remove the optional port info from SERVER_NAME (thx Mr_Bond)
437   * Fix mod_proxy RoundRobin (off by one problem if only one backend is up)
438   * Rename configure.in to configure.ac, with small cleanups (fixes #1932)
439   * Add proper SUID bit detection (fixes #416)
440   * Check for regular file in mod_cgi, so we don't try to start directories
441   * Include mmap.h from chunk.h to fix some problems with #define mmap mmap64 (fixes #1923)
442   * Add support for pipe logging for server.errorlog (fixes #296)
443   * Add revision number to package version for svn/git checkouts
444   * Use server.tag for SERVER_SOFTWARE if configured (fixes #357)
445   * Fix trailing zero char in REQUEST_URI after "strip-request-uri" in mod_fastcgi
446   * mod_magnet: Add env["request.remote-ip"] (fixes #1740)
447   * mod_magnet: Add env["request.path-info"]
448   * Change name/version separator back to "/" (affects every place where the version is printed)
449   * Fix bug with FastCGI request id overflow under high load; just use always id 1 as we don't use multiplexing. (thx jgray)
450   * Add some dirlisting enhancements (fixes #1458)
451   * Add option to enable TCP_DEFER_ACCEPT (fixes #1447)
452   * Limit amount of bytes read for one read-event (fixes #1070)
453   * Add evasive.silent option (fixes #1438)
454   * Make mod_extforward headers configurable (fixes #1545)
455   * Add '%_' pattern for complete hostname in mod_evhost (fixes #1737)
456   * Add IPv6 support to mod_proxy (fixes #1537)
457   * mod_ssi printenv: print cgi env, add environment vars to cgi env (fixes #1713)
458   * Fix error message if no auth backend was set
459   * Fix SERVER_NAME port stripping (fixes #1968)
460   * Fix x-sendfile 2gb limiting (fixes #1970)
461   * Fix mod_cgi environment keys mangling (fixes #1969)
462   * Fix workaround for incorrect path info/scriptname if scgi prefix is "/" (fixes #729)
463   * Fix max-age value in mod_expire for 'modification' (fixes #1978)
464   * Fix evasive.silent option (#1438)
465   * Fix mod-fastcgi counters
466   * Modify fastcgi error message
467   * Backup errno for later usage (reported by Guido Reina via mailinglist)
468   * Improve FastCGI performance (fixes #1999)
469   * Workaround broken operating systems: check for trailing '/' in filenames (fixes #1989)
470   * Allow using pcre with cross-compiling (pcre-config got fixed; fixes #1986)
471   * Add "lighty.req_env" table to mod_magnet for setting/getting environment values for cgi (fixes #1967, thx presbrey)
472   * Fix segfault in mod_expire after failed config parsing (fixes #1992)
473   * Add ssi.content-type option (default text/html, fixes #615)
474   * Add support for "real" entropy from /dev/[u]random (fixes #1977)
475   * Adding support for additional chars in LDAP usernames (fixes #1941)
476   * Ignore multiple "If-None-Match" headers (only use first one, fixes #753)
477   * Fix 100% cpu usage if time() < 0 (thx to gaspa and cate, fixes #1964)
478   * Allow max-keep-alive-requests to depend on conditional (fixes #1881)
479   * Make dependency on svnversion/git optional (for devel versionstamp, fixes #2009)
481 - 1.4.22 - 2009-03-07
482   * Fix wrong lua type for CACHE_MISS/CACHE_HIT in mod_cml (fixes #533)
483   * Fix default vhost in mod_simple_vhost (fixes #1905)
484   * Handle EINTR in mod_rrdtool (fixes #604)
485   * Fix rrd error after graceful restart (fixes #419)
486   * Fix EAGAIN handling for freebsd sendfile (fixes #1913, thx AnMaster for spotting the problem)
487   * Fix segfault in mod_scgi (fixes #1911)
488   * Treat EPIPE as connection-closed error in network_freebsd_sendfile.c (another fix from #1913)
489   * Fix useless redirection of stderr in mod_rrdtool, as it gets redirected to /dev/null later. (fixes #1922)
490   * Fix some problems with more strict compilers (#1923)
491   * Fix segfault if siginfo_t* is NULL in sigaction handler (fixes #1926)
493 - 1.4.21 - 2009-02-16
495   * Fix base64 decoding in mod_auth (#1757, thx guido)
496   * Fix mod_cgi segfault when bound to unix domain socket (#653)
497   * Do not rely on ioctl FIONREAD (#673)
498   * Now really fix mod auth ldap (#1066)
499   * Fix leaving zombie process with include_shell (#1777)
500   * Removed debian/, openwrt/ and cygwin/; they weren't kept up-to-date, and we decided to remove dist. specific stuff
501   * Try to convert string options to shorts for numeric options in config file; allows to use env-vars for numeric options. (#1159, thx andrewb)
502   * Do not cache default vhost in mod_simple_vhost (#709)
503   * Trust pcre-config, do not check for pcre manually (#1769)
504   * Fix fastcgi authorization in subdirectories with check-local=disabled; don't split pathinfo for authorizer. (#963)
505   * Add possibility to disable methods in mod_compress (#1773)
506   * Fix duplicate connection keep-alive/transfer-encoding headers (#960)
507   * Fixed fix for round-robin in mod_proxy (forgot to increment the index) (#1715)
508   * Fix fastcgi-authorizer handling; Status: 200 is now accepted as the doc requests
509   * Compare address family in inet_ntop_cache
510   * Revert CVE-2008-4359 (#1720) fix "encoding+simplifying urls for rewrite/redirect": too many regressions.
511   * Use FD_CLOEXEC if possible (fixes #1821)
512   * Optimized buffer usage in mod_proxy (fixes #1850)
513   * Fix uninitialized value in time struct after strptime
514   * Do not pass Proxy-Connection: header from client to backend http server in mod_proxy (#1877)
515   * Fix wrong malloc sizes in mod_accesslog (probably nothing bad happened...) (fixes #1855, thx ycheng)
516   * Some small buffer.c fixes (closes #1837)
517   * Remove floating point math from server.c (fixes #1402)
518   * Disable SSLv2 by default
519   * Use/enforce sane max-connection values (fixes #1803)
520   * Allow mod_compress to return 304 (Not Modified); compress ignores the static-file.etags option.(fixes #1884)
521   * Add option to ignore the "Expect: 100-continue" header instead of returning 417 Expectation failed (closes #1017)
522   * Use modified etags in mod_compress (fixes #1800)
523   * Fix max-connection limit handling/100% cpu usage (fixes #1436)
524   * Fix error handling in freebsd-sendfile (fixes #1813)
525   * Silenced the annoying "request timed out" warning, enable with the "debug.log-timeouts" option (fixes #1529)
526   * Allow tabs in header values (fixes #1822)
527   * Added Language conditional (fixes #1119); patch by petar
528   * Fix wrong format strings (#1900, thx stepancheg)
530 - 1.4.20 - 2008-09-30
532   * Fix mod_compress to compile with old gcc version (#1592)
533   * Fix mod_extforward to compile with old gcc version (#1591)
534   * Update documentation for #1587
535   * Fix #285 again: read error after SSL_shutdown (thx marton.illes@balabit.com) and clear the error queue before some other calls (CVE-2008-1531)
536   * Fix mod_magnet: enable "request.method" and "request.protocol" in lighty.env (#1308)
537   * Fix segfault for appending matched parts if there was no regex matching (just give empty strings) (#1601)
538   * Use data_response_init in mod_fastcgi x-sendfile handling for response.headers, fix a small "memleak" (#1628)
539   * Don't send empty Server headers (#1620)
540   * Fix conditional interpretation of core options
541   * Enable escaping of % and $ in redirect/rewrite; only two cases changed their behaviour: "%%" => "%", "$$" => "$"
542   * Fix accesslog port (should be port from the connection, not the "server.port") (#1618)
543   * Fix mod_fastcgi prefix matching: match the prefix always against url, not the absolute filepath (regardless of check-local)
544   * Overwrite Content-Type header in mod_dirlisting instead of inserting (#1614), patch by Henrik Holst
545   * Handle EINTR in mod_cgi during write() (#1640)
546   * Allow all http status codes by default; disable body only for 204,205 and 304; generate error pages for 4xx and 5xx (#1639)
547   * Fix mod_magnet to set con->mode = p->id if it generates content, so returning 4xx/5xx doesn't append an error page
548   * Remove lighttpd.spec* from source, fixing all problems with it ;-)
549   * Do not rely on PATH_MAX (POSIX does not require it) (#580)
550   * Disable logging to access.log if filename is an empty string
551   * Implement a clean way to open /dev/null and use it to close stdin/out/err in the needed places (#624)
552   * merge spawn-fcgi changes from trunk (from @2191)
553   * let spawn-fcgi propagate exit code from spawned fcgi application
554   * close connection after redirect in trigger_b4_dl (thx icy)
555   * close connection in mod_magnet if returned status code
556   * fix bug with IPv6 in mod_evasive (#1579)
557   * fix scgi HTTP/1.* status parsing (#1638), found by met@uberstats.com
558   * [tests] fixed system, use foreground daemons and waitpid
559   * [tests] removed pidfile from test system
560   * [tests] fixed tests needing php running (if not running on port 1026, search php in env[PHP] or /usr/bin/php-cgi)
561   * fixed typo in mod_accesslog (#1699)
562   * replaced buffer_{append,copy}_string with the _len variant where possible (#1732) (thx crypt)
563   * case insensitive match for secdownload md5 token (#1710)
564   * Handle only HEAD, GET and POST in mod_dirlisting (same as in staticfile) (#1687)
565   * fixed mod_secdownload problem with unsigned time_t (#1688)
566   * handle EAGAIN and EINTR for freebsd sendfile (#1675)
567   * Use filedescriptor 0 for mod_scgi spawn socket, redirect STDERR to /dev/null (#1716)
568   * fixed round-robin balancing in mod_proxy (#1715)
569   * fixed EINTR handling for waitpid in mod_fastcgi
570   * mod_{fast,s}cgi: overwrite environment variables (#1722)
571   * inserted many con->mode checks; they should prevent two modules to handle the same request if they shouldn't (#631)
572   * fixed url encoding to encode more characters (#266)
573   * allow digits in [s]cgi env vars (#1712)
574   * fixed dropping last character of evhost pattern (#161)
575   * print helpful error message on conditionals in global block (#1550)
576   * decode url before matching in mod_rewrite (#1720) -- (reverted for 1.4.21)
577   * fixed conditional patching of ldap filter (#1564)
578   * Match headers case insensitive in response (removing of X-{Sendfile,LIGHTTPD-*}, catching Date/Server) [2281]
579   * fixed bug with case-insensitive filenames in mod_userdir (#1589), spotted by "anders1" (CVE-2008-4360)
580   * fixed format string bugs in mod_accesslog for SYSLOG
581   * replaced fprintf with log_error_write in fastcgi debug
582   * fixed mem leak in ssi expression parser (#1753), thx Take5k
583   * hide some ssl errors per default, enable them with debug.log-ssl-noise (#397)
584   * do not send content-encoding for 304 (#1754), thx yzlai
585   * fix segfault for stat_cache(fam) calls with relative path (without '/', can be triggered by x-sendfile) (#1750)
586   * fix splitting of auth-ldap filter
587   * workaround ldap connection leak if a ldap connection failed (restarting ldap)
588   * fix auth.backend.ldap.bind-dn/pw problems (only read from global context for temporary ldap reconnects, thx ruskie)
589   * fix memleak in request header parsing (#1774, thx qhy) (CVE-2008-4298)
590   * fix mod_rewrite memleak/endless loop detection (#1775, thx phy - again!)
591   * use decoded url for matching in mod_redirect (#1720) (CVE-2008-4359) -- (reverted for 1.4.21)
593 - 1.4.19 - 2008-03-10
595   * added support for If-Range: <date> (#1346)
596   * added support for matching $HTTP["scheme"] in configs
597   * fixed initgroups() called after chroot (#1384)
598   * fixed case-sensitive check for Auth-Method (#1456)
599   * execute fcgi app without /bin/sh if used as argument to spawn-fcgi (#1428)
600   * fixed a bug that made /-prefixed extensions being handled also when
601     matching the end of the uri in fcgi,scgi and proxy modules (#1489)
602   * print error if X-LIGHTTPD-send-file cannot be done; reset header
603     Content-Length for send-file. Patches by Stefan Buehler
604   * prevent crash in certain php-fcgi configurations (#841)
605   * add IdleServers and Scoreboard directives in ?auto mode for mod_status (#1507)
606   * open log immediately after daemonizing, fixes SIGPIPEs on startup  (#165)
607   * HTTPS env var should be "on" when using mod_extforward and the X-Forwarded-Proto header is set. (#1499)
608   * generate ETag and Last-Modified headers for mod_ssi based on newest modified include (#1491)
609   * support letterhomes in mod_userdir (#1473)
610   * support chained proxies in mod_extforward (#1528)
611   * fixed bogus "cgi died ?" if we kill the CGI process on shutdown
612   * fixed ECONNRESET handling in network-openssl
613   * fixed handling of EAGAIN in network-linux-sendfile (#657)
614   * reset conditional cache (#1164)
615   * create directories in mod_compress (was broken with alias/userdir) (#1027)
616   * fixed out of range access in fd array (#1562, #372) (CVE-2008-0983)
617   * mod_compress should check if the request is already handled, e.g. by fastcgi (#1565)
618   * remove broken workaround for buggy Opera version with ssl/chunked encoding (#285)
619   * generate etag/last-modified header for on-the-fly-compressed files (#1171)
620   * req-method OPTIONS: do not insert default response if request was denied, do not deny OPTIONS by default (#1324)
621   * fixed memory leak on windows (#1347)
622   * fixed building outside of the src dir (#1349)
623   * fixed including of stdint.h/inttypes.h in etag.c (#1413)
624   * do not add Accept-Ranges header if range-request is disabled (#1449)
625   * log the ip of failed auth tries in error.log (enhancement #1544)
626   * fixed RoundRobin in mod_proxy (#516)
627   * check for symlinks after successful pathinfo matching (#1574)
628   * fixed mod-proxy.t to run with a builddir outside of the src dir
629   * do not suppress content on "307 Temporary Redirect" (#1412)
630   * fixed Content-Length header if response body gets removed in connections.c (#1412, part 2)
631   * do not generate a "Content-Length: 0" header for HEAD requests, added test too
632   * remove compress cache file if compression or write failed (#1150)
633   * fixed body handling of status 300 requests 
634   * spawn-fcgi: only try to connect to unix socket (not tcp) before spawning (#1575)
635   * fix sending source of cgi script instead of 500 error if fork fails (CVE-2008-1111)
636   * fix min-procs handling in mod_scgi.c, just set to max-procs (patch from #623)
637   * fix sending "408 - Timeout" instead of "410 - Gone" for timedout urls in mod_secdownload (#1440)
638   * workaround #1587: require userdir.path to be set to enable mod_userdir (empty string allowed) (CVE-2008-1270)
639   * make configure checks for --with-pcre, --with-zlib and --with-bzip2 failing if the headers aren't found
640   * fixed handling of waitpid() == EINTR mod_ssi on solaris 
642 - 1.4.18 - 2007-09-09
644   * fixed compile error on IRIX 6.5.x on prctl() (#1333)
645   * fixed forwarding a SIGINT and SIGHUP when using max-workers (#902)
646   * fixed FastCGI header overrun in mod_fastcgi (reported by mattias@secweb.se)
647   * fixed hanging redirects with keep-alive due to missing
648     "Content-Length: 0" headers
649   * fixed crashing when using undefined environment variables in the config
650   * fixed compilation of mod_mysql_vhost on irix (#1341)
652 - 1.4.17 - 2007-08-29
654   * added dir-listing.set-footer in mod_dirlisting (#1277)
655   * added sending UID and PID for SIGTERM and SIGINT to the logs
656   * fixed hardcoded font-sizes in mod_dirlisting (#1267)
657   * fixed different ETag length on 32/64 platforms (#1279)
658   * fixed compression of files < 128 bytes by disabling compression (#1241)
659   * fixed mysql server reconnects (#518)
660   * fixed disabled keep-alive for dynamic content with HTTP/1.0 (#1166)
661   * fixed crash on mixed EOL sequences in mod_cgi
662   * fixed key compare (#1287)
663   * fixed invalid char in header values (#1286)
664   * fixed invalid "304 Not Modified" on broken timestamps
665   * fixed endless loop on shrinked files with sendfile() on BSD (#1289)
666   * fixed counter overrun in ?auto in mod_status (#909)
667   * fixed too aggresive caching of nested conditionals (#41)
668   * fixed possible overflow in unix-socket path checks on BSD (#713)
669   * fixed extra Content-Length header on 1xx, 204 and 304 (#1002)
670   * fixed handling of duplicate If-Modified-Since to return 304 
671   * fixed extracting status code from NPH scripts (#1125)
672   * fixed prctl() usage (#1310)
673   * removed config-check if passwd files exist (#1188)
674   * fixed crash when etags are disabled but the client sends one (#1322)
675   * fixed crash when freeing the config in mod_alias
676   * fixed server.error-handler-404 breakage from 1.4.16 (#1270)
677   * fixed entering 404-handler from dynamic content (#948)
678   * added more debug infos for FAM based stat-cache
679   * use more LSB like paths in the sample config (#1242)
681 - 1.4.16 - 2007-07-25
683   * added static-file.etags, etag.use-inode, etag.use-mtime, etag.use-size
684     to customize the generation of ETags for static files. (#1209) 
685     (patch by <Yusufg@gmail.com>)
686   * fixed typecast of NULL on execl() (#1235)
687     (patch by F. Denis)
688   * fixed circumventing url.access-deny by trailing slash (#1230)
689   * fixed crash on duplicate headers with trailing WS (#1232)
690   * fixed accepting more connections then requested (#1216)
691   * fixed mem-leak in mod_auth (reported by Stefan Esser)
692   * fixed crash with md5-sess and cnonce not set in mod_auth (reported by Stefan Esser)
693   * fixed missing check for base64 encoded string in mod_auth and Basic auth
694     (reported by Stefan Esser)
695   * fixed possible crash in Auth-Digest header parser on trailing WS in 
696     mod_auth (reported by Stefan Esser) 
697   * fixed check on stale errno values, which broke handling of broken fastcgi
698     applications. (#1245)
699   * fixed crash on 32bit archs when debug-msgs are printed in mod_scgi, mod_fastcgi 
700     and mod_webdav (#1263)
702 - 1.4.15 - 2007-04-13
704   * fixed broken Set-Cookie headers
706 - 1.4.14 - 2007-04-13
708   * fix crash if gethostbyaddr() failed on redirect [1718]
709   * properly handle 206 responses generated by *cgi scripts. (#755) [1716]
710   * added HTTPS=on to the environment of cgi scripts (#861) [1684]
711   * fix handling of 303 (#1045) [1678]
712   * made the configure check for lua more portable [1677]
713   * added mod_extforward module [1665]
714   * references to the fam stat cache engine should be conditional (#1039) [1664]
715   * fix http 500 errors (colin.stephen/at/o2.com) #1041 [1663]
716   * prevent wrong pidfile unlinking on graceful restart (Chris Webb) [1656]
717   * ignore empty packets from STDERR stream. #998
718   * fix a crash for files with an mtime of 0 reported by cubiq on irc [1519]
719     CVE-2007-1870
720   * allow empty passwords with ldap (Jörg Sonnenberger) [1516]
721   * mod_scgi.c segfault fix #964 [1501]
722   * Added round-robin support to mod_fastcgi [1500]
723   * Handle DragonFlyBSD the same way as Freebsd (Jörg Sonnenberger) [1492,1676]
724   * added now and weeks support to mod_expire. #943
725   * fix cpu hog in certain requests [1473] CVE-2007-1869
726   * fix for handling hostnames with trailing dot [1406]
727   * fixed header-injection via server.tag (#1106)
728   * disabled caching of files without a content-type to solve the
729     aggressive caching of FF
730   * remove trailing white-spaces from HTTP-requests before parsing (#1098)
731   * fixed accesslog.use-syslog in a conditional and the caching of the
732     accesslog for files (fixes #1064)
733   * fixed various crashes at startup on broken accesslog.format strings (#1000)
734   * fixed handling of %% in accesslog.format
735   * fixed conditional dir-listing.exclude (#930)
736   * reduced default PATH_MAX to 255 (#826)
737   * ECONNABORTED is not known on cygwin (#863)
738   * fixed crash on url.redirect and url.rewrite if %0 is used in a global context
739     (#800)
740   * fixed possible crash in debug-message in mod_extforward
741   * fixed compilation of mod_extforward on glibc < 2.3.4
742   * fixed include of empty in the configfiles (#1076)
743   * send SIGUSR1 to fastcgi children before SIGTERM. libfcgi wants SIGUSR1. (#737)
744   * fixed missing AUTH_TYPE entry in the fastcgi environment. (#889)
745   * fixed compilation in network_writev.c on MacOS X 10.3.9 (#903)
746   * added kill-signal as another setting for fastcgi backends. See the wiki for more.
748 - 1.4.13 - 2006-10-09
750   * added initgroups in spawn-fcgi (#871)
751   * added apr1 support htpasswd in mod-auth (#870)
752   * added lighty.stat() to mod_magnet
753   * fixed segfault in splitted CRLF CRLF sequences
754     (introduced in 1.4.12) (#876)
755   * fixed compilation of LOCK support in mod-webdav
756   * fixed fragments in request-URLs (#869)
757   * fixed pkg-config check for lua5.1 on debian
758   * fixed Content-Length = 0 on HEAD requests without
759     a known Content-Length (#119)
760   * fixed mkdir() forcing 0700 (#884)
761   * fixed writev() on FreeBSD 4.x and older (#875)
762   * removed warning about a 404-error-handler
763     returned 404
764   * backported and fixed the buildsystem changes for
765     webdav locks
766   * fixed plugin loading so we can finally load lua
767     extensions in mod_magnet scripts
768   * fixed large uploads if xattr is enabled
770 - 1.4.12 - 2006-09-23
772   * added experimental LOCK support for webdav
773   * added Content-Range support for PUT in webdav
774   * added support for += on empty arrays in config-files
775   * added ssl.cipher-list and ssl.use-sslv2
776   * added $HTTP["querystring"] conditional
777   * added mod_magnet as long-term replacement for mod_cml
778   * added work-around for a Opera Bug with SSL + Chunked-Encoding
779   * changed --print-config to print to stdout instead of stderr
780   * changed no longer use 0600 for new files with webdav. umask is
781     honored. Make sure you have set a proper umask.
782   * fixed upload hangs with SSL
783   * fixed connection drops with SSL (aka bad retry)
784   * fixed path traversal with \ on cygwin
785   * fixed mem-leak in mod_flv_streaming
786   * fixed required trailing newline in configfiles (#142)
787   * fixed quoting the autoconf files (#466)
788   * fixed empty Host: + $HTTP["host"] handling (#458)
789   * fixed handling of If-Modified-Since if ETag is not set
790   * fixed default-shell if SHELL is not set (#441)
791   * fixed appending and assigning of env.* vars
792   * fixed empty FCGI_STDERR packets
793   * fixed conditional server.allow-http-11
794   * fixed handling of follow-symlink + lstat()
795   * fixed SIGHUP handling if max-workers is used
796   * fixed "Software caused connection abort" messages on FreeBSD
798 - 1.4.11 - 2006-03-09
800   * added ability to specify which ip address spawn-fci listens on
801     (agkr/at/pobox.com)
802   * added mod_flv_streaming to streaming Flash Movies efficiently
803   * fixed handling of error codes returned by mod_dav_svn behing a
804     mod_proxy
805   * fixed error-messages in mod_auth and mod_fastcgi
806   * fixed re-enabling overloaded local fastcgi backends
807   * fixed handling of deleted files in linux-sendfile
808   * fixed compilation on BSD and MacOSX
809   * fixed $SERVER["socket"] on a already bound socket
810   * fixed local source retrieval on windows
811     (secunia)
812   * fixed hanging cgi if remote side is dieing while reading
813     from the pipe (sandy/at/meebo.com)
815 - 1.4.10 - 2006-02-08
817   * added docs for mod_dirlisting
818   * added fastcgi.map-extensions to mod_fastcgi
819   * fixed load balancing for mod_fastcgi
820   * fixed extra newline for syslog() in mod_accesslog
821   * fixed user-track cookie for IE in mod_usertrack
822   * fixed crash in digest handling in mod_auth
823   * fixed handling of 301 response-bodies from a mod_proxy backend
824   * fixed loading of base modules if server.modules is not set
825   * fixed broken cgi if mod_scgi is loaded
827 - 1.4.9 - 2006-01-14
829   * added server.core-files option (sandy <sandy/at/meebo.com>)
830   * added docs for mod_status
831   * added mod_evasive to limit the number of connections by IP (<w1zzard/at/techpowerup.com>)
832   * added the power-magnet to mod_cml
833   * added internal statistics to mod_fastcgi
834   * added server.statistics-url to get internal statistics from mod_status
835   * added support for conditional range-requests through If-Range
836   * added static building via scons
837   * fixed 100% cpu loops in mod_cgi ("sandy" <sjen/at/cs.stanford.edu>)
838   * fixed handling for secure-download.timeout (jamis/at/37signals.com)
839   * fixed IE bug in content-charset in the output of mod_dirlisting (sniper/at/php.net)
840   * fixed typos and language in the docs (ryan-2005/at/ryandesign.com)
841   * fixed assertion in mod_cgi on HEAD request is Content-Length (<sandy/at/meebo.com>)
842   * fixed handling if equal but duplicate If-Modified-Since request headers
843   * fixed endless loops in mod_fastcgi if backend is dead
844   * fixed Depth: 1 handling in PROPFIND requests on empty dirs
845   * fixed encoding of UTF8 encoded dirlistings (Jani Taskinen <sniper/at/iki.fi>)
846   * fixed initial bind to a unix-domain socket through server.bind
847   * fixed handling of lowercase filesystems
848   * fixed duplicate request headers cause by mod_setenv
850 - 1.4.8 - 2005-11-23
852   * added auto-reconnect to ldap-server in mod_auth
853     (joerg/at/netbsd.org)
854   * changed auth.ldap-cafile to be optional
855     (joerg/at/netbsd.org)
856   * added strip_request_uri in mod_fastcgi
857   * added more X-* headers to mod_proxy
858     (Ben Grimm <bengrimm/at/gmail.com>)
859   * added 'debug' to simple-vhost to suppress the
860     (mod_simple_vhost.c.157) No such file or directory /servers/ww.lighttpd.net/pages/
861     messages by default
862   * added support to let the server listen on UNIX-socket
863   * changed default stat-cache-engine to 'simple'
864   * removed debian/ dir from source package on request by packager
865   * fixed max-age timestamps in mod_expire
866   * fixed encoding the filenames in PROPFIND in mod_webdav
867   * fixed range request handling in network_writev
868   * fixed retry on connect error in mod_fastcgi
869     (Robert G. Jakabosky <bobby/at/alphatrade.com>)
870   * fixed possible crash in mod_webdav if sqlite3 support
871     is available but not use
872   * fixed fdvent-handler init if server.max-worker was used
873     (Siddharth Vijayakrishnan <mail/at/bluefireworks.net>)
874   * fixed missing cleanup in mysql_vhost
875   * fixed assert() in "connections.c:962:
876       connection_handle_read_state: Assertion 'c->mem->used' failed."
877   * fixed 64bit issue in md5
878   * fixed crash in mod_status
879   * fixed duplicate headers in mod_proxy
880   * fixed Content-Length in HEAD request in mod_proxy
881   * fixed unsigned/signed comparisions
882   * fixed streaming in mod_cgi
883   * fixed possible overflow in password-salt handling
884     (reported on slashdot by james-web/at/and.org)
885   * fixed server-traffic-limit if connection limit is not set
887 - 1.4.7 - 2005-11-02
889   * added FD_CLOEXEC to fds which are kept open for a longer time
890   * added smaller, moving mmaped windows to network_writev
891   * added madvise() to instruct the kernel the do proper read-ahead in network_writev
892   * added support for %I in mod_accesslog
893   * added better compat to Apache for ?auto in mod_status
894   * added support for userdirs without a entry in /etc/passwd in mod_userdir
895     (rob/at/inversepath.com)
896   * added startup-time selectable network-backend
897   * added location of upload-files to config as array
898   * added webdav.log-xml for logging xml-content in mod_webdav
899   * added Cache-Control: max-age to mod_expire
900   * workaround missing client-bug by assuming we received a close-notify on
901     non-keep-alive requests in SSL request
902   * disabled kerberos5 support by default to fix compilation on RHEL
903   * fixed order of library checks to fix compilation on Solaris 9
904   * fixed open file-descriptors on read-error
905   * fixed crash if /var/tmp is not writable
907 - 1.4.6 - 2005-10-09
909   * fixed compilation on MacOS X and cygwin
910   * fixed compressed output if caching was disabled (seen in IE and Opera)
911   * fixed range-request option
912   * fixed mysql-vhost module (was broken in 1.4.5)
913   * fixed false positive in the detection of case-insensitive FS
915 - 1.4.5 - 2005-10-02
917   * added all DeltaV methods as known methods
918   * added buffer-to-disk of request content
919   * added warning for unused variables in conditionals
920   * added global index-generators to mod_indexfile
921   * fixed caching for remote-ip conditionals with keep-alive
922   * fixed redirects with content
923   * fixed infinite loop in exec-cmd in mod_ssi
924   * fixed segfault in config handling for mod_mysql_vhost
925   * fixed segfault on FIFOs/Sockets
926   * fixed possible crash on uninit memory if If-Modified-Since was too long
927   * fixed accounting of mem-chunks
928   * fixed starving of connections on high load
929   * fixed crc errors in mod_compress on 64bit platforms
930   * fixed handling of overlapping fastcgi packets (bug added in 1.4.4)
931   * fixed logic of conditionals if a header was not set
932   * fixed a segfault in mod_rewrite if %1 references were used
933   * fixed handling of empty request URIs in HTTP requests
935 - 1.4.4 - 2005-09-16
936   * added support for %V in mod_accesslog
937   * added a option for a FastCGI responser to send static files
938   * added md5 and blowfish hashes to htpasswd
939   * fixed METHOD in mod_accesslog of WebDAV methods
940   * fixed check for permission before files in sent
941   * fixed mod-proxy and content for non-POST requests
942   * fixed compilation of mod_cml on MacOS X
943   * fixed SSL errmsg after accept()
944   * fixed memleak in stat-cache
945   * fixed aborted connections if file was moved while in transfer
946   * fixed mem-usage for large FastCGI transfers
948 - 1.4.3 - 2005-09-01
950   * added gracefull shutdown
951   * added server.max-connections
952   * fixed compilation on all BSD platforms
953   * fixed init of kqueue and /dev/poll after daemonize
954   * fixed segfault if select() is event-handler and more than FD_SETSIZE
955     fds are opened
956   * fixed compilation of mod_cml
957   * fixed bin-copy-env in mod_fastcgi
959 - 1.4.2 - 2005-08-29
961   * fixed mimetype detection on uppercase extensions
962   * fixed memleak in stat-cache
963   * fixed infinite loop in mod_cgi
964   * fixed alignment crashes on sparc64 and alpha64
965   * fixed test system for gentoo ebuild
966   * fixed infinite loop in SSL
967   * fixed range request for files > 2Gb
969 - 1.4.1 - 2005-08-22
971   * added a complete Class 1 complient mod_webdav
972   * fixed ssl support (especially on OpenBSD)
973   * fixed response header in body problem in mod_cgi
974   * fixed numbers before body problem
975   * fixed compilation on Solaris and FreeBSD
976   * fixed conditional options in mod_dirlisting
977   * fixed segfault in mod_dirlisting for NFS directories
978   * fixed check for docroot in change-root environments
980 - 1.4.0 - 2005-08-17
982   * added nested conditionals
983   * added remote-ip to $HTTP
984   * added support for stat-cache via FAM
985   * added a read-only WebDAV module
986   * fixed cleanup in mod_proxy and mod_fastcgi
987   * fixed handling of filenames on case-insensitive filesystems
989 - 1.3.16 - 2005-07-31
991   * added Date: headers to dynamic HTTP/1.0 requests
992   * added support for OPTION * HTTP/1.1
993   * added support for accesslog to syslog
994   * added support for PATH_INFO guessing if check-local is disabled in
995       mod_fastcgi
996   * added switch to disable range-requests
997   * added valid-user option for mod_auth (tigger at gentoo.org)
998   * added JavaScript based sorting to mod_status (erik)
999   * added selective TCP_CORK (Christian von Roques)
1000   * break up endless loops with Status: 500
1001   * fixed endless loops in mod_rewrite
1002   * mapped url.rewrite and url.rewrite-final to uri.rewrite-once
1003   * fixed compilation for mod_trigger_b4_dl
1004   * fixed 'can't reach host' in mod_proxy
1005   * error-handler-404 defaults to Status: 200 and static files work now
1007 - 1.3.15 - 2005-07-15
1009   * added mod_cml
1010   * added mod_trigger_b4_dl
1011   * added encoding to mod_dirlisting
1012   * added ?auto to mod_status
1013   * relaxed handling of characters in URIs even more
1014   * fixed detection of sendfile() on Linux 2.4.x
1015   * fixed comparision of buffers for short strings
1016   * server.errorfile-prefix is now conditional
1017   * fixed mod_rrdtool to close STDERR
1019 - 1.3.14 - 2005-06-15
1021   * added SCGI support via mod_scgi
1022   * added hash-based and round-robin load balancing to mod_proxy
1023   * fixed range requests larger than 2Gb
1024   * fixed compilation on Solaris
1025   * fixed endless loops in mod_fastcgi, mod_cgi and mod_proxy
1026   * fixed handling of URIs for '+' and characters > 127
1028 - 1.3.13 - 2005-03-06
1030   * added customizable directory listings
1031   * fixed compile error on all BSD unixes
1032   * fixed PATHINFO handling for FastCGI
1033   * fixed handling of remote-close on FreeBSD and OpenSSL
1035 - 1.3.12 - 2005-03-02
1037   * added ssl.ca-file
1038   * added support for \n\n as terminator
1039   * rewrote test-framework and added more tests
1040   * fixed cgi.assign with empty handler
1041   * fixed segfault in debug-code
1042   * fixed mod_expire if modification-timestamps are used
1043   * fixed segfault on duplication Host-headers
1044   * fixed endless loop in mod_fastcgi
1045   * fixed handling of dead fastcgi-processes
1047 - 1.3.11 - 2005-02-20
1049   * added REMOTE_PORT and SERVER_ADDR to CGI-env
1050   * relaxed handling of newlines before keep-alive requests
1051   * relaxed uri-parser again
1052   * fixed PHP_SELF for php
1053   * fixed compilation on MacOS X
1054   * fixed handling of EPIPE and ECONNRESET
1055   * fixed crash in mod_auth if config-options are missing
1056   * fixed handling of missing trailing / in mod_userdir
1057   * fixed conditional secdownload.secret
1058   * fixed REPORT ME error due to failed reconnects in mod_fastcgi
1059   * fixed cmdline handling in mod_fastcgi
1061 - 1.3.10 - 2005-02-06
1063   * added support for full commandline in spawn-fcgi
1064   * fixed missing check for IP-address in mod_fastcgi
1065   * fixed compile error with openssl in mod_fastcgi
1066   * removed a debug-message from network-functions
1068 - 1.3.9 - 2005-02-06
1070   * added a stricter URI parser
1071   * added a check to the CGI spawner if the cgi-handler exists
1072   * added documentation for SSL and mod_status
1073   * added handling of startup environment to FastCGI
1074   * improved performance in FastCGI in buildind the FastCGI header
1075   * fixed min-procs and max-procs in FastCGI on PowerPC
1076   * fixed crash in setenv.add-response-header
1077   * fixed handling of nph-scripts in CGI
1078   * fixed accidently sending out physical file in CGI on error
1079   * fixed cygwin support
1080   * fixed handling of missing files
1081   * fixed HEAD requests for dynamic requests
1083 - 1.3.8 - 2005-01-30
1085   * added traffic shaping by remote host and virtual server
1086   * added auto-spawning of FastCGI process on demand
1087   * added virtual host based on MySQL
1088   * added mod_setenv to add envirnoment and http headers on the fly
1089   * added support for syslog in mod_accesslog
1090   * improved output of mod_status
1091   * improved debug output in request handling
1092   * fixed build problems on netbsd 1.4.x and 1.5.x
1093   * fixed status.url configuration
1094   * fixed handling of != and !~ in configutation
1095   * fixed special cases in keep-alive handling
1096   * fixed timeout handling in handling POST requests
1097   * fixed mode AUTHORIZER in FastCGI
1098   * fixed handling if internal redirects if no Host: is supplied
1099   * fixed mod_alias + pathinfo
1100   * fixed directory indexes and permissions
1101   * enabled sending errorlog to syslog again
1103 - 1.3.7 - 2004-12-11
1105   * added retries for a fastcgi connect if a php-childs
1106     dies at startup
1107   * update the debian directory
1108   * added setgroups() to drop all group-privs
1109   * added native port to windows via mingw32
1110   * added server.tag = '...'
1111   * added support for ${...} in mod_ssi
1112   * ported all plugins to conditional support
1113   * fixed multipart handling in cgi
1114   * fixed kqueue event-handler
1115   * fixed wrap-around in mod_status
1116   * fixed crash with SSL + FastCGI
1117   * fixed detection of SSL headers
1118   * fixed handling of dangling SSL_shutdown
1119   * fixed detection of keep-alive of Firefox
1121 - 1.3.6 - 2004-11-03
1123   * added spawn-fcgi to the distribution
1124   * added support in fastcgi module to spawn fastcgi
1125     processes itself
1126   * fixed logfile cycling if external logging is used
1127   * fixed connection handling in fastcgi if no chunk
1128     encoding is used
1129   * fixed internal redirects on directories if a query
1130     string is supplied
1131   * fixed cgi-module for POST request above 4k
1132   * fixed mod_alias and follow-symlink
1134 - 1.3.5 - 2004-10-31
1136   * added mod_alias
1137   * added mod_userdir
1138   * added the exec command to the SSI handler
1139   * added a switch to disable follow-symlinks
1140   * added a switch to disable IPv6 at compile-time
1141   * fixed compilation on FreeBSD and NetBSD 1.3.x
1142   * fixed segfault in pipelining
1143   * fixed a segfault in writev() handler if LFS is used
1145 - 1.3.4 - 2004-10-24
1147   * added limiter for open files
1148   * added logging of user supplied data to accesslogs
1149   * added build target for OpenWRT
1150   * added plain backend support for auth-digest
1151   * fixed handling the external accesslog processes
1152   * fixed SERVER_NAME in CGI and FastCGI
1154 - 1.3.3 - 2004-10-16
1156   * added support for NL terminators in CGI-scripts
1157   * added support for conditionals in mod_auth,
1158     mod_simple_vhost and mod_evhost
1159   * added a error-handler for 404 codes
1160   * fixed request counter in the rrdtool module
1161   * fixed log-file cycling
1162   * fixed seg-fault
1164 - 1.3.2 - 2004-09-30
1166   * fixed file-cache
1168 - 1.3.1 - 2004-09-30
1170   * fixed file-cache
1171   * fixed parsing of IPv6 adresses
1172   * fixed cgi for cygwin
1173   * fixed test-suite for FreeBSD and IRIX
1174   * fixed handling of shrinked files
1175   * fixed handling of REQUEST_URI after rewrite
1177 - 1.3.0 - 2004-09-17
1179   * added build for MacOS X and Cygwin
1180   * added handling of more than one socket
1181   * added config-conditions for User-Agent and Referer
1182   * added final rewrite-rules
1184 - 1.2.8 - 2004-09-11
1186   * added a cache for mimetypes
1187   * added X-Forwarded-For for mod_proxy
1188   * fixed handling of comments in If-Modified-Since
1189   * fixed error handling in FastCGI code
1190   * fixed expire plugin for second Expire header
1192 - 1.2.7 - 2004-09-04
1194   * added mod_rrdtool for internal statistics
1195   * added xattr support
1196   * added user-controlable timeouts
1197   * improved documentation for many plugins
1198   * fixed POST requests for mod_proxy
1199   * fixed rare hang with CGI
1200   * fixed seg-fault if no configfile is specified
1201   * fixed rare problem in FastCGI header generation
1203 - 1.2.6 - 2004-08-26
1205   * added apache-like accesslog definition
1206   * enabled timestamp cache again
1207   * improved performance in the string compare functions
1208   * fixed double-free in fastcgi handler
1209   * fixed error-handling in cgi handler
1211 - 1.2.5 - 2004-08-10
1213   * added skeleton for solaris 10 port-API
1214   * added compression support even if no cachedir is set
1215   * added conditional configoptions
1216   * fixed compilation on OpenBSD
1217   * fixed kqueue support
1218   * fixed pipelining bug
1219   * fixed parallel build (triggered by Gentoo)
1220   * updated debian postinst
1222 - 1.2.4 - 2004-07-31
1224   * added kqueue support
1225   * added server-side includes (mod_ssi)
1226   * fixed large post uploads in fastcgi
1227   * fixed rt-signals handling of delayed events
1229 - 1.2.3 - 2004-07-10
1231   * added a proxy module for Java and friends
1232   * added support to pass accesslog through an external programm
1233   * added mimetypes for text/css and text/javascript
1234   * fixed index-files for FastCGI if webserver is in chroot
1235   * fixed error messages of CGI process fails to exec()
1236   * fixed detection of pcre on IRIX and FreeBSD
1237   * fixed timestamps in Last-Modified checks
1238   * fixed 64bit builds
1239   * fixed mmap-caching of large files
1240   * relaxed the HTTP parser on empty headerfields
1242 - 1.2.2 - 2004-06-15
1244   * added support for unix domain sockets in FastCGI
1245   * fixed mmap caching
1246   * fixed compile-time check for linux sendfile()
1247   * fixed check for pcre.h on Fedora Core 2
1249 - 1.2.1 - 2004-05-30
1251   * added experimental support for AIX send_file()
1252   * added an mmap cache to the filehandle cache
1253   * enabled FreeBSD sendfile support again
1254   * added support for calling CGI binaries directly
1255   * fixed pipelining for POST requests
1256   * fixed some seg-faults if no configfile is used
1258 - 1.2.0 - 2004-05-17
1260   * added conforming Expect: handling
1261   * added a module for secure and fast downloading
1262   * rewrote the event handling interface
1263   * fixed array handling which might lead to 'missing header'
1264   * fixed pipelining support
1265   * fixed build of the localizer extension
1266   * fixed cgi handling for headers which are flushed to often
1267   * fixed compilation on Solaris 2.5
1269 - 1.1.9 - 2004-04-29
1271   * added AUTHORIZER mode to the FastCGI module
1272   * added 'check-local' option to disable local stat() in the FastCGI module
1273   * added prefix-notation for FastCGI module
1274   * added 'mod_usertrack'
1275   * improved CGI/FastCGI spec conformance
1276   * more code cleanup
1277   * fixed HTTP/1.1 chunk headers
1278   * fixed POST handling
1279   * fixed SSL network handler
1280   * fixed writev() network handler
1282 - 1.1.8 - 2004-04-16
1284   * code cleanup
1285   * limiting the size of the request-body and the request-header
1286   * minor speed improvements
1287   * tightend the HTTP-Parser again
1289 - 1.1.7 - 2004-04-12
1291   * added REMOTE_USER to the Server->FastCGI parameters
1292   * added bzip2 compression
1293   * improved the error-messages from the new configfile parser
1294   * fixed accesslog writing for errornous requests
1295   * fixed LFS (64bit filesizes) handling
1296   * fixed Content-Length for HEAD requests
1297   * fixed some memory leaks in the configfile parser
1299 - 1.1.6 - 2004-04-10
1301   * tightend the HTTP-Parser
1302   * rewrote the configfile parser (based on lemon)
1303   * fixed openssl support
1304   * fixed mmap+write support
1305   * use localtime in accesslog if possible
1307 - 1.1.5 - 2004-04-07
1309   * added ldap backend to the auth
1310   * added a mod_expire
1311   * added debian packaging structure
1312   * merged redhat and suse spec-file
1313   * fixed eventhandler for solaris
1314   * fixed 64bit fileoffsets
1315   * fixed permissions of the PID-file
1317 - 1.1.4 - 2004-04-04
1319   * added server.pid-file
1320   * added support for solaris /dev/poll and solaris sendfilev()
1321   * added support for writev()
1322   * added PATHINFO support (again)
1323   * fixed CLF logfile writing
1325 - 1.1.3 - 2004-03-25
1327   * set default event-handler to 'poll'
1328   * fixed logcycling in chroot()
1329   * fixed hostname detection
1330   * added syslog() as fallback for error-logging
1332 - 1.1.2 - 2004-03-22
1334   * added a "docroot" setting for fastcgi processes
1335   * performance improvements
1336   * improved configure script
1337   * rewrote the fastcgi config parser
1338   * added a rc-script for RedHat
1339   * added epoll() support for Linux 2.6.x
1341 - 1.1.1 - 2004-03-15
1343   * added localizer module
1344   * performance improvements
1345   * code cleanup
1347 - 1.1.0 - 2004-03-06
1349   * changed some configuration keys for better readability
1350   * moved the virtual-host code to mod_simple_vhost
1351   * added enhanced virtual host plugin from Christian Kruse
1352   * added two new auth-backends (htpasswd, htdigest)
1353   * fixed and improved authentification
1354   * stricter parsing of the Host: field
1355   * added a warning for unused configuration keys
1356   * improved FastCGI documentation
1358 - 1.0.3 - 2004-02-13
1360   * a startup script has been added (LSB compliant)
1361   * HEAD requests were submitting the content like a GET request
1362   * the virtual directory listing got a face-lifting and fixes
1363   * request-headers are now handled case-in-sensitive as required
1364     by the standard. this fixes POST requests for w3m and some Proxies.
1366 - 1.0.2 - 2004-02-07
1368   * rearrangement of the default configfile
1369   * some updates in the documentation
1370   * a entry in the error-log for a 404
1371   * stdout is no longer the default for the accesslog