[core] use buffer_eq_icase_ssn func
[lighttpd.git] / NEWS
blobf33df9d2ba81a0a2b9548014684254215e656751
2 ====
3 NEWS
4 ====
6 - 1.4.54 - 2019-05-27
7   * [mod_evhost] handle IPv6 literal addr; add tests
8   * [core] separate server_main_loop() func, mark hot
9   * [core] mark startup/shutdown funcs cold
10   * [core] some server_main_loop() cleanup
11   * [core] fdevent_process()
12   * [core] srv->max_fds_lowat and srv->max_fds_hiwat
13   * [core] remove server.h
14   * [mod_staticfile] search ext array if not empty
15   * [core] store joblist pointer on stack
16   * [core] quickly clear request buffer for reuse
17   * [core] helper funcs for connection_state_machine()
18   * [core] perf: optimize connection_read_header()
19   * [core] parse request in connection_read_header()
20   * [core] log_request_header_on_error in one place
21   * [core] copy request only if might need for logging
22   * [core] make parse_request,request.request same buf
23   * [core] prefer buffer_caseless_compare()
24   * [core] pass req hdrs buffer to http_request_parse
25   * [core] replace con->response.keep_alive
26   * [core] mark log_error_write*() funcs cold
27   * [core] http_request_parse() mark error paths cold
28   * [core] lift code out of request line parse loop
29   * [core] get_http_method_key() match by strlen first
30   * [core] RFC7230 HTTP-version parse
31   * [mod_accesslog] attempt to reconstruct req line
32   * [multiple] minor: remove duplicated conditions
33   * [mod_deflate] honor request for x-gzip, x-bzip2
34   * [mod_auth] minor: adjust config validation
35   * [core] discard oversized trailers
36   * [core] no keep-alive if POLLRDHUP,empty read queue
37   * [core] fix gw_backend spelling of directive in err
38   * [multiple] reduce code dup in list resizing
39   * [core] con->is_ssl_sock
40   * [core] connection_handle_write() updates con state
41   * [core] skip plugins_call_cleanup if not init'ed
42   * [core] simpler loops to run plugin hooks
43   * [core] fix mixed use of srv->split_vals array (fixes #2932)
44   * [core] dispatch events from within event framework
45   * [core] don't call fd event handlers more than once, they might already be gone (fixes segfault)
46   * [core] poll: fdarray uses fd as index, not fde_ndx
47   * [core] map FDEVENT_* to OS system event frameworks
48   * [core] prefer memchr() over strchr()
49   * [core] use openssl to read,discard request body
50   * [mod_openssl] inherit cipherlist from global scope
51   * [mod_openssl] default: ssl.cipher-list = "HIGH"
52   * [mod_proxy] pass Content-Length to backend if > 0
53   * [core] config option to allow GET w/ request body
54   * [core] some fdevent code streamlining
55   * [core] remove fde_ndx member outside fdevents
56   * [core] remove redundant check for allow_http11
57   * [mod_openssl] use 16k static buffer instead of 64k
58   * [core] pull server load checks out of main loop
59   * [core] isolate fdevent processing
60   * [core] release empty chunk buf when nothing read
61   * [core] perf: pass (fdnode *) to epoll and kqueue
62   * [core] modify config parser to handle multiple }
63   * [core] pass (fdnode *) for registered fdevent fd
64   * [mod_auth] http_auth_digest_hex2bin()
65   * [mod_auth] http_auth_info_t digest abstraction
66   * [mod_auth] pass http_auth_require_t for 401 Unauth
67   * [core] no SOCK_NONBLOCK on QNX 7.0
68   * [mod_auth] HTTP Auth Digest algorithm=SHA-256
69   * [core] silence coverity warning
70   * [mod_magnet] fix invalid script return-type crash (fixes #2938)
71   * [build] remove -Wdeclaration-after-statement
72   * [core] pass conf.follow_symlink in more places
73   * [core] fix assertion with server.error-handler (fixes #2941)
74   * [core] extend dir redirection to take HTTP status
75   * [doc] minor adjust create-mime.conf.pl regex match (#2942)
76   * [core] __attribute__((fallthrough)) for GCC 7.0
77   * [core] fdevent_mkstemp_append() (shared)
78   * [core] off_t upload_temp_file_size
79   * [core] clear FDEVENT_RDHUP if no POLLRDHUP
80   * [mod_wstunnel] fix ping-interval for big-endian (fixes #2944)
81   * [core] fix abort in http-parseopts (fixes #2945)
82   * [core] remove repeated slashes in http-parseopts
83   * [core] fix 1.4.52 regression in mem use with POST (fixes #2948)
84   * [multiple] cleaner calloc use in SETDEFAULTS_FUNC
85   * [core] add const to some etag prototypes
86   * [core] __attribute__((format ...))
87   * [core] struct log_error_st for error logging
88   * [core] log_error, log_perror using printf-like fmt
89   * [core] new worker_init hook to follow parent fork
90   * [core] replace open() with fdevent_open_cloexec()
91   * [mod_webdav] major rewrite (fixes #1818)
92   * [core] 200 for OPTIONS /non-existent/path HTTP/1.1 (fixes #2939)
93   * [mod_webdav] surround Lock-Token with "<...>"
94   * [mod_webdav] fix uuid detection macro
95   * [mod_webdav] fix misbehavior on blank nodes in PROPPATCH
96   * [mod_webdav] clean up resources after do{}while(0)
97   * [mod_webdav] check If-Match, If-Unmodified-Since (#1818)
98   * [mod_webdav] deprecated unsafe partial PUT compat
99   * [mod_webdav] provide ETag in more responses
100   * [mod_webdav] platform portability fixes
101   * [mod_webdav] disable elftc_copyfile() on FreeBSD
102   * [mod_webdav] special-case If: (<DAV:no-lock>)
103   * [mod_webdav] check If-None-Match (#1818)
104   * [stat_cache] separate func for symlink policy chk
105   * [stat_cache] separate symlink pol from data struct
106   * [stat_cache] store entries without trailing slash
107   * [stat_cache] pass age param for stat cache cleanup
108   * [stat_cache] remove splaytree ins/del debug code
109   * [stat_cache] FAM: reduce string copying
110   * [stat_cache] FAM: check FAMNextEvent() return code
111   * [stat_cache] FAM: use entry hash index as userdata
112   * [stat_cache] FAM: improve handling modified file
113   * [stat_cache] FAM: ignore follow-symlink config
114   * [stat_cache] FAM: check hash collision before add
115   * [stat_cache] FAM: ignore event with no valid match
116   * [stat_cache] FAM: funcs to invalidate entries
117   * [stat_cache] interfaces to invalidate entries
118   * [mod_webdav] update stat_cache after file mod
119   * [core] use high precision stat timestamp in etag
120   * [scons] adjustment for static build under CentOS
121   * [core] emit trace using path before clearing path
122   * [core] http_chunk_append_file_fd()
123   * [multiple] open target file earlier in some cases
124   * [stat_cache] no longer stat() and open() for stat
125   * [stat_cache] FAM: improve monitoring, cache 16 sec
126   * [stat_cache] FAM: separate routine for FDEVENT_IN
127   * [stat_cache] FAM: whitespace-only change
128   * [mod_webdav] quiet coverity warnings
129   * [doc] highlight relevance of module load order (fixes #2946)
130   * [core] behavior change: stricter URL normalization
131   * [stat_cache] fix compilation error for cmake
132   * [cmake] help cmake on FreeBSD find sys/event.h
133   * [scons] help scons on FreeBSD find sys/event.h
134   * [build] detect FreeBSD elftc_copyfile()
135   * [mod_openssl] use SSL_CTX_set_client_hello_cb()
136   * [core] support weak etags with If-None-Match
137   * [core] store log_state_handling flag on stack
138   * [core] check if splay_tree NULL before invalidate
139   * [mod_webdav] workaround Microsoft-WebDAV-MiniRedir
140   * [mod_webdav] doc Microsoft-WebDAV-MiniRedir bugs
141   * [mod_webdav] invalidate parent dir in stat_cache
142   * [doc] systemd socket activation config example
143   * [core] chunkqueue perf: code reuse
144   * [core] chunkqueue perf: specialized buffer.h funcs
145   * [core] chunkqueue perf: skip opening 0-length file
146   * [core] chunkqueue perf: read small files into mem
147   * [core] buffer_reset() should not be passed NULL
148   * [tests] has_feature() helper func
149   * [tests] skip mod-secdownload HMAC-SHA1,HMAC-SHA256
150   * [core] use high precision stat timestamp on OS X
151   * [mod_magnet] expose server addr (local IP) to lua
152   * [core] adjust http_chunk read() retry loop
153   * [mod_maxminddb] MaxMind GeoIP2 support
154   * [mod_authn_ldap] ldap_set_option LDAP_OPT_RESTART (fixes #2940)
156 - 1.4.53 - 2019-01-27
157   * [mod_cml,mod_flv_streaming] fix NULL ptr deref
158   * [mod_simple_vhost] t/test_mod_simple_vhost
159   * [mod_evhost] split uri handler func for testing
160   * [mod_evhost] restructure for unit tests
161   * [mod_evhost] t/test_mod_evhost
162   * [mod_access] restructure for unit tests
163   * [mod_access] t/test_mod_access
164   * [tests] include first.h and NDEBUG early
165   * [core] use kill_signal for gw_proc_kill()
166   * [tests] t/test_keyvalue
167   * [tests] some test config cleanup
168   * [tests] update skip count in mod-fastcgi.t
169   * [multiple] reduce initial buffer sz if large POST (fixes #2922)
170   * [mod_fastcgi] fix NULL ptr deref from bugfix #2922 (fixes #2923)
171   * [tests] more test config cleanup
172   * [core] perf: incremental hash of pathname w/o copy
173   * [core] perf: reuse buffer to redirect to directory
174   * [core] do not free() reused buffer
175   * [core] use connected sock port in dir redirect
176   * [core] http_response_buffer_append_authority()
177   * [core] use con->server_name for dir redir
178   * [core] memeq compare rounded to 64, not next 1M
179   * [core] define MD5_DIGEST_LENGTH 16
180   * [mod_auth] permit additional auth backends to load
181   * [core] send Connection: close if reqbody not read (fixes #2924)
182   * [core] cache rev DNS for localhost for dir redir
183   * [doc/conf] resolve some mime type conflicts from debian buster, regenerate mime.conf
184   * [core] move winsock init to network_init()
185   * [core] move /dev/stdin graceful restart handling
186   * [core] network_srv_sockets_append() shared code
187   * [core] systemd socket activation support
188   * [build] autotools: try mysqlclient.pc and mariadb.pc (fixes #2925)
189   * [mod_expire] look up expire fallback "" explicitly
190   * [multiple] calloc match ptr type (clang --analyze)
191   * [multiple] quiet clang --analyze where trivial
192   * [mod_webdav] compare COPY, MOVE Destination scheme
193   * [core] con->uri.scheme is maintained lowercase
194   * [mod_openssl] ALPN and acme-tls/1 (fixes #2931)
195   * [core] Fix recursive include_shell invocations
196   * [mod_openssl] ssl.privkey directive (optional)
198 - 1.4.52 - 2018-11-28
199   * [mysql] MySQL 8 deprecates my_bool
200   * [core] typo in trace
201   * [build] Fix unportable test(1) operator
202   * [core] perf: call connection_reset() fewer times
203   * [core] perf: array_reset_data_strings()
204   * [core] perf: buffer_free_ptr() __attribute__ cold
205   * [core] perf: one-element cache for host normalize
206   * [core] perf: buffer_copy_string_len()
207   * [core] perf: skip redundant prepare copy calls
208   * [core] perf: buffer_align_size() identity if align
209   * [core] perf: size write buffers for reuse
210   * [core] perf: prepend headers directly into write q
211   * [core] perf: copy small strings; better buf reuse
212   * [core] perf: copy small strings; extend last chunk
213   * [core] perf: specialized func for array sorting
214   * [core] perf: append response directly into write q
215   * [core] perf: better buf reuse reading from backend
216   * [core] chunk.c code reuse
217   * [multiple] perf: write headers to backend write cq
218   * [multiple] perf: power-2 alloc large headers
219   * [multiple] perf: use larger initial backend buffer
220   * [core] permit env vars to be set with blank value
221   * [mod_fastcgi] perf: reduce data copies
222   * [mod_fastcgi] perf: reduce data copies
223   * [core] perf: chunk.c chunk pool
224   * [multiple] perf: reuse large buffers w/ backend
225   * [multiple] better packing of struct chunk
226   * [core] perf: inline buffer_append_string_buffer()
227   * [core] slightly simpler flag append to string
228   * [mod_cgi] perf: reuse buffers for creating CGI env
229   * [mod_fastcgi,mod_scgi] perf: env accumulation
230   * [core] Don't call RAND_cleanup with OpenSSL 1.1.x
231   * [mod_openssl] move SSL_shutdown() to separate func
232   * [mod_openssl] SSL_read before second SSL_shutdown
233   * [mod_cgi] perf: use stat_cache for cgi handler
234   * [mod_openssl] prefer using TLS_server_method()
235   * [mod_webdav] return 403 if file should exist
236   * [core] perf: chunkqueue buffers already sized up
237   * [core] perf: simpler buffer_string_space()
238   * [multiple] dynamic handlers hint backend header sz
239   * [core] use chunk_buf_sz instead of hard-coded num
240   * [multiple] perf: simplify chunkqueue_get_memory()
241   * [mod_wstunnel] perf: reuse large buffers
242   * [mod_cgi] perf: cache getenv() results at start up
243   * [core] fix 301 -> 302 overwrite with Location (fixes #2918)
244   * [core] fix setting of headers previously reset (fixes #2919)
245   * [mod_webdav] quiet coverity false positive
246   * [core] server.compat-module-load = "disable"
247   * [core] server.chunkqueue-chunk-sz = 4096
248   * [core] perf: simpler buffer_string_space() (fixed)
249   * [core] perf: faster HTTP pipelined requests
250   * [core] perf: simpler buffer_string_space() (tests)
251   * [mod_cgi] reset reused buffer on internal redir
252   * [core] clear chunk buffer upon release
253   * [mod_fastcgi] minor: copy packet without padding
254   * [mod_redirect,mod_rewrite] use server_name
255   * [mod_fastcgi] transfer chunks minus packet padding
256   * [core] separate func to reset FILE_CHUNK
257   * [core] perf: simple, quick buffer_clear()
258   * [core] perf: small improvement to encoding CGI var
259   * [core] perf: small improvement buffer_string_space
260   * [core] simpler physical path concatenation
261   * [mod_webdav] fix LOCK on incorrect URI path
262   * [mod_webdav] one fewer buffer copy for COPY,MOVE
263   * [core] perf: simplify buffer_move()
264   * [mod_cml] parse query string without modifying it
265   * [core] perf: buffer optimizations
266   * [mod_wstunnel] use buffer_string_length()
267   * [core] perf: inline buffer_copy_buffer()
268   * [core] cygwin helper func for getcwd
269   * [core] cygwin sample to run lighttpd under NSSM
270   * [core] limit con->uri.authority < 1024 octets
271   * [mod_webdav] separate func for each request method
272   * [core] reject decoded url-path without leading '/'
273   * [multiple] validate UTF-8 in url-decoded paths
274   * [mod_proxy] silence coverity false positive
275   * [core] fix typo
276   * [core] buffer_append_path_len()
277   * [core] quiet indexfile warning if mod not loaded
279 - 1.4.51 - 2018-10-14
280   * [core] split parsing header line into separate function
281   * [core] explicitly return 0 instead of constant result
282   * [core] header parsing: use goto for error handling
283   * [core,security] process headers after combining folded headers
284   * [core] replace folding whitespace with a single space
285   * [buffer] fix duplicate assert and comment
286   * [core] redo HTTP header line folding
287   * [core] parse header line strings before copying
288   * [core] abstraction to insert/modify response hdrs
289   * [core] code reuse with array_insert_key_value()
290   * [core] simplify parsing hdr key whitespace then :
291   * [core] http_request_parse_reqline() separate func
292   * [core] abstraction layer for HTTP header manip
293   * [core] code reuse with http_response_body_clear()
294   * [mod_proxy] fix proxy.forwarded and proxy.replace-http-host (fixes #2902)
295   * [mod_rewrite] fix url.rewrite-repeat and url.rewrite-if-not-file (fixes #2908)
296   * [core] fastcgi.h link to Open Market License (OML) (fixes #2901)
297   * [mod_proxy,mod_wstunnel] copy full plugin_config (fixes #2903)
298   * [mod_fastcgi,mod_scgi] error on oversized request (fixes #2905)
299   * [mod_auth] send 401 for mismatch HTTP auth scheme (fixes #2906)
300   * [core] code reuse array_match_*() routines
301   * [mod_skeleton] review and simplify
302   * [multiple] code reuse: employ array_match_*()
303   * [doc] lighttpd.service uses network-online.target
304   * [mod_flv_streaming] code simplifications
305   * [mod_authn_pam] mod_auth PAM support (fixes #688)
306   * [mod_sockproxy] add to build
307   * [core] fix include_shell on inline shell commands (fixes #2910)
308   * [multiple] code reuse: using array_*() funcs
309   * [tests] t/test_array.c
310   * [core] array_get_int_ptr()
311   * [core] more memory-efficient fn table for data_*
312   * [tests] #undef NDEBUG before assert.h in t/test_*
313   * [core] inline status_counter routines
314   * [core] log_failed_assert() __attribute__((cold))
315   * [core] http_status_append()
316   * [core] http_method_append()
317   * [core] prefer buffer_append_string_len()
318   * [build] fix SCons build for mod_authn_pam
319   * [mod_userdir] security: skip username "." and ".."
320   * [mod_deflate] null-check to quiet coverity warning
321   * [core] quiet coverity false positive
322   * [multiple] quiet compiler warnings --without-pcre
323   * [mod_secdownload] support if HMAC() is a macro
324   * [TLS] sys-crypto.h abstraction
325   * [TLS] sys-crypto.h abstraction
326   * [build] put request.c in common src
327   * [meson] build fixes for libmariadb and libsasl2
328   * [core] PATH_INFO calculation when basedir is "/" (fixes #2911)
329   * [core] better consistency in buffer_is_equal*()
330   * [core] fix missing param from prev commit
331   * [mod_openssl] no renegotiation in TLS 1.3 (fixes #2912)
332   * [core] reject Transfer-Encoding from proxy (#2913)
333   * [mod_auth] use SHA1_Init,Update,Final
334   * [mod_openssl] add support for wolfSSL
335   * [build] automake support for wolfSSL
336   * [build] SCons support for wolfSSL
337   * [build] meson support for wolfSSL
338   * [build] CMake support for wolfSSL
339   * [core] perf: buffer.c internal inlines
340   * [mod_openssl] wolfSSL does not support SSLv2
341   * [core] perf: buffer_string_append_len()
342   * [core] permit server.error_handler to static file
344 - 1.4.50 - 2018-08-13
345   * [mod_extforward] allow explict IPs to be untrusted (#2860)
346   * [core] fix crash if 'host' empty in config (fixes #2876)
347   * [mod_magnet] fix regression in lighty.stat (fixes #2877)
348   * [core] minor code cleanup in gw_recv_response()
349   * [core] fix rare race condition from backends (fixes #2878)
350   * [mod_proxy] fix segfault in Set-Cookie reverse map (fixes #2879)
351   * [core] fdevent_accept_listenfd() nonblock cloexec
352   * [build] remove m4 AC_PATH_PROG for PKG_CONFIG
353   * [core] some header cleanup
354   * [mod_wstunnel] better Sec-WebSocket-Protocol parse
355   * [mod_magnet] code reuse
356   * [mod_magnet] reduce buffer copies
357   * [mod_fastcgi,mod_scgi] fastcgi.balance,scgi.balance (fixes #2882)
358   * [core] check if SOCK_NONBLOCK is ignored (fixes #2883)
359   * [core] buffer_append_string_encoded_hex_lc()
360   * [core] more efficient hex2int()
361   * [mod_secdownload] compare bin MAC instead of hex
362   * [core] li_tohex_lc() explicitly uses lc hex chars
363   * [core] buffer_append_uint_hex_lc() uses lc hex
364   * [core] buffer_append_string_encoded() uc hex
365   * [tests] reduce test_base64 brute force tests
366   * [tests] remove test_buffer output, except on error
367   * [core] check for continuation in server.tag
368   * [core] CONNECT must be handled before fs hooks
369   * [mod_redirect, mod_rewrite] code reuse (sharing)
370   * [core] data_config_pcre_compile,exec()
371   * [tests] test_request unit tests
372   * [core] http_kv.[ch] method, status, version str
373   * [core] remove unused get_http_status_body_name()
374   * [core] remove proc_open.[ch], reduce stdio.h use
375   * [tests] move src/test_*.c to src/t/
376   * [core] server.http-parseopts URL normalization opt (fixes #1720)
377   * [core] inline some buffer.[ch] routines
378   * [core] remove some duplicative code in log.c
379   * [core] debug server.log-request-header-on-error
380   * [mod_redirect,mod_rewrite] short-circuit earlier
381   * [core] fix buffer_to_upper()
382   * [mod_cgi] handle CGI partial response header write
383   * [mod_redirect,mod_rewrite] pass request URI info
384   * [mod_redirect,mod_rewrite] encoding options (fixes #443, fixes #911)
385   * [mod_redirect,mod_rewrite] fix segfault w/ invalid syntax (fixes #2892)
386   * [mod_fastcgi] fix memleak with FastCGI auth,resp (fixes #2894)
387   * [mod_alias] security: potential path traversal with specific configs
388   * [mod_wstunnel] quiet 32-bit compiler warnings
389   * [core] POLLRDHUP handling for transparent proxying
390   * [mod_redirect,mod_rewrite] support up to 19 match
391   * [core] add missing includes to quiet compiler warn
392   * [mod_redirect,mod_rewrite] base64url encoding opt
393   * [mod_rewrite] require rewrite result to begin '/'
394   * [core] security: use-after-free invalid Range req
395   * [core] reset var if FAMMonitorDirectory() fails
396   * [core] option to propagate TCP FIN to backend host
397   * mod_sockproxy - socket forwarding
398   * [core] workaround Coverity cov-build bug with gcc7
399   * [build] add missing file for test_burl
400   * [core] quell insignificant coverity warning
401   * [core] extend server.http-parseopts
402   * [mod_alias] security: path traversal in mod_alias (in some use cases) (fixes #2898)
403   * [core] security: use-after-free after invalid Range request (fixes #2899)
405 - 1.4.49 - 2018-03-11
406   * [core] adjust offset if response header blank line
407   * [mod_accesslog] %{canonical,local,remote}p (fixes #2840)
408   * [core] support POLLRDHUP, where available (#2743)
409   * [mod_proxy] basic support for HTTP CONNECT method (#2060)
410   * [mod_deflate] fix deflate of file > 2MB w/o mmap
411   * [core] fix segfault if tempdirs fill up (fixes #2843)
412   * [mod_compress,mod_deflate] try mmap MAP_PRIVATE
413   * [core] discard from socket using recv MSG_TRUNC
414   * [core] report to stderr if errorlog path ENOENT (fixes #2847)
415   * [core] fix base64 decode when char is unsigned (fixes #2848)
416   * [mod_authn_ldap] fix mem leak when ldap auth fails (fixes #2849)
417   * [core] warn if mod_indexfile after dynamic handler
418   * [core] do not reparse request if async cb
419   * [core] non-blocking write() to piped loggers
420   * [mod_openssl] minor code cleanup; reduce var scope
421   * [mod_openssl] elliptic curve auto selection (fixes #2833)
422   * [core] check for path-info forward down path
423   * [mod_authn_ldap] auth with ldap referrals (fixes #2846)
424   * [core] code cleanup: separate physical path sub
425   * [core] merge redirect/rewrite pattern substitution
426   * [core] fix POST with chunked request body (fixes #2854)
427   * [core] remove unused func
428   * [doc] minor update to *outdated* doc
429   * [mod_wstunnel] fix for frames larger than 64k (fixes #2858)
430   * [core] fix 32-bit compile POST w/ chunked request body (#2854)
431   * [core] add include sys/poll.h on Solaris (fixes #2859)
432   * [core] fix path-info calculation in git master (fixes #2861)
433   * [core] pass array_get_element_klen() const array *
434   * [core] increase stat_cache abstraction
435   * [core] open additional fds O_CLOEXEC
436   * [core] fix CONNECT w strict header parsing enabled
437   * [mod_extforward] CIDR support for trusted proxies (fixes #2860)
438   * [core] re-enable overloaded backends w/ multi wkrs
439   * [autoconf] reduce minimum automake version to 1.13
440   * [mod_auth] constant time compare plain passwords
441   * [mod_auth] check that digest realm matches config
442   * [core] fix incorrect hash algorithm impl
444 - 1.4.48 - 2017-11-11
445   * [mod_webdav] fix crash if stat fails, not ENOENT
446   * [core] fix build --disable-ipv6 (fixes #2832)
447   * [scons] Merge branch 'personal/stbuehler/scons-cleanup'
448   * [autobuild] Merge branch 'personal/stbuehler/autobuild-cleanup'
449   * [meson] new build system
450   * [core] fix var.CWD (regression in 1.4.46) (fixes #2835)
451   * [core] fix implicit wildcard IPv4 and IPv6 listen
452   * [autobuild] remove obsolete warning about mmap use
453   * [core] isolate sock_addr manipulation
454   * [stat_cache] remove debug code littered in file
455   * [core] cleanup unused ifndef
456   * [core] cleanup: consolidate FAM code in stat_cache
457   * [core] consolidate backend network write handlers
458   * [autobuild] allow sendfile() in cross-compile (fixes #2836)
459   * [core] quiet pedantic cc warning for excess comma
460   * [core] isolate backend fdevent handler defs
461   * [mod_openssl] error if ssl.engine in wrong section (fixes #2837)
462   * [core] fix lighttpd -1 one-shot graceful shutdown
463   * [mod_cgi] quiet trace if mod_cgi sends SIGTERM (fixes #2838)
464   * [build] fix link of test_configfile.c
465   * [core] quiet coverity false positive
466   * [mod_openssl] more pedantic check of return values
467   * [mod_openssl] allow specifying server cert chain (fixes #2692)
468   * [mod_openssl] ssl.openssl.ssl-conf-cmd (fixes #2758)
469   * [doc] NEWS - fix improper format line breaks
470   * [mod_authn_ldap] replace use of deprecated funcs
471   * [mod_authn_sasl] SASL auth (new) (fixes #2275)
472   * [mod_openssl] quiet trace from TCP probes (#2784)
473   * [core] fix dup typedef compiler warning
474   * [scons] fix various python2/3 incompatibilities
475   * [doc] fix doc/config/conf.d/fastcgi.conf example
477 - 1.4.47 - 2017-10-22
478   * [mod_authn_gssapi] needs -lcom_err under Darwin
479   * [core] stricter validation of request-URI begin
480   * [core] fix 1.4.46 regression in config match (fixes #2830)
481   * [core] normalize config addrs for != match (#2830)
482   * [core] normalize config addrs for eq and ne (#2830)
483   * [doc] use https:// URLs to .lighttpd.net resources
484   * [core] fix 1.4.46 regression in Last-Modified
486 - 1.4.46 - 2017-10-21
487   * [TLS] mark code that uses -lcrypto but not -lssl
488   * remove redundant calls to end-of-request hooks
489   * [mod_mysql_vhost] remove dev debug code
490   * [core] con interface for read/write; isolate SSL
491   * [core] new plugin hooks to help isolate SSL
492   * [mod_openssl] new module (preliminary layout)
493   * [core] move network_open_file_chunk() to chunk.c
494   * [mod_openssl] move openssl code into mod_openssl
495   * [mod_openssl] move openssl config into mod_openssl
496   * [core] move connection_read_cq() to connections.c
497   * [mod_geoip] call from handle_request_env hook
498   * [build] only mod_openssl depends on -lssl
499   * [mod_auth] enable optional authz if extern authn (fixes #2481)
500   * [mod_openssl] allow ssl.verifyclient on url paths (fixes #2245)
501   * [core] do not emit req/response hdrs w/ blank val
502   * [mod_setenv] directives to overwrite/remove hdrs (fixes #650, fixes #2295)
503   * [mod_secdownload] new directives modify hash path (fixes #646, fixes #1904)
504   * [core] move con throttling to connections-glue.c
505   * [core] support Expect: 100-continue with HTTP/1.1 (fixes #377, #1017, #1953, #2438)
506   * [mod_openssl] use TLS SNI to set host-based certs
507   * [mod_ssi] send #exec cmd="..." output to temp file
508   * [mod_scgi] tests/mod-scgi.t unit tests
509   * [mod_auth] support LDAP groups for HTTP auth (fixes #1817)
510   * [core] use getaddrinfo,inet_pton vs gethostbyname (fixes #2783)
511   * [mod_auth] LDAP escape username in DN and filters
512   * mod_vhostdb* (dbi,mysql,pgsql,ldap) (fixes #485, fixes #1936, fixes #2297)
513   * [mod_auth] have LDAP template replace '?'
514   * apply debian/patches/spelling.patch
515   * [core] permit connection-level state in modules
516   * [TLS] include <openssl/opensslv.h> in rand.c
517   * [core] config match w/ arbitrary HTTP request hdrs (fixes #1556)
518   * [mod_flv_streaming] add end pos param (fixes #1887)
519   * [core] X-LIGHTTPD-KBytes-per-second from backends (fixes #954)
520   * [core] improve accuracy of bandwidth write limits
521   * [core] quicker graceful shutdown
522   * [tests] remove unused file depending on CGI.pm
523   * [doc] doc/initscripts.txt (fixes #2782)
524   * [core] check issetugid() early in main()
525   * [core] combine duplicated getrlimit, network_init
526   * [core] move interval timer near worker event loop
527   * [core] initialize globals at top of main()
528   * [core] graceful restart with SIGUSR1 (fixes #2785)
529   * [mod_authn_mysql] fix minor memleak at shutdown
530   * [mod_rrdtool] no error if loaded but no config
531   * [doc] SIGUSR1 doc and lighttpd-angel SIGUSR1
532   * [mime.conf] add text/markdown to utf-8 list, regenerate mime.conf
533   * [mod_cgi] RFC3875 CGI local-redir strict adherence (#2108)
534   * [mod_cgi] do not send "Status" back to client
535   * [core] add label for 308 Permanent Redirect
536   * [mod_openssl] inherit ssl.* from global scope
537   * [core] handle if backend sends Transfer-Encoding (#2786)
538   * [core] use kqueue in level-triggered mode (fixes #2788)
539   * [mod_fastcgi,mod_scgi] backend spawn EINTR retry (#2788)
540   * [core] config opt to intercept dynamic handler err (fixes #974)
541   * [core] set default server_tag in server.c
542   * [core] include lighttpd vers in server started msg
543   * [core] move version.h logic into server.c
544   * [core] issue trace if max-fds too large (fixes #2789)
545   * [mod_fastcgi,mod_scgi] consistent waitpid handling (fixes #2791)
546   * [mod_cgi] fix CGI local-redir w/ url.rewrite-once (fixes #2793)
547   * [mod_scgi] fix unused_procs bidirectional-links
548   * [mod_scgi] fix potential repeated use of proc->id
549   * [mod_fastcgi,mod_scgi] consolidate backend process accounting (#2788)
550   * [mod_cgi] status 200 OK if no hdrs (deprecated) (#2786)
551   * [core] fix regex condition subst w/ mod_extforward (fixes #2794)
552   * [tests] correct skip count for mod-scgi.t
553   * [mod_vhostdb_ldap] fix inverted logic (coverity)
554   * [mod_cgi] cgi.local-redir = [enable|disable] (#2108, #2793)
555   * [core] $REQUEST_HEADER[...] subsumes other config (#1556)
556   * [mod_usertrack] usertrack.cookie-attrs config opt (fixes #2795)
557   * [core] default server.max-fds=4096 if unspecified (#2789)
558   * update .gitignore, add .gitattributes
559   * [core] reduce con allocation for small max_conns
560   * [config] more specific checks for array lists
561   * [mod_authn_gssapi] needs -lcom_err under cygwin
562   * [mod_cgi,fastcgi,scgi,proxy] fix streaming response (fixes #2796)
563   * [mod_auth] Digest nonce on system with time <=1978
564   * [doc] simple-vhost.debug takes an integer value (fixes #2797)
565   * [core] fix crash if invalid config file (fixes #2798)
566   * [core] remove unused member con->in_joblist
567   * [mod_proxy] remove use of con->got_response
568   * [core] consolidate dynamic handler response parse
569   * [core] remove now-unused buffer_search_string_len
570   * [mod_cgi] eliminate warning when compiled -Os
571   * [mod_scgi] do not reconnect after connect succeeds
572   * [tests] reduce time waiting for backends to start
573   * [core] server.syslog-facility (fixes #2800)
574   * [core] server.syslog-facility (use -1 for unset) (#2800)
575   * [core] allow overriding prior config values (fixes #2799)
576   * [mod_proxy] set Content-Length, if available
577   * [mod_proxy] set X-Forwarded-Host (fixes #418)
578   * [core] remove redundant Content-Length digit check
579   * [core] remove some unused header includes
580   * [core] use con->dst_addr_buf instead of ip recalc
581   * [core] include "fdevent.h" where needed
582   * [core] make stat_cache private to stat_cache.c
583   * [core] collect ioctl FIONREAD code
584   * [core] include <netdb.h> where needed
585   * [core] report file path when mkstemp() fails (fixes #2802)
586   * [core] export http_request_host_policy() for reuse
587   * [mod_extforward] simplify header search
588   * [mod_extforward] consolidate ipstr_to_sockaddr()
589   * [mod_extforward] upd scheme after ipstr validated
590   * [mod_extforward] rearrange code; prep Forwarded
591   * [mod_extforward] support Forwarded HTTP Extension (#2703)
592   * [mod_proxy] support Forwarded HTTP Extension (fixes #2703)
593   * [core] inet_pton(), inet_ntop() on (sock_addr *)
594   * [core] save connection-level proto in con->proto
595   * [mod_extforward] support HAProxy "PROXY" protocol (fixes #2804)
596   * [mod_extforward] fix typos in Forwarded handling
597   * [core] fix stat_cache initialization error
598   * [core] perf: stat_cache_mimetype_by_ext()
599   * [core] inet_ntop_cache now 4-element cache
600   * [mod_openssl] free local_send_buffer at exit
601   * [core] extend mimetype search w/o leading '.'
602   * [core] no SOCK_CLOEXEC on Linux kernel < 2.6.27
603   * [core] inline simple buffer is empty checks
604   * [core] buffer_substr_replace()
605   * [core] sys-strings.h abstraction for strings.h
606   * [mod_proxy] fix backslash escaping
607   * [core] omit default port from normalized host str
608   * [core] fix build issue without ipv6 support
609   * [core] permit strings and integers in config array
610   * [mod_accesslog] flag high precision ts for %T (fixes #2807)
611   * [core] permit strings,ints,arrays in config array
612   * [core] calloc plugin_config for consistent init
613   * [mod_proxy] simple host/url mapping in headers (fixes #152)
614   * [mod_uploadprogress] handle query str progress ID (fixes #2808)
615   * [mod_fastcgi] consolidate backend read code
616   * [mod_proxy,mod_scgi] fix truncated error trace
617   * [core] skip socket shutdown() if con->fd negative
618   * [core] act as transparent proxy after con Upgrade
619   * [core] remove redundant resets of fde_ndx
620   * [core] configparser: fix resource handling in error cases (fixes #2809)
621   * [core] fix crash for invalid syntax in config file (fixes #2810)
622   * [core] prep mod transitions to transparent proxy
623   * [mod_proxy] basic support for Upgrade: websocket (fixes #2811)
624   * [mod_extforward] compile on OSX
625   * [core] set server.max-keep-alive-requests = 100 (fixes #2205)
626   * [core] perf: skip redundant strlen() if len known
627   * [core] optional condition in config "else" clause (fixes #1268)
628   * [mod_cgi] basic support for Upgrade: websocket
629   * [core] buffer to disk streaming to slow backends
630   * [core] silence compiler warnings if !HAVE_FORK
631   * [build] -Werror if --enable-extra-warnings=error
632   * [build] autotools use AC_PROG_CC_STDC macro
633   * [mod_openssl] ssl.ca-crl-file for CRL (fixes #2319)
634   * [mod_openssl] ssl.ca-dn-file (fixes #2694)
635   * [mod_proxy] fix typo identified by coverity
636   * [mod_openssl] ignore client verification error if not enforced
637   * [mod_openssl] fix compile with openssl 1.1.0
638   * [mod_extforward] quiet clang compiler warning
639   * [mod_dirlisting] sort "../" to top of names
640   * [mod_openssl] safer_X509_NAME_oneline() (fixes #2693)
641   * [core] allow earlier plugin init for SSL/TLS
642   * [mod_openssl] adjust use of ssl.ca-dn-file
643   * [core] fix compiler warnings on Mac OS X
644   * [core] server.socket-perms to set perms on unix (fixes #656)
645   * [core] get port from sock_addr if AF_INET,AF_INET6
646   * [core] server.error_handler_404 X-Sendfile ENOENT (#2474)
647   * [core] consolidate fork()/execve() code (#1393)
648   * [core] mv log_error_{open,cycle.close} to server.c
649   * [core] rename fd_close_on_exec()
650   * [core] remove unused includes of stat_cache.h
651   * [core] add missing include of stdlib.h
652   * [core] reduce exposure of unistd.h, other includes
653   * [core] sock_addr_from_str_hints reusable name res
654   * [core] continue collecting use of netdb.h
655   * [core] continue collecting use of netdb.h
656   * [core] continue collecting use of netdb.h
657   * [core] fdevent_connect_status() shared code
658   * [core] add const to reduce .data segment size
659   * [mod_proxy] move data_fastcgi into mod_proxy.c
660   * [mod_proxy] store address family at config time
661   * [mod_fastcgi] slightly simplify counters
662   * [mod_fastcgi] consolidate connect() error handling
663   * [mod_fastcgi] set request_id in fcgi_create_env()
664   * [mod_fastcgi] move delayed connect() into switch()
665   * [mod_fastcgi,mod_scgi] consistent connect() error
666   * [mod_scgi] remove unused parse_response member
667   * [mod_fastcgi,mod_scgi] struct member consistency
668   * [mod_fastcgi,mod_scgi] parse bin_path at startup
669   * [mod_fastcgi,mod_scgi] use temp buffer for cgi_env
670   * [core] shared code for socket backends
671   * [core] spread load on socket backend procs
672   * [core] store sockaddr for socket backend procs
673   * [core] resolve DNS at startup for socket backends
674   * [core] adaptive spawning for socket backend procs (fixes #1162)
675   * quell compiler warnings for -Wimplicit-fallthrough
676   * [doc] update README
677   * [core] fdevent_cycle_logger()
678   * [core] reap lighttpd worker pids precisely
679   * [core] restart piped loggers if they exit (fixes #1393)
680   * [mod_webdav] PROPFIND getetag attr must match GET
681   * [core] consistent behavior w/ and w/o SA_SIGINFO
682   * [core] do not remove pid-file in test mode
683   * [core] add public domain SHA1() if no crypto
684   * [mod_wstunnel] websocket tunnel to other protocol
685   * [core] forward SIGHUP only to lighttpd workers
686   * [mod_dirlisting] treat README and HEADER as paths (fixes #2818)
687   * [core] set one-shot mode fd O_NONBLOCK, FD_CLOEXEC
688   * [core] remove fdevent fcntl_set hook
689   * [mod_extforward] typo in comment
690   * [mod_cgi] add missing #include
691   * [core] fix invalid sizeof() identified by coverity
692   * [core] add missing #include
693   * [core] base_decls.h to quiet compiler warnings
694   * [core] set socket perms after bind, before listen
695   * [core] warn if backend server config contains '_'
696   * [mod_extforward] PROXY proto and SSL_CLIENT_VERIFY
697   * [core] workaround for AIX mmap define
698   * [mod_accesslog] flush access logs every 4 seconds
699   * [mod_cgi] fix bug to properly exec interpreter
700   * [mod_fastcgi] fix return when streaming min buffer
701   * [core] attempt to quiet coverity false positives
702   * [core] attempt to quiet coverity false positives
703   * [core] attempt to quiet compiler warning in LEDE
704   * [core] SIGCHLD handle_waitpid hook for modules
705   * [mod_rrdtool] handle_trigger returns HANDLER_GO_ON
706   * [mod_openssl] ssl.read-ahead="disable" for stream
707   * [mod_cgi] add FDEVENT_IN upon CGI exit
708   * [mod_cgi] omit cgi_handle_fdevent after proc exit
709   * [mod_webdav] check HAVE_UUID for -luuid
710   * [core] adjust li_rand_pseudo* interfaces
711   * [mod_wstunnel] fix config parsing bug
712   * [core] fdevent setsockopt() helper functions
713   * [core] make strftime_cache_get() 16-element cache
714   * [core] disable Nagle if streaming to backend
715   * [core] fix triggered assert on HTTP chunked input (fixes #2822)
716   * [mod_wstunnel] fix NULL ptr deref
717   * [algo_sha1] fix compile break and warnings
718   * [lemon] fix gcc implicit-fallthrough warning
719   * [core] URI scheme is case-insensitive
720   * [network] do not append port to unix socket paths
721   * [unittests] consolidate base64 test code
722   * [core] use sun_path for addr string for AF_UNIX (fixes #2826)
723   * [core] cleaner code; remove goto from network.c
724   * [core] /dev/stdin listener for inetd wait yes
725   * [core] compare listen addrs after DNS resolution
726   * [core] inline chunkqueue_is_empty()
727   * [core] limit use of TCP_CORK
728   * [core] return from http_response_read if small rd
729   * [core] gateways might Upgrade con before body read
730   * [mod_wstunnel] set Sec-WebSocket-Protocol if bin
731   * [mod_wstunnel] remove invalid appended '\0'
732   * [core] quiet coverity warning
733   * [core] handle fds pending close after poll timeout (fixes #2827)
734   * [core] fix $REQUEST_HEADER[...] parsing in config (#1556)
735   * [mod_dirlisting] custom js date parse func (fixes #2823)
736   * [core] remove fd interest if create_env returns
737   * [mod_openssl] copy data for larger SSL packets
738   * [mod_openssl] remove erroneous SSL_set_shutdown()
739   * [core] permit LF to end lines if !header-strict
740   * [core] add back REQUEST_SCHEME for backends
741   * [core] remove fdevent_sched_run from fdevent_libev (#2827)
742   * [mod_openssl] ssl.read-ahead="disable" by default
743   * [core] adjust parser for valid variable expansion
744   * [cmake] handle WITH_WEBDAV_LOCKS option
745   * [cmake] fix attr header detection and linking
746   * [cmake] link mod_cml with memcached
747   * [core] reproducible build: hide __DATE__ __TIME__ (fixes #2828)
748   * [core] perf: more efficient fdevent_sched_run()
749   * [core] translate DNS to IP str for cond socket cmp
751 - 1.4.45 - 2017-01-14
752   * [mod_cgi] skip local-redir handling if to self (fixes #2779, #2108)
753   * [mod_webdav] fix crash when plugin_ctx cleaned up (fixes #2780)
754   * [mod_fastcgi] detect child exit, restart proactively
755   * [mod_scgi] detect child exit, restart proactively
756   * [TLS] ssl.read-ahead = "disable" for low mem (fixes #2778)
758 - 1.4.44 - 2016-12-24
759   * [mod_scgi] fix segfault (fixes #2762)
760   * [mod_authn_gssapi] fix memory leak
761   * [config] warn if mod_authn_ldap,mysql not listed
762   * [mod_magnet] fix magnet_cgi_set() set of env vars (fixes #2763)
763   * [mod_cgi] FreeBSD 9.3/MacOSX does not have pipe2() (fixes #2765)
764   * [mod_extforward] fix crash on invalid IP (fixes #2766)
765   * [mod_fastcgi] fix segfault if all backends down (fixes #2768)
766   * [mod_cgi] fix out of sockets error for POST to CGI (fixes #2771)
767   * [mod_auth] compile fix for Mac OS X XCode (fixes #2772)
768   * [mod_authn_gssapi] better resource cleanup
769   * [core] compile fix for Mac OS X 10.6 (old) (fixes #2773)
770   * fix race in dynamic handler configs (reentrancy) (fixes #2774)
771   * [mod_authn_mysql] close mysql_conn in cleanup
772   * [mod_webdav] compile fix when locking not enabled
773   * load mod_auth & mod_authn_file in sample/test.conf
774   * comment out auth.backend.ldap.* in tests/*.conf
775   * [mod_fastcgi,mod_scgi] warn if invalid "bin-path"
776   * RAND_pseudo_bytes() is deprecated in openssl 1.1.0
777   * openssl 1.1.0 init and cleanup
778   * [mod_cgi] remove direct calls to network_backend*
779   * [build] build network_*.c into lighttpd executable
780   * suggest inclusion of mod_geoip... before mod_ssi.
781   * set systemd settings similar to lighttpd2
782   * [doc] remove reference to Linux rt-signals
783   * [mod_authn_gssapi] fix missing error ret, coverity
784   * [core] rename li_rand() to li_rand_pseudo_bytes()
785   * remove #include "stream.h" where not used
786   * [mod_cml] include lua headers before base.h
787   * [core] combine duplicated connection reset code
788   * [mod_ssi] produce content in subrequest hook
789   * [core] remove srv->entropy[]
790   * [core] defer li_rand_init() until first use
791   * [core] permit connection-level state in modules
792   * [mod_dirlisting] render dirlisting as HTML (fixes #2767)
793   * [mod_proxy] replace HTTP Host sent to backend (fixes #2770)
794   * [mod_ssi] basic recursive SSI include virtual (fixes #536)
795   * [mod_ssi] implement, ignore <!--#comment ... -->
796   * [core] consolidate duplicated read-to-close code
797   * [core] fix segfault when parsing a bad config file
798   * [core] support Transfer-Encoding: chunked req body (fixes #2156)
799   * [autobuild] set NO_RDYNAMIC=yes for midipix
800   * [mod_proxy] proxy.balance = "sticky" option (fixes #2117)
801   * [mod_secdownload] warn if SHA used w/o SSL crypto
802   * [build] compile fixes for AIX
803   * [build] check for pipe2() at configure time
804   * [mod_evhost] fix an incorrect error trace
805   * [tests] mark tests/docroot/www/*.pl scripts a+x
806   * [mod_cgi] fall back to pipe() if pipe2() fails
807   * fix SCons fullstatic build with glibc pthreads
808   * [TLS] openssl 1.1.0 makes SSL_OP_NO_SSLv2 no-op
810 - 1.4.43 - 2016-10-31
811   * [autobuild] remove mod_authn_gssapi dep on resolv
812   * [mod_deflate] ignore '*' in deflate.mimetypes
813   * [autobuild] omit module stubs when missing deps
814   * [TLS] openssl 1.1.0 hides struct bignum_st
815   * [autobuild] move http_cgi_ssl_env() for Mac OS X (fixes #2757)
816   * [core] use paccept() on NetBSD (replace accept4())
817   * [TLS] remote IP conditions are valid for TLS SNI (fixes #2272)
818   * [doc] lighttpd-angel.8 (fixes #2254)
819   * [cmake] build fcgi-auth, fcgi-responder for tests
820   * [mod_accesslog] %{ratio}n logs compression ratio (fixes #2133)
821   * [mod_deflate] skip deflate if loadavg too high (fixes #1505)
822   * [mod_expire] expire by mimetype (fixes #423)
823   * [mod_evhost] partial matching patterns (fixes #1194)
824   * build: use CC_FOR_BUILD for lemon when cross-compiling
825   * [mod_dirlisting] config header and readme files
826   * [config] warn if mod_authn_ldap,mysql not listed
827   * fix FastCGI, SCGI, proxy reconnect on failure
828   * [core] network_open_file_chunk() temp file opt
829   * [mod_rewrite] add more info in error log msg
830   * [core] fix fd leak when using libev (fixes #2761)
831   * [core] fix potential streaming tempfile corruption (fixes #2760)
832   * [mod_scgi] fix prefix matching to always match url
833   * [autobuild] adjust Makefile.am for FreeBSD
834   * [build] move some build scripts to scripts/
835   * [autotools] fix configure.ac for opensuse 13.2
837 - 1.4.42 - 2016-10-16
838   * [TLS] SSL_shutdown() only if handshake finished
839   * [mod_proxy,mod_scgi] shutdown remote only if local (#2743)
840   * [core] check if client half-closed TCP if POLLHUP (#2743)
841   * [core] enforce wait for POLLWR after EINPROGRESS (fixes #2744)
842   * [core] do not enter handler twice after read body
843   * [core] proxy,scgi omit shutdown() to backend (fixes #2743)
844   * [mod_dirlisting] dirlist does not handle POST
845   * [mod_dirlisting] js column sort for dirlist table (fixes #613, fixes #2315)
846   * [mod_auth] Digest auth fails after rewrite (fixes #2745)
847   * [mod_auth] refactor out auth backend code
848   * [mod_auth] extensible interface for auth backends
849   * [core] better DragonFlyBSD support (fixes #2746)
850   * [mod_auth] include base.h for USE_OPENSSL def
851   * [mod_auth] support CRYPT-MD5-NTLM algorithm (fixes #1743)
852   * [mod_auth] terminate salt for CRYPT-MD5-NTLM
853   * [core] fix crash if ready events on abandoned fd (fixes #2748)
854   * [mod_auth] http_auth_md5_hex2bin()
855   * [mod_auth] remove empty mod_auth.h
856   * [mod_auth] mod_authn_mysql.c MySQL auth backend (fixes #752, fixes #1845)
857   * [mod_cgi] permit CGI exec of unreadable files (fixes #2374)
858   * [mod_uploadprogress] add to default build
859   * [mod_geoip] add to default build (fixes #2705, fixes #2101, fixes #2092, fixes #2025, fixes #1962, fixes #1938)
860   * [mod_fastcgi] Authorizer support with Responder (fixes #321, fixes #322)
861   * [tests] test coverage for issues (#321, #322)
862   * dynamic handlers store debug flag in handler_ctx
863   * [mod_fastcgi] allow authorizer, responder for same path/ext (#321)
864   * backport mod_deflate to lighttpd 1.4 (fixes #1824, fixes #2753)
865   * [autobuild] test_configfile might need vector.c (fixes #2752)
866   * [mod_deflate] fix longjmp clobber compiler warning
867   * remove unused array type TYPE_COUNT data_count
868   * [mod_auth] structured data, register auth schemes
869   * [mod_auth] mod_authn_gssapi Kerberos auth backend (fixes #1899)
870   * [autobuild] skip two new tests if no fcgi-auth
871   * [SCons] define with_krb5 for SCons build
872   * [SCons] fix syntax error in SConstruct
873   * [SCons] define with_geoip for SCons build
874   * [CMake] fix clang -Wcast-align warnings in lemon.c
875   * remove excess initializers (fix compiler warnings)
876   * fix errors detected by Coverity Scan
877   * performance: use Linux extended syscalls and flags
878   * [mod_scgi] add uwsgi protocol support
879   * [mod_auth] refactor LDAP code into smaller funcs
880   * [mod_auth] HTTP Basic auth backends also do authz (#1817)
881   * [mod_auth] ldap filter subst user for multiple '$' (fixes #1508)
882   * [mod_auth] permit specifying ldap DN; skip search (fixes #1248)
883   * [autobuild] update module/feature report
884   * [cmake] build mod_authn_gssapi if WITH_KRB5
885   * [mod_auth] fix printing of IP in error trace
886   * [mod_mysql_vhost] support multiple '?' replacement (fixes #2163)
887   * [core] make server.max-request-size scopeable (#1901)
888   * [core] server.max-request-field-size (fixes #2130)
889   * [core] optional condition in config "else" clause (fixes #1268)
890   * [core] restrict where config "else" clauses occur (#1268)
891   * silence warnings from clang ccc-analyzer
892   * consistent, shared code to create CGI env
893   * [TLS] replace env entries in https_add_ssl_entries
894   * [TLS] set SSL_CLIENT_M_SERIAL w/ client cert SN (fixes #2268)
895   * [TLS] set SSL_CLIENT_VERIFY w/ client cert (#1288, #2693)
896   * [TLS] set SSL_PROTOCOL, SSL_CIPHER* (fixes #2511)
897   * [core] rand.[ch] to use better RNGs when available
898   * [mod_cgi] fix pipe_cloexec() when no O_CLOEXEC
899   * ignore return value from fcntl() FD_CLOEXEC
900   * build w/o compiler warnings if no zlib or bz2lib
902 - 1.4.41 - 2016-07-31
903   * remove long-deprecated, non-functional config opts
904   * [config] inherit server.use-ipv6 and server.set-v6only (fixes #678)
905   * [mod_auth] fix Digest auth to be better than Basic (fixes #1844)
906   * [mod_ssi] fix #config sizefmt="bytes"
907   * [autobuild] move inet_pton detection later
908   * [core] #include <sys/filio.h> for FIONREAD (fixes #2726)
909   * [autobuild] clock_gettime() -lrt with glibc < 2.17
910   * [security] do not emit HTTP_PROXY to CGI env
911   * [build_cmake] clock_gettime() -lrt w/ glibc < 2.17 (fixes #2737)
912   * [core] avoid spurious trace and error abort
913   * [core] stay in CON_STATE_CLOSE until done with req
914   * [core] $HTTP["remoteip"] must handle IPv6 w/o []
915   * [mod_status] show keep-alive status w/ text output (fixes #2740)
916   * do not set REDIRECT_URI in mod_magnet, mod_rewrite (#2738)
917   * revert 1.4.40 swap of REQUEST_URI, REDIRECT_URI (fixes #2738)
918   * [core] permit IPv6 address scope identifier
919   * [TLS] better handling of SSL_ERROR_WANT_READ/WRITE
920   * [TLS] read all available records from SSL_read()
921   * [core] try AF_INET after AF_INET6 if use-ipv6
922   * [core] set chunkqueue tempdirs at startup
923   * [security] ensure gid != 0 if server.username set (fixes #2725)
924   * [security] disable stat_cache if !follow-symlink (fixes #2724)
925   * [core] fix buffer_copy_string_hex() assert (fixes #2742)
926   * [security] encode quoting chars in HTML and XML
927   * [cmake] always define _GNU_SOURCE
928   * [cmake] enable warnings for GCC and Clang
929   * [cmake] set cmake_minimum_required to 2.8.2
931 - 1.4.40 - 2016-07-16
932   * [mod_ssi] enhance support for ssi vars (thx fbrosson)
933   * add handling for lua 5.2 and 5.3 (fixes #2674)
934   * use libmemcached instead of deprecated libmemcache
935   * add force_assert for more allocation results
936   * [mod_cgi] use MAP_PRIVATE to mmap temporary file (fixes #2715)
937   * [core] do not send SIGHUP to process group unless server.max-workers is used (fixes #2711)
938   * [mod_cgi] edge case chdir "/" when docroot "/" (fixes #2460)
939   * [mod_cgi] issue trace and exit if execve() fails (closes #2302)
940   * [configparser] don't continue after parse error (fixes #2717)
941   * [core] never evaluate else branches until the previous branches are ready (fixes #2598)
942   * [core] fix conditional cache handling
943   * [core] improve conditional enabling (thx Gwenlliana, #2598)
944   * [mod_compress] case-insensitive content-codings (fixes #2645)
945   * [plugins] don't include dlfcn.h if not needed (fixes #2548)
946   * [mod_fastcgi] 404 for X-Sendfile file not found (fixes #2474)
947   * [mod_cgi] send 500 if CGI ends and there is no response (fixes #2542)
948   * [mod_cgi] consolidate CGI cleanup code
949   * [mod_cgi] simplify mod_cgi_handle_subrequest()
950   * [mod_cgi] kill CGI if fail to write request body
951   * [mod_proxy] use case-insensitive comparision to filter headers, send Connection: Close to backend (fixes #421)
952   * [mod_dirlisting] dir-listing.hide-dotfiles = "enabled" by default (fixes #1081)
953   * [mod_secdownload] fix buffer overflow in secdl_verify_mac (reported by Fortify Open Review Project)
954   * [mod_fastcgi,mod_scgi] fix leaking file-descriptor when backend spawning failed (reported by Fortify Open Review Project)
955   * [core] improve array API to prevent memory leaks
956   * [core] refactor array search; raise array size limit to SSIZE_MAX
957   * [core] fix memory leak in configparser_merge_data
958   * [core] provide array_extract_element and use it
959   * [core] configparser: error on duplicate keys in array merge (fixes #2685)
960   * [core] more careful parse of $SERVER["socket"] config str (prepare #2204)
961   * [core] accept $SERVER["socket"] without port, use server.port as fallback (fixes #2204)
962   * [mod_magnet] define lua_pushglobaltable (for lua5.1) and use it (fixes #2719)
963   * [ssl] support disabling ssl.verifyclient.activate in SNI callback (fixes #2531)
964   * restart (some) syscalls after SIGCHLD interrupted them; should fix LDAP problems (fixes #2464)
965   * [core] log remote address on request timeouts (fixes #652)
966   * [autobuild] use AC_CANONICAL_HOST instead of AC_CANONICAL_TARGET (fixes #1866)
967   * [core] fix request_start in keep-alive requests to mark time when received first byte (fixes #2412)
968   * [core] truncate pidfile on exit (fixes #2695)
969   * consistent inclusion of config.h at top of files (fixes #2073)
970   * [core] add generic vector implementation
971   * [core] replace array weakref with vector
972   * [base64] fix crash due to broken force_assert
973   * [unittests] add test_buffer and test_base64 unit tests
974   * [buffer] refactor buffer_path_simplify (fixes #2560)
975   * validate return values from strtol, strtoul (fixes #2564)
976   * [mod_ssi] Add SSI vars SCRIPT_{URI,URL} and REQUEST_SCHEME (fixes #2721)
977   * [config] warn if server.upload-dirs has non-existent dirs (fixes #2508)
978   * [mod_proxy] accept LF delimited headers, not just CRLF (fixes #2594)
979   * [core] wait for grandchild to be ready when daemonizing (fixes #2712, thx pasdVn)
980   * [core] respond 411 Length Required if request has Transfer-Encoding: chunked (fixes #631)
981   * [core] fixed the loading for default modules if they are specified explicitly
982   * [core] lighttpd -tt performs preflight startup checks (fixes #411)
983   * [stat] mimetype.xattr-name global config option (fixes #2631)
984   * [mod_webdav] allow Depth: Infinity lock on file (fixes #2296)
985   * [mod_status] use snprintf() instead of sprintf()
986   * pass buf size to li_tohex()
987   * use li_[iu]tostrn() instead of li_[iu]tostr()
988   * [stream] fstat() after open() to obtain file size
989   * [core] clean up srv before exiting for lighttpd -[vVh]
990   * [mod_fastcgi,mod_scgi] check for spawning on same unix socket (fixes #319)
991   * [mod_cgi] always set QUERY_STRING (fixes #1339)
992   * [mod_auth] send charset="UTF-8" in WWW-Authenticate (fixes #1468)
993   * [mod_magnet] rename var for clarity (fixes #1483)
994   * [mod_extforward] reset cond_cache for scheme (fixes #1499)
995   * [mod_webdav] readdir POSIX compat (fixes #1826)
996   * [mod_expire] reset caching response headers for error docs (fixes #1919)
997   * [mod_status] page refresh option (fixes #2170)
998   * [mod_status] table w/ count of con states (fixes #2427)
999   * [mod_dirlisting] class for dir <tr> (fixes #2304)
1000   * [core] define __STDC_WANT_LIB_EXT1__ (fixes #2722)
1001   * [core] setrlimit max-fds <= rlim_max for non-root (fixes #2723)
1002   * [mod_ssi] config ssi.conditional-requests
1003   * [mod_ssi] config ssi.exec (fixes #2051)
1004   * [mod_redirect,mod_rewrite] short-circuit if blank replacement (fixes #2085)
1005   * [mod_indexfile] save physical path to env (fixes #448, #892)
1006   * [core] open fd when appending file to cq (fixes #2655)
1007   * [config] server.listen-backlog option (fixes #1825, #2116)
1008   * [core] retry tempdirs on partial write, ENOSPC (fixes #2588)
1009   * [core] compile with upcoming openssl 1.1.0 release (fixes #2727)
1010   * [core] improve dynamic handler control flow logic
1011   * [core] defer reading request body until handle subrequest (fixes #2541)
1012   * [core] always poll for client POLLHUP/POLLERR events (fixes #399)
1013   * [mod_fastcgi,mod_scgi,mod_proxy] handlers can read response before sending req body (fixes #131, #2566)
1014   * [mod_cgi] asynchronous send of request body to CGI
1015   * [core] compile with upcoming openssl 1.1.0 release (fixes #2727)
1016   * [core] set REDIRECT_STATUS to error_handler_saved_status (fixes #1828)
1017   * [core] server.error-handler new directive for error pages (fixes #2702)
1018   * [core] support IPv6 in $HTTP["remote-ip"] CIDR cond match (fixes #2706)
1019   * [core] http_response_send_file() shared code (#2017)
1020   * [mod_fastcgi] use http_response_xsendfile() (fixes #799, fixes #851, fixes #2017, fixes #2076)
1021   * [mod_scgi] X-Sendfile feature (fixes #2253)
1022   * [mod_cgi] X-Sendfile feature (fixes #2313)
1023   * [mod_webdav] lseek,read if fs can not mmap (#2666, fixes #962)
1024   * [mod_compress] use mmap and trap SIGBUS (#2666, fixes #1879)
1025   * fallback to lseek()/read() if mmap() fails (#fixes 2666)
1026   * [mod_auth] skip blank lines and comment lines (fixes #2327)
1027   * [core] fallback to write if sendfile not supported (fixes #471, #987)
1028   * [core] preserve PATH_INFO case on case-insensitive fs (fixes #406)
1029   * [mod_ssi, mod_cml] set DOCUMENT_ROOT to basedir (fixes #2383)
1030   * [core] cmd line opt to shutdown after idle time limit (fixes #2696)
1031   * [core] lighttpd -1 handles single request on stdin socket (fixes #1584)
1032   * [mod_fastcgi,mod_scgi] IPv6 support (fixes #2372)
1033   * [mod_status] add JSON output option (fixed #2432)
1034   * [mod_webdav] map COPY/MOVE Destination to aliases (fixes #1787)
1035   * [mod_webdav] improve PROPFIND,PROPPATCH (#1818, #1953)
1036   * [core] reset response headers, write_queue for error docs
1037   * build with libressl
1038   * static build instructions using SCons or make
1039   * [mod_auth] preserve WWW-Authenticate for error docs (fixes #2730)
1040   * check close() return code after writing to file
1041   * adjustments for openssl 1.1.0 pre-release
1042   * [config] support include file glob (fixes #1221)
1043   * [mod_evasive] 302 redirect option if limit reached (fixes #2199)
1044   * [build] enhancements for cross-compiling (fixes #2276)
1045   * [mod_accesslog] report aborted con state with %X (fixes #1890)
1046   * [mod_ssi] fix SSI statement parser
1047   * [mod_ssi] include relative to alias,userdir (fixes #222)
1048   * [mod_ssi] add PCRE_* options to constrain regex
1049   * [mod_ssi] more flexible quoting (fixes #1768)
1050   * [core] wrap IPv6 literal in "[]" in redirect URL
1051   * [mod_ssi] fix parse of tag across buf boundary (fixes #2732)
1052   * [mod_cgi,mod_scgi] X-Sendfile sets file_started (fixes #2733)
1053   * [mod_fastcgi] no chunked response w/ X-Sendfile (fixes #2733)
1054   * [config] opts for http header parsing strictness (fixes #551, fixes #1086, fixes #1184, fixes #2143, #2258, #2281, fixes #946, fixes #1330, fixes #602, #1016)
1055   * [config] normalize IP strings in lighttpd.conf
1056   * [build_cmake] use MODULE on Mac OS X (fixes #1761)
1057   * [config] server.bsd-accept-filter option
1058   * [mod_webdav] create file w/ LOCK request if ENOENT
1059   * [core] buffer large responses to tempfiles (fixes #758, fixes #760, fixes #933, fixes #1387, #1283, fixes #2083)
1060   * [core] stream response to client (#949)
1061   * [TLS] release openssl buffers as used (fixes #1265, fixes #1283, #881)
1062   * [config] config options to stream request/response (#949, #376)
1063   * [core] option to stream request body to backend (fixes #376)
1064   * [core] option to stream response body to client (fixes #949, #760, #1283, #1387)
1065   * drain backend socket/pipe bufs upon FDEVENT_HUP
1066   * remove excess calls to joblist_append()
1067   * defer choosing "Transfer-Encoding: chunked"
1068   * asynchronous, bidirectional streaming options
1069   * fix errors detected by Coverity Scan
1070   * [cygwin] fix mod_proxy and mod_fastcgi ioctl use
1071   * [mod_webdav] remove excess SQL param to UNLOCK
1072   * graceful shutdown without unnecessary 1 sec delay
1073   * [core] disable Nagle algorithm (TCP_NODELAY)
1074   * [core] add declarations to fdevent.h (#2373)
1075   * [tests] remove dependency on CGI.pm
1076   * [TLS] fix return value checks during cert init
1077   * [core] fix server.max-request-size to be precise (fixes #2131)
1078   * [mod_webdav] fix proppatch mem leak, other fixes (#fixes 1334, #fixes 2000)
1079   * [autobuild] CMake check for struct tm tm_gmtoff (fixes #2014)
1080   * [mod_uploadprogress] fix mem leak (#1858)
1081   * [core] make server.max-request-size scopeable (fixes #1901)
1082   * [mod_fastcgi,mod_scgi] check for spawning on same unix socket (#319)
1083   * [mod_accesslog] %a %A %C %D %k %{}t %{}T (fixes #1145, fixes #1415, fixes #2081)
1084   * [mod_access] new directive url.access-allow (fixes #1421)
1085   * [core] fdevent_libev: update use of ev_timer
1086   * [mod_cgi] handle local redirect response (fixes #2108)
1088 - 1.4.39 - 2016-01-02
1089   * [core] fix memset_s call (fixes #2698)
1090   * [chunk] fix use after free / double free (fixes #2700)
1092 - 1.4.38 - 2015-12-05
1093   * [stat-cache] fix handling of collisions, might have returned wrong data (fixes #2669)
1094   * [core] allocate at least 4k buffer for incoming data
1095   * [core] fix search for header end if split across chunks (fixes #2670)
1096   * [core] check configparserAlloc() result with force_assert
1097   * [mod_auth] implement and use safe_memclear, using memset_s or explicit_bzero if available (thx loganaden)
1098   * [core] don't buffer request bodies smaller than 64k on disk
1099   * add force_assert for many allocations and function results
1100   * [mod_secdownload] use a hopefully constant time comparison to check hash (fixes #2679)
1101   * [config] check config option scope; warn if server option is given in conditional
1102   * [core] revert increase of temp file size back to 1MB, provide a configure option "server.upload-temp-file-size" instead (fixes #2680)
1103   * [core] add '~' to safe characters in ENCODING_REL_URI/ENCODING_REL_URI_PART encoding
1104   * [core] encode path with ENCODING_REL_URI in redirect to directory (fixes #2661, thx gstrauss)
1105   * [mod_secdownload] add required algorithm option; old behaviour available as "md5", new options "hmac-sha1" and "hmac-sha256"
1106   * [mod_fastcgi/mod_scgi] zero sockaddr structs before use (fixes #2691, thx Kyle J. McKay)
1107   * [network] add darwin-sendfile backend (fixes #2687, thx Kyle J. McKay)
1108   * [core] show correct crypt support result (fixes #2690, thx Kyle J. McKay)
1110 - 1.4.37 - 2015-08-30
1111   * [mod_proxy] remove debug log line from error log (fixes #2659)
1112   * [mod_dirlisting] fix dir-listing.set-footer not showing
1113   * fix out-of-filedescriptors when uploading "large" files (fixes #2660, thx rmilecki)
1114   * increase upload temporary chunk file size from 1MB to 16MB
1115   * fix undefined integer shift
1116   * rewrite network sendfile/mmap/writev/write backends
1117   * fix some unchecked return value warnings
1118   * [kqueue] fix kevent call
1119   * [autoconf] define HAVE_CRYPT when crypt() is present
1120   * [bsd xattr] fix compile break with BSD extended attributes in stat_cache
1121   * [mod_cgi] rewrite mmap and generic (post body) send error handling
1122   * [mmap] fix mmap alignment
1123   * [plugins] when modules are linked statically still only load the modules given in the config
1124   * [mmap] handle SIGBUS in network; those get triggered if the file gets smaller during reading
1125   * fix some warnings found by coverity ("leak" in setup phase, not catching too long unix socket paths in mod_proxy)
1127 - 1.4.36 - 2015-07-26
1128   * use keep-alive timeout while waiting for HTTP headers; use always the read timeout while waiting for the HTTP body
1129   * fix bad shift in conditional netmask ".../0" handling
1130   * add more mime types and a script to generate mime.conf (fixes #2579)
1131   * add support for (Free)BSD extended attributes
1132   * [build] use fortify flags with "extra-warnings"
1133   * [mod_dirlisting,mod_redirect,mod_rewrite] abort config parsing if pcre-compile fails or isn't available
1134   * [ssl] disable SSL3.0 by default
1135   * fixed typo in example config found by openSUSE user (boo# 907709)
1136   * [network] fix compile break in calculation of sockaddr_un size if SUN_LEN is not defined (fixes #2609)
1137   * [connections] fix bug in connection state handling
1138   * print backtrace in assert logging with libunwind
1139   * major refactoring of internal buffer/chunk handling
1140   * [mod_auth] use crypt_r instead of crypt if available
1141   * fix error message for T_CONFIG_ARRAY config values if an entry value is not a string
1142   * fix segfaults in many plugins if they failed configuration
1143   * escape all strings for logging (fixes #2646 log file injection, reported by Jaanus Kääp)
1144   * fix hex escape in accesslog (fixes #2559)
1145   * show extforward re-run warning only with debug.log-request-handling (fixes #2561)
1146   * parse If-None-Match for ETag validation (fixes #2578)
1147   * fix memory leak in mod_status when no counters are set (found by coverity)
1148   * [mod_magnet] fix segfault when accessing not existing lighty.req_env[] entry (found by coverity)
1149   * fix segfault when temp file for upload couldn't be created (found by coverity)
1150   * mime.conf: add some new mime types, remove .dat, .sha1, .md5, update .vcf
1151   * [mod_proxy] add unix domain socket support (fixes #2653)
1152   * [configfile] fix reading uninitialized variable (found by Willian B.)
1154 - 1.4.35 - 2014-03-12
1155   * [network/ssl] fix build error if TLSEXT is disabled
1156   * [mod_fastcgi] fix use after free (only triggered if fastcgi debug is active)
1157   * [mod_rrdtool] fix invalid read (string not null terminated)
1158   * [mod_dirlisting] fix memory leak if pcre fails
1159   * [mod_fastcgi,mod_scgi] fix resource leaks on spawning backends
1160   * [mod_magnet] fix memory leak
1161   * add comments for switch fall throughs
1162   * remove logical dead code
1163   * [buffer] fix length check in buffer_is_equal_right_len
1164   * fix resource leaks in error cases on config parsing and other initializations
1165   * add force_assert() to enforce assertions as simple assert()s are disabled by -DNDEBUG (fixes #2546)
1166   * [mod_cml_lua] fix null pointer dereference
1167   * force assertion: setting FD_CLOEXEC must work (if available)
1168   * [network] check return value of lseek()
1169   * fix unchecked return values from stream_open/stat_cache_get_entry
1170   * [mod_webdav] fix logic error in handling file creation error
1171   * check length of unix domain socket filenames
1172   * fix SQL injection / host name validation (thx Jann Horn)
1174 - 1.4.34 - 2014-01-20
1175   * [mod_auth] explicitly link ssl for SHA1 (fixes #2517)
1176   * [mod_extforward] fix compilation without IPv6, (not) using undefined var (fixes #2515, thx mm)
1177   * [ssl] fix SNI handling; only use key+cert from SNI specific config (fixes #2525, CVE-2013-4508)
1178   * [doc] update ssl.cipher-list recommendation
1179   * [stat-cache] FAM: fix use after free (CVE-2013-4560)
1180   * [stat-cache] fix FAM cleanup/fdevent handling
1181   * [core] check success of setuid,setgid,setgroups (CVE-2013-4559)
1182   * [ssl] fix regression from CVE-2013-4508 (client-cert sessions were broken)
1183   * maintain physical.basedir (the "acting" doc-root as prefix of physical.path) in more places
1184   * [core] decode URL before rewrite, enabling it to work in $HTTP["url"] conditionals (fixes #2526)
1185   * [auto* build] remove -no-undefined from linker flags, as we actually link modules with undefined symbols (fixes #2533)
1186   * [mod_mysql_vhost] fix memory leak on config init (#2530)
1187   * [mod_webdav] fix fd leak found with parfait (fixes #2530, thx kukackajiri)
1189 - 1.4.33 - 2013-09-27
1190   * mod_fastcgi: fix mix up of "mode" => "authorizer" in other fastcgi configs (fixes #2465, thx peex)
1191   * fix handling of If-Modified-Since if If-None-Match is present (don't return 412 for date parsing errors);
1192     follow current draft for HTTP/1.1, which tells us to ignore If-Modified-Since if we have matching etags.
1193   * [mod_fastcgi,log] support multi line logging (fixes #2252)
1194   * call ERR_clear_error only for ssl connections in CON_STATE_ERROR
1195   * reject non ASCII characters in HTTP header names
1196   * [mod_auth] use crypt() on encrypted password instead of extracting salt first (fixes #2483)
1197   * [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.
1198   * [mod_auth] fix base64_decode (#2484)
1199   * fix some bugs found with canalyze (fixes #2484, thx Zhenbo Xu)
1200   * fix undefined stuff found with clang
1201   * [cmake] Use TARGET_LINK_LIBRARIES instead of LINK_FLAGS for library dependencies, also add -Wl,--as-needed to extra warnings (fixes #2448)
1202   * [mod_auth] fix invalid read in digest qop=auth-int handling (fixes #2478)
1203   * [auto* build] simplify autogen.sh, handle automake 1.13 test running (fixes #2490)
1204   * [mod_userdir] add userdir.active option, "enabled" by default
1205   * [core] return 501 Not Implemented in static file mode for all methods except GET/POST/HEAD/OPTIONS
1206   * [core] recognize more http methods to forward to backends (fixes #2346)
1207   * [ssl] use DH only if openssl supports it (fixes #2479)
1208   * [network] use constants available at compile time for maximum number of chunks for writev instead of calling sysconf (fixes #2470)
1209   * [ssl] Fix $HTTP["scheme"] conditional, could be "http" for ssl connections if the ssl $SERVER["socket"] conditional was nested (fixes #2501)
1210   * [ssl] accept ssl renegotiations if they are not disabled (fixes #2491)
1211   * [ssl] add option ssl.empty-fragments, defaulting to disabled (fixes #2492)
1212   * [auth] put REMOTE_USER into cgi environment, making it accessible to lua via lighty.req_env (fixes #2495)
1213   * [auth] new method "extern" to use already present REMOTE_USER (from magnet, ssl, ...) (fixes #2436)
1214   * [core] remove requirement that default doc-root has to exist, there are reasonable scenarios not requiring static files at all
1215   * [core] check whether server.chroot exists
1216   * [mod_simple_vhost] fix cache; skip module if simple-vhost.server-root is empty (thx rm for reporting)
1217   * [mod_accesslog] add accesslog.syslog-level option (fixes #2480)
1218   * [core] allow files to be used as document-root (fixes #2475)
1219   * [core] set signal handlers before forking child processes in modules/plugins_call_set_defaults (fixes #2502)
1221 - 1.4.32 - 2012-11-21
1222   * Code cleanup with clang/sparse (fixes #2437, thx kibi)
1223   * Ignore EPIPE/ECONNRESET after SSL_shutdown
1224   * Handle ENAMETOOLONG, return 404 Not Found (fixes #2396, thx dererkazo)
1225   * configure.ac: remove old stuff, add some new to fix warnings in automake 1.12 (fixes #2419, thx blino)
1226   * add PATCH method (fixes #2424)
1227   * fix :port handling in $HTTP["host"] checks (fixes #2135. thx liming)
1228   * network_server_init: fix double free and memleak on error (fixes #2440, thx kyprizel)
1229   * detect "x-gzip"/"x-bzip2" as separate encodings, more strict encoding matching (fixes #2443)
1230   * tests: make sure mod_proxy doesn't leave running processes (fixes #2435, thx kibi)
1231   * mod_extforward: log address of untrusted proxy with debug.log-request-handling
1232   * fix DoS in Connection header value split (reported by Jesse Sipprell, CVE-2012-5533)
1233   * remove whitespace at end of header keys
1235 - 1.4.31 - 2012-05-31
1236   * [ssl] fix segfault in counting renegotiations for openssl versions without TLSEXT/SNI (thx carpii for reporting)
1237   * Move fdevent subsystem includes to implementation files to reduce conflicts (fixes #2373)
1238   * [mod_compress] fix handling if etags are disabled but cache-dir is set - may lead to double response
1239   * disable mmap by default (fixes #2391)
1240   * buffer_caseless_compare: always convert letters to lowercase to get transitive results, fixing array lookups (fixes #2405)
1241   * Fix handling of empty header list entries in http_request_split_value, fixing invalid read in valgrind (fixes #2413)
1242   * Fix access log escaping of " and \\ (fixes #1551)
1243   * [mod_auth] Fix digest "md5-sess" implementation (Errata ID 1649, RFC 2617) (fixes #2410)
1244   * [auth] Add "AUTH_TYPE" environment (for *cgi), remove fastcgi specific workaround, add fastcgi test case (fixes #889)
1245   * [mod_*cgi,mod_accesslog] Fix splitting :port with ipv6 (fixes #2333, thx simoncpu)
1246   * Detect multiple -f options: show error message instead of assert (fixes #2416)
1247   * [mod_extforward] Support ipv6 addresses (fixes #1889)
1248   * [mod_redirect] Support url.redirect-code option (fixes #2247)
1249   * Fix --enable-mmap handling in configure.ac
1251 - 1.4.30 - 2011-12-18
1252   * Always use our 'own' md5 implementation, fixes linking issues on MacOS (fixes #2331)
1253   * Limit amount of bytes we send in one go; fixes stalling in one connection and timeouts on slow systems.
1254   * [ssl] fix build errors when Elliptic-Curve Diffie-Hellman is disabled
1255   * Add static-file.disable-pathinfo option to prevent handling of urls like .../secret.php/image.jpg as static file
1256   * Don't overwrite 401 (auth required) with 501 (unknown method) (fixes #2341)
1257   * Fix mod_status bug: always showed "0/0" in the "Read" column for uploads (fixes #2351)
1258   * [mod_auth] Fix signedness error in http_auth (fixes #2370, CVE-2011-4362)
1259   * [ssl] count renegotiations to prevent client renegotiations
1260   * [ssl] add option to honor server cipher order (fixes #2364, BEAST attack)
1261   * [core] accept dots in ipv6 addresses in host header (fixes #2359)
1262   * [ssl] fix ssl connection aborts if files are larger than the MAX_WRITE_LIMIT (256kb)
1263   * [libev/cgi] fix waitpid ECHILD errors in cgi with libev (fixes #2324)
1265 - 1.4.29 - 2011-07-03
1266   * Fix mod_proxy waiting for response even if content-length is 0 (fixes #2259)
1267   * Silence annoying "connection closed: poll() -> ERR" error.log message (fixes #2257)
1268   * mod_cgi: make read buffer as big as incoming data block
1269   * [build] Fix detection of libev (fixes #2300)
1270   * ssl: Support for Diffie-Hellman and Elliptic-Curve Diffie-Hellman key exchange (fixes #2301)
1271          add ssl.use-sslv3 (fixes #2246)
1272          load all algorithms (fixes #2239)
1273   * [ssl/md5] prefix our own md5 implementation with li_ so it doesn't conflict with the openssl one (fixes #2269)
1274   * [ssl/build] some minor fixes; fix compile without ssl, cleanup ssl config buffers
1275   * [proc,include_shell] log error if exec shell fails (fixes #2280)
1276   * [*cgi] Use physical base dir (alias, userdir) as DOCUMENT_ROOT in cgi environments (fixes #2216)
1277   * [doc] Move docs to outdated/ subdir and refer to wiki instead (fixes #2248)
1278   * fdevent: add solaris eventports (fixes #2171)
1280 - 1.4.28 - 2010-08-22
1281   * Rename fdevent_event_add to _set to reflect what the function does. Fix some handlers. (fixes #2249)
1282   * Fix buffer.h to include stdio.h as it is needer for SEGFAULT() (fixes #2250)
1284 - 1.4.27 - 2010-08-13
1285   * Fix handling return value of SSL_CTX_set_options (fixes #2157, thx mlcreech)
1286   * Fix mod_proxy HUP handling (send final chunk, fix usage counter)
1287   * mod_proxy: close connection on write error (fixes #2114)
1288   * Check uri instead of physical path for directory redirect
1289   * Fix detecting git repository (fixes #2173, thx ncopa)
1290   * [mod_compress] Fix segfault when etags are disabled (fixes #2169)
1291   * Reset uri.authority before TLS servername handling, reset all "keep-alive" data in connection_del (fixes #2125)
1292   * Print double quotes properly when dumping config file (fixes #1806)
1293   * Include IP addresses on error log on password failures (fixes #2191)
1294   * Fix stalls while reading from ssl sockets (fixes #2197)
1295   * Fix etag formatting on boxes with 32-bit longs
1296   * Fix two compiler warnings
1297   * mod_accesslog: fix %p for ipv6 sockets (fixes #2228, thx jo.henke)
1298   * mod_fastcgi: Send 502 "Bad Gateway" if we couldn't open the file for X-Sendfile (fixes #2226)
1299   * mod_staticfile: add debug output if we ignore a file with static-file.exclude-extensions (fixes #2215)
1300   * mod_cgi: fix race condition leaving response not forwarded to client (fixes #2217)
1301   * mod_accesslog: Fix var declarations mixed in source (fixes #2233)
1302   * mod_status: Add version to status page (fixes #2219)
1303   * mod_accesslog: optimize accesslog_append_escaped (fixes #2236, thx crypt)
1304   * openssl: silence annoying error messages for errno==0 (fixes #2213)
1305   * 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)
1306   * add check to stop loading plugins twice
1307   * cleanup fdevent code, removed linux-rtsig handler, replaced some fprintf calls
1308   * only require FDEVENT_IN bit to be set for listening connections (fixes #2227)
1309   * add libev fdevent handler: server.event-handler = "libev"
1310   * mod_proxy: return response as soon as it is available (fixes #2196)
1311   * don't overwrite global server.force-lowercase-filenames setting (fixes #2042)
1312   * bind to IPV6-only if ipv6 address was specified (https://redmine.lighttpd.net/projects/lighttpd/wiki/IPv6-Config)
1314 - 1.4.26 - 2010-02-07
1315   * Fix request parser to handle packets with splitted \r\n\r\n (fixes #2105)
1316   * Remove dependency on automake >= 1.11 with m4_ifdef check
1317   * mod_accesslog: support %e (fixes #2113, thx presbrey)
1318   * Fix mod_cgi cgi.execute-x-only option in global block
1319   * mod_fastcgi: x-sendfile2 parse error debugging
1320   * Fix mod_proxy dead host detection if connect() fails
1321   * Fix fd leaks in mod_cgi (fds not closed on pipe/fork failures, found by Rodrigo, fixes #2158, #2159)
1322   * Fix segfault with broken rewrite/redirect patterns (fixes #2140, found by crypt)
1323   * Append to previous buffer in con read, fix DoS/OOM vulnerability (fixes #2147, found by liming, CVE-2010-0295)
1324   * Fix HUP detection in close-state if event-backend doesn't support FDEVENT_HUP (like select or poll on FreeBSD)
1326 - 1.4.25 - 2009-11-21
1327   * mod_magnet: fix pairs() for normal tables and strings (fixes #1307)
1328   * mod_magnet: add traceback for printing lua errors
1329   * mod_rewrite: fix compile error if compiled without pcre
1330   * disable warning "CLOSE-read" (fixes #2091)
1331   * mod_rrdtool: fix creating file if it doesn't exist (#1788)
1332   * reset tlsext_server_name in connection_reset - fixes random hostnames in the $HTTP["host"] conditional
1333   * export some SSL_CLIENT_* vars for client cert validation (fixes #1288, thx presbrey)
1334   * mod_fastcgi: fix mod_fastcgi packet parsing
1335   * mod_fastcgi: Don't reconnect after connect() succeeded (fixes #2096)
1336   * Fix configure.ac to allow autoreconf, also enables make V=0
1338 - 1.4.24 - 2009-10-25
1339   * Add T_CONFIG_INT for bigger integers from the config (needed for #1966)
1340   * Use unsigned int (and T_CONFIG_INT) for max_request_size
1341   * Use unsigned int for secdownload.timeout (fixes #1966)
1342   * Keep url/host values from connection to display information while keep-alive in mod_status (fixes #1202)
1343   * Add server.breakagelog, a "special" stderr (fixes #1863)
1344   * Fix config evaluation for debug.log-timeouts option (#1529)
1345   * Add "cgi.execute-x-only" to mod_cgi, requires +x for cgi scripts (fixes #2013)
1346   * Fix FD_SETSIZE comparision warnings
1347   * Add "lua-5.1" to searched pkg-config names for lua
1348   * Fix unused function webdav_lockdiscovery in mod_webdav
1349   * cmake: Fix crypt lib check
1350   * cmake: Add -export-dynamic to link flags, fixes build on FreeBSD
1351   * Set FD_CLOEXEC for bound sockets before pipe-logger forks (fixes #2026)
1352   * Reset ignored signals to SIG_DFL before exec() in fastcgi/scgi (fixes #2029)
1353   * Show "no uri specified -> 400" error only when "debug.log-request-header-on-error" is enabled (fixes #2030)
1354   * Fix hanging connection in mod_scgi (fixes #2024)
1355   * Allow digits in hostnames in more places (fixes #1148)
1356   * Use connection_reset instead of handle_request_done for cleanup callbacks
1357   * Change mod_expire to append Cache-Control instead of overwriting it (fixes #1997)
1358   * Allow all comparisons for $SERVER["socket"] - only bind for "=="
1359   * Remove strptime failed message (fixes #2031)
1360   * Fix issues found with clang analyzer
1361   * Try to fix server.tag issue with localized svnversion
1362   * Fix handling network-write return values (#2024)
1363   * Use disable-time in fastcgi for all disables after errors, default is 1sec (fixes #2040)
1364   * Remove adaptive spawning code from fastcgi (was disabled for a long time)
1365   * Allow mod_mysql_vhost to use stored procedures (fixes #2011, thx Ben Brown)
1366   * Fix ipv6 in mod_proxy (fixes #2043)
1367   * Print errors from include_shell to stderr
1368   * Set tm.tm_isdst = 0 before mktime() (fixes #2047)
1369   * Use linux-epoll by default if available (fixes #2021, thx Olaf van der Spek)
1370   * Print an error if you use too many captures in a regex pattern (fixes #2059)
1371   * Combine Cache-Control header value in mod_expire to existing HTTP header if header already added by other modules (fixes #2068)
1372   * Remember keep-alive-idle in separate variable (fixes #1988)
1373   * Fix header inclusion order, always include "config.h" before any system header
1374   * mod_webdav: Patch to skip login information for domain part of Destination field (fixes #1793)
1375   * mod_webdav: Delete old properties before updating new for MOVE (fixes #1317)
1376   * Read hostname from absolute uris in the request line (fixes #1937)
1377   * mod_fastcgi: don't disable backend if disable-time is 0 (fixes #1825)
1378   * mod_compress: match partial+full content-type (fixes #1552)
1379   * mod_fastcgi: fix is_local detection, respawn backends if bin-path is set (fixes #897)
1380   * Fix linger-on-close behaviour to avoid rare failure conditions (was r2636, fixes #657)
1381   * mod_fastcgi: restart local procs immediately after they terminated, fix local procs handling
1382   * Fix segfault on invalid config "duplicate else conditions" (fixes #2065)
1383   * mod_usertrack: Use T_CONFIG_INT for max-age, solves range problem (#1455)
1384   * mod_accesslog: configurable timestamp logging (fixes #1479)
1385   * always define _GNU_SOURCE
1386   * Add some iterators for mod_magnet (fixes #1307)
1387   * Fix close_timeout_ts trigger (should finally fix lingering close)
1388   * 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)
1389   * Add TLS servername indication (SNI) support (fixes #386, thx Peter Colberg <peter@colberg.org>)
1390   * Add SSL Client Certificate verification (#1288)
1391   * mod_fastcgi: Fix host->active_procs counter, return 503 if connect wasn't successful after 5 tries (fixes #1825)
1392   * mod_accesslog: escape special characters (fixes #1551, thx icy)
1393   * fix mod_webdav crash from #1793 (fixes #2084, thx hiroya)
1394   * Don't print ssl error if client didn't support TLS SNI
1395   * Fix linger close timeout handling, drop timeout to 5 seconds (fixes #2086)
1396   * Fix broken return values from int to enum in mod_fastcgi
1398 - 1.4.23 - 2009-06-19
1399   * Added some extra warning options in cmake and fix the resulting warnings (unused/static functions)
1400   * New lighttpd man page (moved it to section 8) (fixes #1875)
1401   * Create rrd file for empty rrdfile in mod_rrdtool (#1788)
1402   * Fix workaround for incorrect path info/scriptname if fastcgi prefix is "/" (fixes #729)
1403   * Finally removed spawn-fcgi
1404   * Allow xattr to overwrite mime type (fixes #1929)
1405   * Remove link from errormsg about fastcgi apps (fixes #1942)
1406   * Strip trailing dot from "Host:" header
1407   * Remove the optional port info from SERVER_NAME (thx Mr_Bond)
1408   * Fix mod_proxy RoundRobin (off by one problem if only one backend is up)
1409   * Rename configure.in to configure.ac, with small cleanups (fixes #1932)
1410   * Add proper SUID bit detection (fixes #416)
1411   * Check for regular file in mod_cgi, so we don't try to start directories
1412   * Include mmap.h from chunk.h to fix some problems with #define mmap mmap64 (fixes #1923)
1413   * Add support for pipe logging for server.errorlog (fixes #296)
1414   * Add revision number to package version for svn/git checkouts
1415   * Use server.tag for SERVER_SOFTWARE if configured (fixes #357)
1416   * Fix trailing zero char in REQUEST_URI after "strip-request-uri" in mod_fastcgi
1417   * mod_magnet: Add env["request.remote-ip"] (fixes #1740)
1418   * mod_magnet: Add env["request.path-info"]
1419   * Change name/version separator back to "/" (affects every place where the version is printed)
1420   * Fix bug with FastCGI request id overflow under high load; just use always id 1 as we don't use multiplexing. (thx jgray)
1421   * Add some dirlisting enhancements (fixes #1458)
1422   * Add option to enable TCP_DEFER_ACCEPT (fixes #1447)
1423   * Limit amount of bytes read for one read-event (fixes #1070)
1424   * Add evasive.silent option (fixes #1438)
1425   * Make mod_extforward headers configurable (fixes #1545)
1426   * Add '%_' pattern for complete hostname in mod_evhost (fixes #1737)
1427   * Add IPv6 support to mod_proxy (fixes #1537)
1428   * mod_ssi printenv: print cgi env, add environment vars to cgi env (fixes #1713)
1429   * Fix error message if no auth backend was set
1430   * Fix SERVER_NAME port stripping (fixes #1968)
1431   * Fix x-sendfile 2gb limiting (fixes #1970)
1432   * Fix mod_cgi environment keys mangling (fixes #1969)
1433   * Fix workaround for incorrect path info/scriptname if scgi prefix is "/" (fixes #729)
1434   * Fix max-age value in mod_expire for 'modification' (fixes #1978)
1435   * Fix evasive.silent option (#1438)
1436   * Fix mod-fastcgi counters
1437   * Modify fastcgi error message
1438   * Backup errno for later usage (reported by Guido Reina via mailinglist)
1439   * Improve FastCGI performance (fixes #1999)
1440   * Workaround broken operating systems: check for trailing '/' in filenames (fixes #1989)
1441   * Allow using pcre with cross-compiling (pcre-config got fixed; fixes #1986)
1442   * Add "lighty.req_env" table to mod_magnet for setting/getting environment values for cgi (fixes #1967, thx presbrey)
1443   * Fix segfault in mod_expire after failed config parsing (fixes #1992)
1444   * Add ssi.content-type option (default text/html, fixes #615)
1445   * Add support for "real" entropy from /dev/[u]random (fixes #1977)
1446   * Adding support for additional chars in LDAP usernames (fixes #1941)
1447   * Ignore multiple "If-None-Match" headers (only use first one, fixes #753)
1448   * Fix 100% cpu usage if time() < 0 (thx to gaspa and cate, fixes #1964)
1449   * Allow max-keep-alive-requests to depend on conditional (fixes #1881)
1450   * Make dependency on svnversion/git optional (for devel versionstamp, fixes #2009)
1452 - 1.4.22 - 2009-03-07
1453   * Fix wrong lua type for CACHE_MISS/CACHE_HIT in mod_cml (fixes #533)
1454   * Fix default vhost in mod_simple_vhost (fixes #1905)
1455   * Handle EINTR in mod_rrdtool (fixes #604)
1456   * Fix rrd error after graceful restart (fixes #419)
1457   * Fix EAGAIN handling for freebsd sendfile (fixes #1913, thx AnMaster for spotting the problem)
1458   * Fix segfault in mod_scgi (fixes #1911)
1459   * Treat EPIPE as connection-closed error in network_freebsd_sendfile.c (another fix from #1913)
1460   * Fix useless redirection of stderr in mod_rrdtool, as it gets redirected to /dev/null later. (fixes #1922)
1461   * Fix some problems with more strict compilers (#1923)
1462   * Fix segfault if siginfo_t* is NULL in sigaction handler (fixes #1926)
1464 - 1.4.21 - 2009-02-16
1466   * Fix base64 decoding in mod_auth (#1757, thx guido)
1467   * Fix mod_cgi segfault when bound to unix domain socket (#653)
1468   * Do not rely on ioctl FIONREAD (#673)
1469   * Now really fix mod auth ldap (#1066)
1470   * Fix leaving zombie process with include_shell (#1777)
1471   * Removed debian/, openwrt/ and cygwin/; they weren't kept up-to-date, and we decided to remove dist. specific stuff
1472   * Try to convert string options to shorts for numeric options in config file; allows to use env-vars for numeric options. (#1159, thx andrewb)
1473   * Do not cache default vhost in mod_simple_vhost (#709)
1474   * Trust pcre-config, do not check for pcre manually (#1769)
1475   * Fix fastcgi authorization in subdirectories with check-local=disabled; don't split pathinfo for authorizer. (#963)
1476   * Add possibility to disable methods in mod_compress (#1773)
1477   * Fix duplicate connection keep-alive/transfer-encoding headers (#960)
1478   * Fixed fix for round-robin in mod_proxy (forgot to increment the index) (#1715)
1479   * Fix fastcgi-authorizer handling; Status: 200 is now accepted as the doc requests
1480   * Compare address family in inet_ntop_cache
1481   * Revert CVE-2008-4359 (#1720) fix "encoding+simplifying urls for rewrite/redirect": too many regressions.
1482   * Use FD_CLOEXEC if possible (fixes #1821)
1483   * Optimized buffer usage in mod_proxy (fixes #1850)
1484   * Fix uninitialized value in time struct after strptime
1485   * Do not pass Proxy-Connection: header from client to backend http server in mod_proxy (#1877)
1486   * Fix wrong malloc sizes in mod_accesslog (probably nothing bad happened...) (fixes #1855, thx ycheng)
1487   * Some small buffer.c fixes (closes #1837)
1488   * Remove floating point math from server.c (fixes #1402)
1489   * Disable SSLv2 by default
1490   * Use/enforce sane max-connection values (fixes #1803)
1491   * Allow mod_compress to return 304 (Not Modified); compress ignores the static-file.etags option.(fixes #1884)
1492   * Add option to ignore the "Expect: 100-continue" header instead of returning 417 Expectation failed (closes #1017)
1493   * Use modified etags in mod_compress (fixes #1800)
1494   * Fix max-connection limit handling/100% cpu usage (fixes #1436)
1495   * Fix error handling in freebsd-sendfile (fixes #1813)
1496   * Silenced the annoying "request timed out" warning, enable with the "debug.log-timeouts" option (fixes #1529)
1497   * Allow tabs in header values (fixes #1822)
1498   * Added Language conditional (fixes #1119); patch by petar
1499   * Fix wrong format strings (#1900, thx stepancheg)
1501 - 1.4.20 - 2008-09-30
1503   * Fix mod_compress to compile with old gcc version (#1592)
1504   * Fix mod_extforward to compile with old gcc version (#1591)
1505   * Update documentation for #1587
1506   * 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)
1507   * Fix mod_magnet: enable "request.method" and "request.protocol" in lighty.env (#1308)
1508   * Fix segfault for appending matched parts if there was no regex matching (just give empty strings) (#1601)
1509   * Use data_response_init in mod_fastcgi x-sendfile handling for response.headers, fix a small "memleak" (#1628)
1510   * Don't send empty Server headers (#1620)
1511   * Fix conditional interpretation of core options
1512   * Enable escaping of % and $ in redirect/rewrite; only two cases changed their behaviour: "%%" => "%", "$$" => "$"
1513   * Fix accesslog port (should be port from the connection, not the "server.port") (#1618)
1514   * Fix mod_fastcgi prefix matching: match the prefix always against url, not the absolute filepath (regardless of check-local)
1515   * Overwrite Content-Type header in mod_dirlisting instead of inserting (#1614), patch by Henrik Holst
1516   * Handle EINTR in mod_cgi during write() (#1640)
1517   * Allow all http status codes by default; disable body only for 204,205 and 304; generate error pages for 4xx and 5xx (#1639)
1518   * Fix mod_magnet to set con->mode = p->id if it generates content, so returning 4xx/5xx doesn't append an error page
1519   * Remove lighttpd.spec* from source, fixing all problems with it ;-)
1520   * Do not rely on PATH_MAX (POSIX does not require it) (#580)
1521   * Disable logging to access.log if filename is an empty string
1522   * Implement a clean way to open /dev/null and use it to close stdin/out/err in the needed places (#624)
1523   * merge spawn-fcgi changes from trunk (from @2191)
1524   * let spawn-fcgi propagate exit code from spawned fcgi application
1525   * close connection after redirect in trigger_b4_dl (thx icy)
1526   * close connection in mod_magnet if returned status code
1527   * fix bug with IPv6 in mod_evasive (#1579)
1528   * fix scgi HTTP/1.* status parsing (#1638), found by met@uberstats.com
1529   * [tests] fixed system, use foreground daemons and waitpid
1530   * [tests] removed pidfile from test system
1531   * [tests] fixed tests needing php running (if not running on port 1026, search php in env[PHP] or /usr/bin/php-cgi)
1532   * fixed typo in mod_accesslog (#1699)
1533   * replaced buffer_{append,copy}_string with the _len variant where possible (#1732) (thx crypt)
1534   * case insensitive match for secdownload md5 token (#1710)
1535   * Handle only HEAD, GET and POST in mod_dirlisting (same as in staticfile) (#1687)
1536   * fixed mod_secdownload problem with unsigned time_t (#1688)
1537   * handle EAGAIN and EINTR for freebsd sendfile (#1675)
1538   * Use filedescriptor 0 for mod_scgi spawn socket, redirect STDERR to /dev/null (#1716)
1539   * fixed round-robin balancing in mod_proxy (#1715)
1540   * fixed EINTR handling for waitpid in mod_fastcgi
1541   * mod_{fast,s}cgi: overwrite environment variables (#1722)
1542   * inserted many con->mode checks; they should prevent two modules to handle the same request if they shouldn't (#631)
1543   * fixed url encoding to encode more characters (#266)
1544   * allow digits in [s]cgi env vars (#1712)
1545   * fixed dropping last character of evhost pattern (#161)
1546   * print helpful error message on conditionals in global block (#1550)
1547   * decode url before matching in mod_rewrite (#1720) -- (reverted for 1.4.21)
1548   * fixed conditional patching of ldap filter (#1564)
1549   * Match headers case insensitive in response (removing of X-{Sendfile,LIGHTTPD-*}, catching Date/Server) [2281]
1550   * fixed bug with case-insensitive filenames in mod_userdir (#1589), spotted by "anders1" (CVE-2008-4360)
1551   * fixed format string bugs in mod_accesslog for SYSLOG
1552   * replaced fprintf with log_error_write in fastcgi debug
1553   * fixed mem leak in ssi expression parser (#1753), thx Take5k
1554   * hide some ssl errors per default, enable them with debug.log-ssl-noise (#397)
1555   * do not send content-encoding for 304 (#1754), thx yzlai
1556   * fix segfault for stat_cache(fam) calls with relative path (without '/', can be triggered by x-sendfile) (#1750)
1557   * fix splitting of auth-ldap filter
1558   * workaround ldap connection leak if a ldap connection failed (restarting ldap)
1559   * fix auth.backend.ldap.bind-dn/pw problems (only read from global context for temporary ldap reconnects, thx ruskie)
1560   * fix memleak in request header parsing (#1774, thx qhy) (CVE-2008-4298)
1561   * fix mod_rewrite memleak/endless loop detection (#1775, thx phy - again!)
1562   * use decoded url for matching in mod_redirect (#1720) (CVE-2008-4359) -- (reverted for 1.4.21)
1564 - 1.4.19 - 2008-03-10
1566   * added support for If-Range: <date> (#1346)
1567   * added support for matching $HTTP["scheme"] in configs
1568   * fixed initgroups() called after chroot (#1384)
1569   * fixed case-sensitive check for Auth-Method (#1456)
1570   * execute fcgi app without /bin/sh if used as argument to spawn-fcgi (#1428)
1571   * fixed a bug that made /-prefixed extensions being handled also when
1572     matching the end of the uri in fcgi,scgi and proxy modules (#1489)
1573   * print error if X-LIGHTTPD-send-file cannot be done; reset header
1574     Content-Length for send-file. Patches by Stefan Buehler
1575   * prevent crash in certain php-fcgi configurations (#841)
1576   * add IdleServers and Scoreboard directives in ?auto mode for mod_status (#1507)
1577   * open log immediately after daemonizing, fixes SIGPIPEs on startup  (#165)
1578   * HTTPS env var should be "on" when using mod_extforward and the X-Forwarded-Proto header is set. (#1499)
1579   * generate ETag and Last-Modified headers for mod_ssi based on newest modified include (#1491)
1580   * support letterhomes in mod_userdir (#1473)
1581   * support chained proxies in mod_extforward (#1528)
1582   * fixed bogus "cgi died ?" if we kill the CGI process on shutdown
1583   * fixed ECONNRESET handling in network-openssl
1584   * fixed handling of EAGAIN in network-linux-sendfile (#657)
1585   * reset conditional cache (#1164)
1586   * create directories in mod_compress (was broken with alias/userdir) (#1027)
1587   * fixed out of range access in fd array (#1562, #372) (CVE-2008-0983)
1588   * mod_compress should check if the request is already handled, e.g. by fastcgi (#1565)
1589   * remove broken workaround for buggy Opera version with ssl/chunked encoding (#285)
1590   * generate etag/last-modified header for on-the-fly-compressed files (#1171)
1591   * req-method OPTIONS: do not insert default response if request was denied, do not deny OPTIONS by default (#1324)
1592   * fixed memory leak on windows (#1347)
1593   * fixed building outside of the src dir (#1349)
1594   * fixed including of stdint.h/inttypes.h in etag.c (#1413)
1595   * do not add Accept-Ranges header if range-request is disabled (#1449)
1596   * log the ip of failed auth tries in error.log (enhancement #1544)
1597   * fixed RoundRobin in mod_proxy (#516)
1598   * check for symlinks after successful pathinfo matching (#1574)
1599   * fixed mod-proxy.t to run with a builddir outside of the src dir
1600   * do not suppress content on "307 Temporary Redirect" (#1412)
1601   * fixed Content-Length header if response body gets removed in connections.c (#1412, part 2)
1602   * do not generate a "Content-Length: 0" header for HEAD requests, added test too
1603   * remove compress cache file if compression or write failed (#1150)
1604   * fixed body handling of status 300 requests 
1605   * spawn-fcgi: only try to connect to unix socket (not tcp) before spawning (#1575)
1606   * fix sending source of cgi script instead of 500 error if fork fails (CVE-2008-1111)
1607   * fix min-procs handling in mod_scgi.c, just set to max-procs (patch from #623)
1608   * fix sending "408 - Timeout" instead of "410 - Gone" for timedout urls in mod_secdownload (#1440)
1609   * workaround #1587: require userdir.path to be set to enable mod_userdir (empty string allowed) (CVE-2008-1270)
1610   * make configure checks for --with-pcre, --with-zlib and --with-bzip2 failing if the headers aren't found
1611   * fixed handling of waitpid() == EINTR mod_ssi on solaris 
1613 - 1.4.18 - 2007-09-09
1615   * fixed compile error on IRIX 6.5.x on prctl() (#1333)
1616   * fixed forwarding a SIGINT and SIGHUP when using max-workers (#902)
1617   * fixed FastCGI header overrun in mod_fastcgi (reported by mattias@secweb.se)
1618   * fixed hanging redirects with keep-alive due to missing
1619     "Content-Length: 0" headers
1620   * fixed crashing when using undefined environment variables in the config
1621   * fixed compilation of mod_mysql_vhost on irix (#1341)
1623 - 1.4.17 - 2007-08-29
1625   * added dir-listing.set-footer in mod_dirlisting (#1277)
1626   * added sending UID and PID for SIGTERM and SIGINT to the logs
1627   * fixed hardcoded font-sizes in mod_dirlisting (#1267)
1628   * fixed different ETag length on 32/64 platforms (#1279)
1629   * fixed compression of files < 128 bytes by disabling compression (#1241)
1630   * fixed mysql server reconnects (#518)
1631   * fixed disabled keep-alive for dynamic content with HTTP/1.0 (#1166)
1632   * fixed crash on mixed EOL sequences in mod_cgi
1633   * fixed key compare (#1287)
1634   * fixed invalid char in header values (#1286)
1635   * fixed invalid "304 Not Modified" on broken timestamps
1636   * fixed endless loop on shrinked files with sendfile() on BSD (#1289)
1637   * fixed counter overrun in ?auto in mod_status (#909)
1638   * fixed too aggresive caching of nested conditionals (#41)
1639   * fixed possible overflow in unix-socket path checks on BSD (#713)
1640   * fixed extra Content-Length header on 1xx, 204 and 304 (#1002)
1641   * fixed handling of duplicate If-Modified-Since to return 304 
1642   * fixed extracting status code from NPH scripts (#1125)
1643   * fixed prctl() usage (#1310)
1644   * removed config-check if passwd files exist (#1188)
1645   * fixed crash when etags are disabled but the client sends one (#1322)
1646   * fixed crash when freeing the config in mod_alias
1647   * fixed server.error-handler-404 breakage from 1.4.16 (#1270)
1648   * fixed entering 404-handler from dynamic content (#948)
1649   * added more debug infos for FAM based stat-cache
1650   * use more LSB like paths in the sample config (#1242)
1652 - 1.4.16 - 2007-07-25
1654   * added static-file.etags, etag.use-inode, etag.use-mtime, etag.use-size
1655     to customize the generation of ETags for static files. (#1209) 
1656     (patch by <Yusufg@gmail.com>)
1657   * fixed typecast of NULL on execl() (#1235)
1658     (patch by F. Denis)
1659   * fixed circumventing url.access-deny by trailing slash (#1230)
1660   * fixed crash on duplicate headers with trailing WS (#1232)
1661   * fixed accepting more connections then requested (#1216)
1662   * fixed mem-leak in mod_auth (reported by Stefan Esser)
1663   * fixed crash with md5-sess and cnonce not set in mod_auth (reported by Stefan Esser)
1664   * fixed missing check for base64 encoded string in mod_auth and Basic auth
1665     (reported by Stefan Esser)
1666   * fixed possible crash in Auth-Digest header parser on trailing WS in 
1667     mod_auth (reported by Stefan Esser) 
1668   * fixed check on stale errno values, which broke handling of broken fastcgi
1669     applications. (#1245)
1670   * fixed crash on 32bit archs when debug-msgs are printed in mod_scgi, mod_fastcgi 
1671     and mod_webdav (#1263)
1673 - 1.4.15 - 2007-04-13
1675   * fixed broken Set-Cookie headers
1677 - 1.4.14 - 2007-04-13
1679   * fix crash if gethostbyaddr() failed on redirect [1718]
1680   * properly handle 206 responses generated by *cgi scripts. (#755) [1716]
1681   * added HTTPS=on to the environment of cgi scripts (#861) [1684]
1682   * fix handling of 303 (#1045) [1678]
1683   * made the configure check for lua more portable [1677]
1684   * added mod_extforward module [1665]
1685   * references to the fam stat cache engine should be conditional (#1039) [1664]
1686   * fix http 500 errors (colin.stephen/at/o2.com) #1041 [1663]
1687   * prevent wrong pidfile unlinking on graceful restart (Chris Webb) [1656]
1688   * ignore empty packets from STDERR stream. #998
1689   * fix a crash for files with an mtime of 0 reported by cubiq on irc [1519]
1690     CVE-2007-1870
1691   * allow empty passwords with ldap (Jörg Sonnenberger) [1516]
1692   * mod_scgi.c segfault fix #964 [1501]
1693   * Added round-robin support to mod_fastcgi [1500]
1694   * Handle DragonFlyBSD the same way as Freebsd (Jörg Sonnenberger) [1492,1676]
1695   * added now and weeks support to mod_expire. #943
1696   * fix cpu hog in certain requests [1473] CVE-2007-1869
1697   * fix for handling hostnames with trailing dot [1406]
1698   * fixed header-injection via server.tag (#1106)
1699   * disabled caching of files without a content-type to solve the
1700     aggressive caching of FF
1701   * remove trailing white-spaces from HTTP-requests before parsing (#1098)
1702   * fixed accesslog.use-syslog in a conditional and the caching of the
1703     accesslog for files (fixes #1064)
1704   * fixed various crashes at startup on broken accesslog.format strings (#1000)
1705   * fixed handling of %% in accesslog.format
1706   * fixed conditional dir-listing.exclude (#930)
1707   * reduced default PATH_MAX to 255 (#826)
1708   * ECONNABORTED is not known on cygwin (#863)
1709   * fixed crash on url.redirect and url.rewrite if %0 is used in a global context
1710     (#800)
1711   * fixed possible crash in debug-message in mod_extforward
1712   * fixed compilation of mod_extforward on glibc < 2.3.4
1713   * fixed include of empty in the configfiles (#1076)
1714   * send SIGUSR1 to fastcgi children before SIGTERM. libfcgi wants SIGUSR1. (#737)
1715   * fixed missing AUTH_TYPE entry in the fastcgi environment. (#889)
1716   * fixed compilation in network_writev.c on MacOS X 10.3.9 (#903)
1717   * added kill-signal as another setting for fastcgi backends. See the wiki for more.
1719 - 1.4.13 - 2006-10-09
1721   * added initgroups in spawn-fcgi (#871)
1722   * added apr1 support htpasswd in mod-auth (#870)
1723   * added lighty.stat() to mod_magnet
1724   * fixed segfault in splitted CRLF CRLF sequences
1725     (introduced in 1.4.12) (#876)
1726   * fixed compilation of LOCK support in mod-webdav
1727   * fixed fragments in request-URLs (#869)
1728   * fixed pkg-config check for lua5.1 on debian
1729   * fixed Content-Length = 0 on HEAD requests without
1730     a known Content-Length (#119)
1731   * fixed mkdir() forcing 0700 (#884)
1732   * fixed writev() on FreeBSD 4.x and older (#875)
1733   * removed warning about a 404-error-handler
1734     returned 404
1735   * backported and fixed the buildsystem changes for
1736     webdav locks
1737   * fixed plugin loading so we can finally load lua
1738     extensions in mod_magnet scripts
1739   * fixed large uploads if xattr is enabled
1741 - 1.4.12 - 2006-09-23
1743   * added experimental LOCK support for webdav
1744   * added Content-Range support for PUT in webdav
1745   * added support for += on empty arrays in config-files
1746   * added ssl.cipher-list and ssl.use-sslv2
1747   * added $HTTP["querystring"] conditional
1748   * added mod_magnet as long-term replacement for mod_cml
1749   * added work-around for a Opera Bug with SSL + Chunked-Encoding
1750   * changed --print-config to print to stdout instead of stderr
1751   * changed no longer use 0600 for new files with webdav. umask is
1752     honored. Make sure you have set a proper umask.
1753   * fixed upload hangs with SSL
1754   * fixed connection drops with SSL (aka bad retry)
1755   * fixed path traversal with \ on cygwin
1756   * fixed mem-leak in mod_flv_streaming
1757   * fixed required trailing newline in configfiles (#142)
1758   * fixed quoting the autoconf files (#466)
1759   * fixed empty Host: + $HTTP["host"] handling (#458)
1760   * fixed handling of If-Modified-Since if ETag is not set
1761   * fixed default-shell if SHELL is not set (#441)
1762   * fixed appending and assigning of env.* vars
1763   * fixed empty FCGI_STDERR packets
1764   * fixed conditional server.allow-http-11
1765   * fixed handling of follow-symlink + lstat()
1766   * fixed SIGHUP handling if max-workers is used
1767   * fixed "Software caused connection abort" messages on FreeBSD
1769 - 1.4.11 - 2006-03-09
1771   * added ability to specify which ip address spawn-fci listens on
1772     (agkr/at/pobox.com)
1773   * added mod_flv_streaming to streaming Flash Movies efficiently
1774   * fixed handling of error codes returned by mod_dav_svn behing a
1775     mod_proxy
1776   * fixed error-messages in mod_auth and mod_fastcgi
1777   * fixed re-enabling overloaded local fastcgi backends
1778   * fixed handling of deleted files in linux-sendfile
1779   * fixed compilation on BSD and MacOSX
1780   * fixed $SERVER["socket"] on a already bound socket
1781   * fixed local source retrieval on windows
1782     (secunia)
1783   * fixed hanging cgi if remote side is dieing while reading
1784     from the pipe (sandy/at/meebo.com)
1786 - 1.4.10 - 2006-02-08
1788   * added docs for mod_dirlisting
1789   * added fastcgi.map-extensions to mod_fastcgi
1790   * fixed load balancing for mod_fastcgi
1791   * fixed extra newline for syslog() in mod_accesslog
1792   * fixed user-track cookie for IE in mod_usertrack
1793   * fixed crash in digest handling in mod_auth
1794   * fixed handling of 301 response-bodies from a mod_proxy backend
1795   * fixed loading of base modules if server.modules is not set
1796   * fixed broken cgi if mod_scgi is loaded
1798 - 1.4.9 - 2006-01-14
1800   * added server.core-files option (sandy <sandy/at/meebo.com>)
1801   * added docs for mod_status
1802   * added mod_evasive to limit the number of connections by IP (<w1zzard/at/techpowerup.com>)
1803   * added the power-magnet to mod_cml
1804   * added internal statistics to mod_fastcgi
1805   * added server.statistics-url to get internal statistics from mod_status
1806   * added support for conditional range-requests through If-Range
1807   * added static building via scons
1808   * fixed 100% cpu loops in mod_cgi ("sandy" <sjen/at/cs.stanford.edu>)
1809   * fixed handling for secure-download.timeout (jamis/at/37signals.com)
1810   * fixed IE bug in content-charset in the output of mod_dirlisting (sniper/at/php.net)
1811   * fixed typos and language in the docs (ryan-2005/at/ryandesign.com)
1812   * fixed assertion in mod_cgi on HEAD request is Content-Length (<sandy/at/meebo.com>)
1813   * fixed handling if equal but duplicate If-Modified-Since request headers
1814   * fixed endless loops in mod_fastcgi if backend is dead
1815   * fixed Depth: 1 handling in PROPFIND requests on empty dirs
1816   * fixed encoding of UTF8 encoded dirlistings (Jani Taskinen <sniper/at/iki.fi>)
1817   * fixed initial bind to a unix-domain socket through server.bind
1818   * fixed handling of lowercase filesystems
1819   * fixed duplicate request headers cause by mod_setenv
1821 - 1.4.8 - 2005-11-23
1823   * added auto-reconnect to ldap-server in mod_auth
1824     (joerg/at/netbsd.org)
1825   * changed auth.ldap-cafile to be optional
1826     (joerg/at/netbsd.org)
1827   * added strip_request_uri in mod_fastcgi
1828   * added more X-* headers to mod_proxy
1829     (Ben Grimm <bengrimm/at/gmail.com>)
1830   * added 'debug' to simple-vhost to suppress the
1831     (mod_simple_vhost.c.157) No such file or directory /servers/ww.lighttpd.net/pages/
1832     messages by default
1833   * added support to let the server listen on UNIX-socket
1834   * changed default stat-cache-engine to 'simple'
1835   * removed debian/ dir from source package on request by packager
1836   * fixed max-age timestamps in mod_expire
1837   * fixed encoding the filenames in PROPFIND in mod_webdav
1838   * fixed range request handling in network_writev
1839   * fixed retry on connect error in mod_fastcgi
1840     (Robert G. Jakabosky <bobby/at/alphatrade.com>)
1841   * fixed possible crash in mod_webdav if sqlite3 support
1842     is available but not use
1843   * fixed fdvent-handler init if server.max-worker was used
1844     (Siddharth Vijayakrishnan <mail/at/bluefireworks.net>)
1845   * fixed missing cleanup in mysql_vhost
1846   * fixed assert() in "connections.c:962:
1847       connection_handle_read_state: Assertion 'c->mem->used' failed."
1848   * fixed 64bit issue in md5
1849   * fixed crash in mod_status
1850   * fixed duplicate headers in mod_proxy
1851   * fixed Content-Length in HEAD request in mod_proxy
1852   * fixed unsigned/signed comparisions
1853   * fixed streaming in mod_cgi
1854   * fixed possible overflow in password-salt handling
1855     (reported on slashdot by james-web/at/and.org)
1856   * fixed server-traffic-limit if connection limit is not set
1858 - 1.4.7 - 2005-11-02
1860   * added FD_CLOEXEC to fds which are kept open for a longer time
1861   * added smaller, moving mmaped windows to network_writev
1862   * added madvise() to instruct the kernel the do proper read-ahead in network_writev
1863   * added support for %I in mod_accesslog
1864   * added better compat to Apache for ?auto in mod_status
1865   * added support for userdirs without a entry in /etc/passwd in mod_userdir
1866     (rob/at/inversepath.com)
1867   * added startup-time selectable network-backend
1868   * added location of upload-files to config as array
1869   * added webdav.log-xml for logging xml-content in mod_webdav
1870   * added Cache-Control: max-age to mod_expire
1871   * workaround missing client-bug by assuming we received a close-notify on
1872     non-keep-alive requests in SSL request
1873   * disabled kerberos5 support by default to fix compilation on RHEL
1874   * fixed order of library checks to fix compilation on Solaris 9
1875   * fixed open file-descriptors on read-error
1876   * fixed crash if /var/tmp is not writable
1878 - 1.4.6 - 2005-10-09
1880   * fixed compilation on MacOS X and cygwin
1881   * fixed compressed output if caching was disabled (seen in IE and Opera)
1882   * fixed range-request option
1883   * fixed mysql-vhost module (was broken in 1.4.5)
1884   * fixed false positive in the detection of case-insensitive FS
1886 - 1.4.5 - 2005-10-02
1888   * added all DeltaV methods as known methods
1889   * added buffer-to-disk of request content
1890   * added warning for unused variables in conditionals
1891   * added global index-generators to mod_indexfile
1892   * fixed caching for remote-ip conditionals with keep-alive
1893   * fixed redirects with content
1894   * fixed infinite loop in exec-cmd in mod_ssi
1895   * fixed segfault in config handling for mod_mysql_vhost
1896   * fixed segfault on FIFOs/Sockets
1897   * fixed possible crash on uninit memory if If-Modified-Since was too long
1898   * fixed accounting of mem-chunks
1899   * fixed starving of connections on high load
1900   * fixed crc errors in mod_compress on 64bit platforms
1901   * fixed handling of overlapping fastcgi packets (bug added in 1.4.4)
1902   * fixed logic of conditionals if a header was not set
1903   * fixed a segfault in mod_rewrite if %1 references were used
1904   * fixed handling of empty request URIs in HTTP requests
1906 - 1.4.4 - 2005-09-16
1907   * added support for %V in mod_accesslog
1908   * added a option for a FastCGI responser to send static files
1909   * added md5 and blowfish hashes to htpasswd
1910   * fixed METHOD in mod_accesslog of WebDAV methods
1911   * fixed check for permission before files in sent
1912   * fixed mod-proxy and content for non-POST requests
1913   * fixed compilation of mod_cml on MacOS X
1914   * fixed SSL errmsg after accept()
1915   * fixed memleak in stat-cache
1916   * fixed aborted connections if file was moved while in transfer
1917   * fixed mem-usage for large FastCGI transfers
1919 - 1.4.3 - 2005-09-01
1921   * added gracefull shutdown
1922   * added server.max-connections
1923   * fixed compilation on all BSD platforms
1924   * fixed init of kqueue and /dev/poll after daemonize
1925   * fixed segfault if select() is event-handler and more than FD_SETSIZE
1926     fds are opened
1927   * fixed compilation of mod_cml
1928   * fixed bin-copy-env in mod_fastcgi
1930 - 1.4.2 - 2005-08-29
1932   * fixed mimetype detection on uppercase extensions
1933   * fixed memleak in stat-cache
1934   * fixed infinite loop in mod_cgi
1935   * fixed alignment crashes on sparc64 and alpha64
1936   * fixed test system for gentoo ebuild
1937   * fixed infinite loop in SSL
1938   * fixed range request for files > 2Gb
1940 - 1.4.1 - 2005-08-22
1942   * added a complete Class 1 complient mod_webdav
1943   * fixed ssl support (especially on OpenBSD)
1944   * fixed response header in body problem in mod_cgi
1945   * fixed numbers before body problem
1946   * fixed compilation on Solaris and FreeBSD
1947   * fixed conditional options in mod_dirlisting
1948   * fixed segfault in mod_dirlisting for NFS directories
1949   * fixed check for docroot in change-root environments
1951 - 1.4.0 - 2005-08-17
1953   * added nested conditionals
1954   * added remote-ip to $HTTP
1955   * added support for stat-cache via FAM
1956   * added a read-only WebDAV module
1957   * fixed cleanup in mod_proxy and mod_fastcgi
1958   * fixed handling of filenames on case-insensitive filesystems
1960 - 1.3.16 - 2005-07-31
1962   * added Date: headers to dynamic HTTP/1.0 requests
1963   * added support for OPTION * HTTP/1.1
1964   * added support for accesslog to syslog
1965   * added support for PATH_INFO guessing if check-local is disabled in
1966       mod_fastcgi
1967   * added switch to disable range-requests
1968   * added valid-user option for mod_auth (tigger at gentoo.org)
1969   * added JavaScript based sorting to mod_status (erik)
1970   * added selective TCP_CORK (Christian von Roques)
1971   * break up endless loops with Status: 500
1972   * fixed endless loops in mod_rewrite
1973   * mapped url.rewrite and url.rewrite-final to uri.rewrite-once
1974   * fixed compilation for mod_trigger_b4_dl
1975   * fixed 'can't reach host' in mod_proxy
1976   * error-handler-404 defaults to Status: 200 and static files work now
1978 - 1.3.15 - 2005-07-15
1980   * added mod_cml
1981   * added mod_trigger_b4_dl
1982   * added encoding to mod_dirlisting
1983   * added ?auto to mod_status
1984   * relaxed handling of characters in URIs even more
1985   * fixed detection of sendfile() on Linux 2.4.x
1986   * fixed comparision of buffers for short strings
1987   * server.errorfile-prefix is now conditional
1988   * fixed mod_rrdtool to close STDERR
1990 - 1.3.14 - 2005-06-15
1992   * added SCGI support via mod_scgi
1993   * added hash-based and round-robin load balancing to mod_proxy
1994   * fixed range requests larger than 2Gb
1995   * fixed compilation on Solaris
1996   * fixed endless loops in mod_fastcgi, mod_cgi and mod_proxy
1997   * fixed handling of URIs for '+' and characters > 127
1999 - 1.3.13 - 2005-03-06
2001   * added customizable directory listings
2002   * fixed compile error on all BSD unixes
2003   * fixed PATHINFO handling for FastCGI
2004   * fixed handling of remote-close on FreeBSD and OpenSSL
2006 - 1.3.12 - 2005-03-02
2008   * added ssl.ca-file
2009   * added support for \n\n as terminator
2010   * rewrote test-framework and added more tests
2011   * fixed cgi.assign with empty handler
2012   * fixed segfault in debug-code
2013   * fixed mod_expire if modification-timestamps are used
2014   * fixed segfault on duplication Host-headers
2015   * fixed endless loop in mod_fastcgi
2016   * fixed handling of dead fastcgi-processes
2018 - 1.3.11 - 2005-02-20
2020   * added REMOTE_PORT and SERVER_ADDR to CGI-env
2021   * relaxed handling of newlines before keep-alive requests
2022   * relaxed uri-parser again
2023   * fixed PHP_SELF for php
2024   * fixed compilation on MacOS X
2025   * fixed handling of EPIPE and ECONNRESET
2026   * fixed crash in mod_auth if config-options are missing
2027   * fixed handling of missing trailing / in mod_userdir
2028   * fixed conditional secdownload.secret
2029   * fixed REPORT ME error due to failed reconnects in mod_fastcgi
2030   * fixed cmdline handling in mod_fastcgi
2032 - 1.3.10 - 2005-02-06
2034   * added support for full commandline in spawn-fcgi
2035   * fixed missing check for IP-address in mod_fastcgi
2036   * fixed compile error with openssl in mod_fastcgi
2037   * removed a debug-message from network-functions
2039 - 1.3.9 - 2005-02-06
2041   * added a stricter URI parser
2042   * added a check to the CGI spawner if the cgi-handler exists
2043   * added documentation for SSL and mod_status
2044   * added handling of startup environment to FastCGI
2045   * improved performance in FastCGI in buildind the FastCGI header
2046   * fixed min-procs and max-procs in FastCGI on PowerPC
2047   * fixed crash in setenv.add-response-header
2048   * fixed handling of nph-scripts in CGI
2049   * fixed accidently sending out physical file in CGI on error
2050   * fixed cygwin support
2051   * fixed handling of missing files
2052   * fixed HEAD requests for dynamic requests
2054 - 1.3.8 - 2005-01-30
2056   * added traffic shaping by remote host and virtual server
2057   * added auto-spawning of FastCGI process on demand
2058   * added virtual host based on MySQL
2059   * added mod_setenv to add envirnoment and http headers on the fly
2060   * added support for syslog in mod_accesslog
2061   * improved output of mod_status
2062   * improved debug output in request handling
2063   * fixed build problems on netbsd 1.4.x and 1.5.x
2064   * fixed status.url configuration
2065   * fixed handling of != and !~ in configutation
2066   * fixed special cases in keep-alive handling
2067   * fixed timeout handling in handling POST requests
2068   * fixed mode AUTHORIZER in FastCGI
2069   * fixed handling if internal redirects if no Host: is supplied
2070   * fixed mod_alias + pathinfo
2071   * fixed directory indexes and permissions
2072   * enabled sending errorlog to syslog again
2074 - 1.3.7 - 2004-12-11
2076   * added retries for a fastcgi connect if a php-childs
2077     dies at startup
2078   * update the debian directory
2079   * added setgroups() to drop all group-privs
2080   * added native port to windows via mingw32
2081   * added server.tag = '...'
2082   * added support for ${...} in mod_ssi
2083   * ported all plugins to conditional support
2084   * fixed multipart handling in cgi
2085   * fixed kqueue event-handler
2086   * fixed wrap-around in mod_status
2087   * fixed crash with SSL + FastCGI
2088   * fixed detection of SSL headers
2089   * fixed handling of dangling SSL_shutdown
2090   * fixed detection of keep-alive of Firefox
2092 - 1.3.6 - 2004-11-03
2094   * added spawn-fcgi to the distribution
2095   * added support in fastcgi module to spawn fastcgi
2096     processes itself
2097   * fixed logfile cycling if external logging is used
2098   * fixed connection handling in fastcgi if no chunk
2099     encoding is used
2100   * fixed internal redirects on directories if a query
2101     string is supplied
2102   * fixed cgi-module for POST request above 4k
2103   * fixed mod_alias and follow-symlink
2105 - 1.3.5 - 2004-10-31
2107   * added mod_alias
2108   * added mod_userdir
2109   * added the exec command to the SSI handler
2110   * added a switch to disable follow-symlinks
2111   * added a switch to disable IPv6 at compile-time
2112   * fixed compilation on FreeBSD and NetBSD 1.3.x
2113   * fixed segfault in pipelining
2114   * fixed a segfault in writev() handler if LFS is used
2116 - 1.3.4 - 2004-10-24
2118   * added limiter for open files
2119   * added logging of user supplied data to accesslogs
2120   * added build target for OpenWRT
2121   * added plain backend support for auth-digest
2122   * fixed handling the external accesslog processes
2123   * fixed SERVER_NAME in CGI and FastCGI
2125 - 1.3.3 - 2004-10-16
2127   * added support for NL terminators in CGI-scripts
2128   * added support for conditionals in mod_auth,
2129     mod_simple_vhost and mod_evhost
2130   * added a error-handler for 404 codes
2131   * fixed request counter in the rrdtool module
2132   * fixed log-file cycling
2133   * fixed seg-fault
2135 - 1.3.2 - 2004-09-30
2137   * fixed file-cache
2139 - 1.3.1 - 2004-09-30
2141   * fixed file-cache
2142   * fixed parsing of IPv6 adresses
2143   * fixed cgi for cygwin
2144   * fixed test-suite for FreeBSD and IRIX
2145   * fixed handling of shrinked files
2146   * fixed handling of REQUEST_URI after rewrite
2148 - 1.3.0 - 2004-09-17
2150   * added build for MacOS X and Cygwin
2151   * added handling of more than one socket
2152   * added config-conditions for User-Agent and Referer
2153   * added final rewrite-rules
2155 - 1.2.8 - 2004-09-11
2157   * added a cache for mimetypes
2158   * added X-Forwarded-For for mod_proxy
2159   * fixed handling of comments in If-Modified-Since
2160   * fixed error handling in FastCGI code
2161   * fixed expire plugin for second Expire header
2163 - 1.2.7 - 2004-09-04
2165   * added mod_rrdtool for internal statistics
2166   * added xattr support
2167   * added user-controlable timeouts
2168   * improved documentation for many plugins
2169   * fixed POST requests for mod_proxy
2170   * fixed rare hang with CGI
2171   * fixed seg-fault if no configfile is specified
2172   * fixed rare problem in FastCGI header generation
2174 - 1.2.6 - 2004-08-26
2176   * added apache-like accesslog definition
2177   * enabled timestamp cache again
2178   * improved performance in the string compare functions
2179   * fixed double-free in fastcgi handler
2180   * fixed error-handling in cgi handler
2182 - 1.2.5 - 2004-08-10
2184   * added skeleton for solaris 10 port-API
2185   * added compression support even if no cachedir is set
2186   * added conditional configoptions
2187   * fixed compilation on OpenBSD
2188   * fixed kqueue support
2189   * fixed pipelining bug
2190   * fixed parallel build (triggered by Gentoo)
2191   * updated debian postinst
2193 - 1.2.4 - 2004-07-31
2195   * added kqueue support
2196   * added server-side includes (mod_ssi)
2197   * fixed large post uploads in fastcgi
2198   * fixed rt-signals handling of delayed events
2200 - 1.2.3 - 2004-07-10
2202   * added a proxy module for Java and friends
2203   * added support to pass accesslog through an external programm
2204   * added mimetypes for text/css and text/javascript
2205   * fixed index-files for FastCGI if webserver is in chroot
2206   * fixed error messages of CGI process fails to exec()
2207   * fixed detection of pcre on IRIX and FreeBSD
2208   * fixed timestamps in Last-Modified checks
2209   * fixed 64bit builds
2210   * fixed mmap-caching of large files
2211   * relaxed the HTTP parser on empty headerfields
2213 - 1.2.2 - 2004-06-15
2215   * added support for unix domain sockets in FastCGI
2216   * fixed mmap caching
2217   * fixed compile-time check for linux sendfile()
2218   * fixed check for pcre.h on Fedora Core 2
2220 - 1.2.1 - 2004-05-30
2222   * added experimental support for AIX send_file()
2223   * added an mmap cache to the filehandle cache
2224   * enabled FreeBSD sendfile support again
2225   * added support for calling CGI binaries directly
2226   * fixed pipelining for POST requests
2227   * fixed some seg-faults if no configfile is used
2229 - 1.2.0 - 2004-05-17
2231   * added conforming Expect: handling
2232   * added a module for secure and fast downloading
2233   * rewrote the event handling interface
2234   * fixed array handling which might lead to 'missing header'
2235   * fixed pipelining support
2236   * fixed build of the localizer extension
2237   * fixed cgi handling for headers which are flushed to often
2238   * fixed compilation on Solaris 2.5
2240 - 1.1.9 - 2004-04-29
2242   * added AUTHORIZER mode to the FastCGI module
2243   * added 'check-local' option to disable local stat() in the FastCGI module
2244   * added prefix-notation for FastCGI module
2245   * added 'mod_usertrack'
2246   * improved CGI/FastCGI spec conformance
2247   * more code cleanup
2248   * fixed HTTP/1.1 chunk headers
2249   * fixed POST handling
2250   * fixed SSL network handler
2251   * fixed writev() network handler
2253 - 1.1.8 - 2004-04-16
2255   * code cleanup
2256   * limiting the size of the request-body and the request-header
2257   * minor speed improvements
2258   * tightend the HTTP-Parser again
2260 - 1.1.7 - 2004-04-12
2262   * added REMOTE_USER to the Server->FastCGI parameters
2263   * added bzip2 compression
2264   * improved the error-messages from the new configfile parser
2265   * fixed accesslog writing for errornous requests
2266   * fixed LFS (64bit filesizes) handling
2267   * fixed Content-Length for HEAD requests
2268   * fixed some memory leaks in the configfile parser
2270 - 1.1.6 - 2004-04-10
2272   * tightend the HTTP-Parser
2273   * rewrote the configfile parser (based on lemon)
2274   * fixed openssl support
2275   * fixed mmap+write support
2276   * use localtime in accesslog if possible
2278 - 1.1.5 - 2004-04-07
2280   * added ldap backend to the auth
2281   * added a mod_expire
2282   * added debian packaging structure
2283   * merged redhat and suse spec-file
2284   * fixed eventhandler for solaris
2285   * fixed 64bit fileoffsets
2286   * fixed permissions of the PID-file
2288 - 1.1.4 - 2004-04-04
2290   * added server.pid-file
2291   * added support for solaris /dev/poll and solaris sendfilev()
2292   * added support for writev()
2293   * added PATHINFO support (again)
2294   * fixed CLF logfile writing
2296 - 1.1.3 - 2004-03-25
2298   * set default event-handler to 'poll'
2299   * fixed logcycling in chroot()
2300   * fixed hostname detection
2301   * added syslog() as fallback for error-logging
2303 - 1.1.2 - 2004-03-22
2305   * added a "docroot" setting for fastcgi processes
2306   * performance improvements
2307   * improved configure script
2308   * rewrote the fastcgi config parser
2309   * added a rc-script for RedHat
2310   * added epoll() support for Linux 2.6.x
2312 - 1.1.1 - 2004-03-15
2314   * added localizer module
2315   * performance improvements
2316   * code cleanup
2318 - 1.1.0 - 2004-03-06
2320   * changed some configuration keys for better readability
2321   * moved the virtual-host code to mod_simple_vhost
2322   * added enhanced virtual host plugin from Christian Kruse
2323   * added two new auth-backends (htpasswd, htdigest)
2324   * fixed and improved authentification
2325   * stricter parsing of the Host: field
2326   * added a warning for unused configuration keys
2327   * improved FastCGI documentation
2329 - 1.0.3 - 2004-02-13
2331   * a startup script has been added (LSB compliant)
2332   * HEAD requests were submitting the content like a GET request
2333   * the virtual directory listing got a face-lifting and fixes
2334   * request-headers are now handled case-in-sensitive as required
2335     by the standard. this fixes POST requests for w3m and some Proxies.
2337 - 1.0.2 - 2004-02-07
2339   * rearrangement of the default configfile
2340   * some updates in the documentation
2341   * a entry in the error-log for a 404
2342   * stdout is no longer the default for the accesslog