diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2011-02-21 15:09:11 +0000 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2011-02-21 15:09:11 +0000 |
commit | 8a85a51fb60d01495ed470bd1e545d98c05b1299 (patch) | |
tree | c5cc559972207cf432a1c58d13af3bb019060ef4 /conf/kolab.conf | |
parent | 0a7b4ed46177d6bb3bb74b8e5fbe444a15bd8e89 (diff) | |
download | pykolab-8a85a51fb60d01495ed470bd1e545d98c05b1299.tar.gz |
Add additional options to kolab.conf
Diffstat (limited to 'conf/kolab.conf')
-rw-r--r-- | conf/kolab.conf | 25 |
1 files changed, 20 insertions, 5 deletions
diff --git a/conf/kolab.conf b/conf/kolab.conf index a8897f0..19c2fef 100644 --- a/conf/kolab.conf +++ b/conf/kolab.conf @@ -2,7 +2,7 @@ leave_this_one_to_me = why_dont_cha [mysql] -db_uri = mysql://username:password@hostname/database +uri = mysql://username:password@hostname/database [kolab] imap_backend = cyrus-imap @@ -11,10 +11,25 @@ mta = postfix archving = openbenno [ldap] -user_base_dn = ou=People,%(base_dn)s -base_dn = dc=localdomain +group_base_dn = ou=Groups,%(base_dn)s +user_base_dn = ou=People,ou=Accounts,%(base_dn)s +kolab_user_filter = (&(uid=*)(mail=*)) uri = ldap://localhost +base_dn = dc=localhost,dc=localdomain bind_dn = cn=Directory Manager -group_base_dn = ou=Groups,%(base_dn)s -bind_pw = verysecret +bind_pw = VerySecret + +[cyrus-imap] +uri = imaps://localhost:993 +admin_login = cyrus-admin +admin_passwd = VerySecret +quota_attribute = mailquota + +[cyrus-sasl] +result_attribute = mail +[recipient_policy] +primary_email = %(givenname)s.%(surname)s@%(domain)s +other_email = { + "{0}.{1}@{2}": "format('%(givenname)s'[0:1].capitalize(), '%(surname)s', '%(domain)s')" + } |