blob: 14baec471e0b89a7e100b56b1a23421c9d2aa01d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/bash
export rootdn="dc=example,dc=org"
export domain="example.org"
export domain_db="example_org"
export ldap_host="localhost"
export ldap_binddn="cn=Directory Manager"
export ldap_bindpw="Welcome2KolabSystems"
export cyrus_admin="cyrus-admin"
export kolab2_base="kolab.kolabsys.com:/kolab/var/imapd/"
export imap_host="${ldap_host}"
export cyrus_admin_pw="${ldap_bindpw}"
export hosted_kolab_service_pw="${ldap_bindpw}"
export hosted_domain="demo.kolab.org"
export hosted_domain_rootdn="dc=demo,dc=kolab,dc=org"
export default_user_password="Welcome2KolabSystems"
|