Annotation of embedaddon/lighttpd/NEWS, revision 1.1.1.1

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

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>