You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@vcl.apache.org by fa...@apache.org on 2012/10/15 17:33:46 UTC

svn commit: r1398340 - /vcl/site/trunk/content/docs/UpgradePreviousVersions/UpgradeFrom2.2.1to2.3.mdtext

Author: fapeeler
Date: Mon Oct 15 15:33:45 2012
New Revision: 1398340

URL: http://svn.apache.org/viewvc?rev=1398340&view=rev
Log:
CMS commit to vcl by fapeeler

Modified:
    vcl/site/trunk/content/docs/UpgradePreviousVersions/UpgradeFrom2.2.1to2.3.mdtext

Modified: vcl/site/trunk/content/docs/UpgradePreviousVersions/UpgradeFrom2.2.1to2.3.mdtext
URL: http://svn.apache.org/viewvc/vcl/site/trunk/content/docs/UpgradePreviousVersions/UpgradeFrom2.2.1to2.3.mdtext?rev=1398340&r1=1398339&r2=1398340&view=diff
==============================================================================
--- vcl/site/trunk/content/docs/UpgradePreviousVersions/UpgradeFrom2.2.1to2.3.mdtext (original)
+++ vcl/site/trunk/content/docs/UpgradePreviousVersions/UpgradeFrom2.2.1to2.3.mdtext Mon Oct 15 15:33:45 2012
@@ -105,7 +105,7 @@ This page provides information on how to
             define("ALLOWADDSHIBUSERS", 0);
 
 
-    e. Some LDAP related items have been simplified in the code using additional options in $authMechs. For any LDAP entries, add two options. "lookupuserbeforeauth" is used if you need VCL to look up the full DN of a user and use that when doing the bind that authenticates the user (if you don't know what this means, leave it set to 0). If you need to set it to 1, then you will need to set "lookupuserfield" to what LDAP attribute to use when looking up the user's DN (typically either 'cn', 'uid', or 'samaccountname'). In conf.php, **Add the following to each LDAP** array you have in the $authMech array.
+    e. LDAP related items have been simplified in the code using additional options in $authMechs. For any LDAP entries, add two options. "lookupuserbeforeauth" is used if you need VCL to look up the full DN of a user and use that when doing the bind that authenticates the user (if you don't know what this means, leave it set to 0). If you need to set it to 1, then you will need to set "lookupuserfield" to what LDAP attribute to use when looking up the user's DN (typically either 'cn', 'uid', or 'samaccountname'). In conf.php, **Add the following to each LDAP** array you have in the $authMech array.
 	
             :::BashLexer
             "lookupuserbeforeauth" => 0,
@@ -119,9 +119,7 @@ This page provides information on how to
             $addUserFunc[$item['affiliationid']] = create_function('', 'return 0;');
             $updateUserFunc[$item['affiliationid']] = create_function('', 'return 0;');
  
-
-            :::BashLexer
-            NEW
+            :NEW
             $addUserFunc[$item['affiliationid']] = create_function('', 'return NULL;');
             $updateUserFunc[$item['affiliationid']] = create_function('', 'return NULL;');