Index: RELEASE_NOTES =================================================================== --- RELEASE_NOTES.orig +++ RELEASE_NOTES @@ -12,6 +12,16 @@ ChangeLog files. + Fixed regression where all normal FTP users were handled as anonymous users. + + Changed Configuration Directives + + Include + The Include directive can now be used within a section, e.g.: + + + Include /path/to/allowed.txt + DenyAll + + 1.3.5c --------- Index: doc/modules/mod_core.html =================================================================== --- doc/modules/mod_core.html.orig +++ doc/modules/mod_core.html @@ -510,7 +510,7 @@ See also: Hid

Include

Syntax: Include path|pattern
Default: None
-Context: server config, <VirtualHost>, <Global>, <Anonymous>, <Directory>
+Context: server config, <VirtualHost>, <Global>, <Anonymous>, <Limit>, <Directory>
Module: mod_core
Compatibility: 1.2.10rc1 and later Index: modules/mod_core.c =================================================================== --- modules/mod_core.c.orig +++ modules/mod_core.c @@ -334,7 +334,7 @@ MODRET add_include(cmd_rec *cmd) { int res; CHECK_ARGS(cmd, 1); - CHECK_CONF(cmd, CONF_ROOT|CONF_VIRTUAL|CONF_ANON|CONF_GLOBAL|CONF_DIR); + CHECK_CONF(cmd, CONF_ROOT|CONF_VIRTUAL|CONF_ANON|CONF_GLOBAL|CONF_LIMIT|CONF_DIR); /* Make sure the given path is a valid path. */