+v3.2.6 (Jan Wolter - )
+-----------------------------------------------
+ * Modified parsing of "Require groups" line so that you can have group
+ names that include spaces by enclosing them in quotes. Haven't actually
+ tested this yet.
+
v3.2.5 (Jan Wolter - Oct 29, 2009)
-----------------------------------------------
* Fixed a bug introduced in 3.2.0 in which data for checkpassword-type
GroupExternalManyAtOnce off
+ If you have GroupExternalManyAtOnce turned off, then you can have
+ spaces in your group names by enclosing the names in quote marks.
+ If it is on, then all parsing of the group name list is up to your
+ authenticator.
+
If, instead of listing group names, you want to allow access only
to users whose group name (as determined by whatever group database
your external group checker uses) matches the unix group name that
{
/* Call authenticator once for each group name on line */
do {
- w= ap_getword_white(r->pool, &t);
+ w= ap_getword_conf(r->pool, &t);
code= exec_external(extpath,
extmethod, r, ENV_GROUP, w);
if (code == 0) return OK;