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