|  | @@ -291,6 +291,31 @@ You must define general parameters like the base_url and the website title which
 | 
	
		
			
			| 291 | 291 |      website.title = My Company Intranet
 | 
	
		
			
			| 292 | 292 |      website.base_url = http://intranet.mycompany.com:8080
 | 
	
		
			
			| 293 | 293 |  
 | 
	
		
			
			|  | 294 | +#### LDAP ####
 | 
	
		
			
			|  | 295 | +
 | 
	
		
			
			|  | 296 | +To use LDAP authentication, set ``auth_type`` parameter to "ldap":
 | 
	
		
			
			|  | 297 | +
 | 
	
		
			
			|  | 298 | +    auth_type = ldap
 | 
	
		
			
			|  | 299 | +
 | 
	
		
			
			|  | 300 | +Than add LDAP parameters
 | 
	
		
			
			|  | 301 | +
 | 
	
		
			
			|  | 302 | +    # LDAP server address
 | 
	
		
			
			|  | 303 | +    ldap_url = ldap://localhost:389
 | 
	
		
			
			|  | 304 | +    # Base dn to make queries
 | 
	
		
			
			|  | 305 | +    ldap_base_dn = dc=directory,dc=fsf,dc=org
 | 
	
		
			
			|  | 306 | +    # Bind dn to identify the search
 | 
	
		
			
			|  | 307 | +    ldap_bind_dn = cn=admin,dc=directory,dc=fsf,dc=org
 | 
	
		
			
			|  | 308 | +    # The bind password
 | 
	
		
			
			|  | 309 | +    ldap_bind_pass = toor
 | 
	
		
			
			|  | 310 | +    # Attribute name of user record who contain user login (email)
 | 
	
		
			
			|  | 311 | +    ldap_ldap_naming_attribute = uid
 | 
	
		
			
			|  | 312 | +    # Matching between ldap attribute and ldap user field
 | 
	
		
			
			|  | 313 | +    ldap_user_attributes = mail=email
 | 
	
		
			
			|  | 314 | +    # TLS usage to communicate with your LDAP server
 | 
	
		
			
			|  | 315 | +    ldap_tls = False
 | 
	
		
			
			|  | 316 | +    # If True, LDAP own tracim group managment (not available for now!)
 | 
	
		
			
			|  | 317 | +    ldap_group_enabled = False
 | 
	
		
			
			|  | 318 | +
 | 
	
		
			
			| 294 | 319 |  #### Other parameters  ####
 | 
	
		
			
			| 295 | 320 |  
 | 
	
		
			
			| 296 | 321 |  There are other parameters which may be of some interest for you. For example, you can:
 |