diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2015-01-06 11:38:35 +0100 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2015-01-06 11:38:35 +0100 |
commit | 7c459583bc4963f0de36cb85b2fccc5e33fdedfb (patch) | |
tree | 76116e7eb313c5df3e950db5d85e4a2208a499eb /conf | |
parent | e555b1a3dff3fb4bcf27d3d5871f3a459acc3d4e (diff) | |
download | pykolab-7c459583bc4963f0de36cb85b2fccc5e33fdedfb.tar.gz |
Add documentation on the VLV/SSS configuration
Diffstat (limited to 'conf')
-rw-r--r-- | conf/kolab.conf | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/conf/kolab.conf b/conf/kolab.conf index ea10029..040ced9 100644 --- a/conf/kolab.conf +++ b/conf/kolab.conf @@ -284,6 +284,39 @@ mailserver_attribute = mailhost ; "j.doe@example.org). auth_attributes = mail, alias, uid +; Virtual List View control, and Server-Side Sorting control configuration. +; +; Configure these to allow the Web Administration Panel (API) to not have to +; search a non-database cn=config for the VLV configuration. +; +;vlv = [ +; { +; 'ou=People,dc=example,dc=org': { +; 'scope': 'sub', +; 'filter': '(objectclass=inetorgperson)', +; 'sort' : [ +; [ +; 'displayname', +; 'sn', +; 'givenname', +; 'cn' +; ] +; ] +; } +; }, +; { +; 'ou=Groups,dc=example,dc=org': { +; 'scope': 'sub', +; 'filter': '(objectclass=groupofuniquenames)', +; 'sort' : [ +; [ +; 'cn' +; ] +; ] +; } +; }, +; ] + [kolab_smtp_access_policy] cache_uri = mysql://user:pass@localhost/database cache_retention = 86400 |