Status of deb installation of 3.0 on wheezy
Johannes Graumann <[email protected]>
| Newsgroups | gmane.comp.kde.devel.kolab,gmane.comp.kde.kolab.devel |
|---|---|
| Message-ID | <[email protected]> |
Dear all,
With the use of the attached patch-set for pykolab and the following
incantations
PROMPT> aptitude update && aptitude upgrade && aptitude install kolab
libpython2.7 wallace libcalendaring libmozldap-0d
python-kolabformat python-kolab
- mysql-server: do NOT set root PW
- postfix: No configuration
PROMPT> freshclam && service clamav-daemon restart
PROMPT> cp /usr/share/postfix/main.cf.debian /etc/postfix/main.cf
PROMPT> cd /usr/share/doc/kolab-schema/ && gunzip kolab2.ldif.gz
PROMPT> cd /root && setup-kolab -d 9 --timezone='Asia/<IMHERE>' |tee setup-
kolab.log
I'm getting quite far with putting 3.0 on wheezy using the deb repository.
However, the log (also attached) still displays areas of shortcoming (aside
from the still missing python ical, for which there is a bug reported).
I extract them below and would appreciate any further hints to clean them
up.
Sincerely, Joh
Line 42:
> Starting admin server . . .
> output: /usr/sbin/start-ds-admin: 104: /usr/sbin/start-ds-admin:
/usr/sbin/apache2: not found
> output: Server failed to start !!! Please check errors log for problems
> Could not start the admin server. Error: 256
> Could not reconfigure the admin server.
> Exiting . . .
> Log file is '/tmp/setup6wGFDz.log'
In /usr/sbin only 'apache2ctl', 'apache2.prefork', 'apache2.worker' and
'apachectl' exist.
What to do about this?
Line 796:
> 2012-10-02 13:00:00,241 pykolab.setup WARNING Could not find the Kolab
schema file
There is indeed no single file in the filesystem that fits the
"filename.startswith('kolab_wap') and filename.endswith('.sql')"
requirements layd out in "setup_mysql.py" - where are they?
Line 941:
> 2012-10-02 13:00:08,966 pykolab.setup ERROR Z-Push is not installed on
this system
Hm!?
Line 970:
> 2012-10-02 13:00:08,974 pykolab.setup ERROR Free/Busy is not installed on
this system
Hm!?
_______________________________________________
Kolab-devel mailing list
[email protected]
https://www.intevation.de/mailman/listinfo/kolab-devel
JG_Patch_10022012.patch
(text/x-patch, 33.9 KB)
From 3a161cd53f0786538e9f844704cf363319bf31e8 Mon Sep 17 00:00:00 2001 From: Johannes Graumann <[email protected]> Date: Mon, 1 Oct 2012 17:34:12 +0300 Subject: [PATCH 01/16] Debianize user/group running dirsrv to "dirsrv" rather than "nobody"; --- pykolab/setup/setup_ldap.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pykolab/setup/setup_ldap.py b/pykolab/setup/setup_ldap.py index 93c9d04..80c0351 100644 --- a/pykolab/setup/setup_ldap.py +++ b/pykolab/setup/setup_ldap.py @@ -109,14 +109,14 @@ def execute(*args, **kw): """) ) - _input['userid'] = utils.ask_question(_("User"), default="nobody") - _input['group'] = utils.ask_question(_("Group"), default="nobody") + _input['userid'] = utils.ask_question(_("User"), default="dirsrv") + _input['group'] = utils.ask_question(_("Group"), default="dirsrv") else: _input['admin_pass'] = conf.get('ldap', 'bind_pw') _input['dirmgr_pass'] = conf.get('ldap', 'bind_pw') - _input['userid'] = "nobody" - _input['group'] = "nobody" + _input['userid'] = "dirsrv" + _input['group'] = "dirsrv" # TODO: Verify the user and group exist. -- 1.7.10.4 From c9552d18643f533dffb3da33037c4434d9c7faeb Mon Sep 17 00:00:00 2001 From: Johannes Graumann <[email protected]> Date: Mon, 1 Oct 2012 17:35:34 +0300 Subject: [PATCH 02/16] Make more flexible/debianize the lookup of dirsrv's (389) setup srcitp: it's at "/usr/sbin/setup-ds-admin" in Debian; --- pykolab/setup/setup_ldap.py | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/pykolab/setup/setup_ldap.py b/pykolab/setup/setup_ldap.py index 80c0351..d93e1d8 100644 --- a/pykolab/setup/setup_ldap.py +++ b/pykolab/setup/setup_ldap.py @@ -222,11 +222,15 @@ ServerAdminPwd = %(admin_pass)s os.write(fp, data) os.close(fp) - setup_ds_admin = "/usr/sbin/setup-ds-admin.pl" - - if not os.path.isfile(setup_ds_admin): - setup_ds_admin = "/usr/sbin/setup-ds-admin" - + if os.path.isfile("/usr/sbin/setup-ds-admin.pl"): + setup_ds_admin = "/usr/sbin/setup-ds-admin.pl" + elif os.path.isfile("/usr/sbin/setup-ds-admin"): + setup_ds_admin = "/usr/sbin/setup-ds-admin" + elif os.path.isfile("/usr/sbin/setup-ds"): + setup_ds_admin = "/usr/sbin/setup-ds" + else: + log.error(_("No directory server setup tool available.")) + command = [ setup_ds_admin, '--debug', -- 1.7.10.4 From 728137dc92e3d35ac8acb2ec36f5b23235288527 Mon Sep 17 00:00:00 2001 From: Johannes Graumann <[email protected]> Date: Mon, 1 Oct 2012 17:38:24 +0300 Subject: [PATCH 03/16] Debianize service restarting tools ("/usr/sbin/service") and start-sequence integration ("/usr/sbin/update-rc.d"); Additionally (temporary?) fix dirsrv startup script bug which prevents "service dirsrv restart", as the 389 port is not yet freed when the new process is starting; --- pykolab/setup/setup_ldap.py | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/pykolab/setup/setup_ldap.py b/pykolab/setup/setup_ldap.py index d93e1d8..cf1c76a 100644 --- a/pykolab/setup/setup_ldap.py +++ b/pykolab/setup/setup_ldap.py @@ -23,6 +23,7 @@ import os import shutil import subprocess import tempfile +import time import components @@ -289,12 +290,23 @@ ServerAdminPwd = %(admin_pass)s if os.path.isfile('/bin/systemctl'): subprocess.call(['/bin/systemctl', 'restart', 'dirsrv.target']) - subprocess.call(['/bin/systemctl', 'enable', 'dirsrv.target']) elif os.path.isfile('/sbin/service'): subprocess.call(['/sbin/service', 'dirsrv', 'restart']) + elif os.path.isfile('/usr/sbin/service'): + subprocess.call(['/usr/sbin/service','dirsrv','stop']) + time.sleep(20) + subprocess.call(['/usr/sbin/service','dirsrv','start']) + else: + log.error(_("Could not start the directory server service.")) + + if os.path.isfile('/bin/systemctl'): + subprocess.call(['/bin/systemctl', 'enable', 'dirsrv.target']) + elif os.path.isfile('/sbin/chkconfig'): subprocess.call(['/sbin/chkconfig', 'dirsrv', 'on']) + elif os.path.isfile('/usr/sbin/update-rc.d'): + subprocess.call(['/usr/sbin/update-rc.d', 'dirsrv', 'defaults']) else: - log.error(_("Could not start and configure to start on boot, the " + \ + log.error(_("Could not configure to start on boot, the " + \ "directory server service.")) if ask_questions: @@ -529,8 +541,10 @@ ServerAdminPwd = %(admin_pass)s if os.path.isfile('/bin/systemctl'): subprocess.call(['/bin/systemctl', 'enable', 'dirsrv-admin.service']) - elif os.path.isfile('/sbin/service'): + elif os.path.isfile('/sbin/chkconfig'): subprocess.call(['/sbin/chkconfig', 'dirsrv-admin', 'on']) + elif os.path.isfile('/usr/sbin/update-rc.d'): + subprocess.call(['/usr/sbin/update-rc.d', 'dirsrv-admin', 'defaults']) else: log.error(_("Could not start and configure to start on boot, the " + \ "directory server admin service.")) -- 1.7.10.4 From c2e28fb5beaeac41d81b65f22ef735666cee62e9 Mon Sep 17 00:00:00 2001 From: Johannes Graumann <[email protected]> Date: Mon, 1 Oct 2012 18:34:37 +0300 Subject: [PATCH 04/16] Debianize service maintenance script path ("/usr/sbin/service"), start sequence-integration tool ("/usr/sbin/update-rc.d") as well as webserver name ("apache2" rather than "httpd"); --- pykolab/setup/setup_zpush.py | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/pykolab/setup/setup_zpush.py b/pykolab/setup/setup_zpush.py index 3aa7a0b..c236f7b 100644 --- a/pykolab/setup/setup_zpush.py +++ b/pykolab/setup/setup_zpush.py @@ -89,12 +89,21 @@ def execute(*args, **kw): time.sleep(2) if os.path.isfile('/bin/systemctl'): - subprocess.call(['/bin/systemctl', 'restart', 'httpd.service']) - subprocess.call(['/bin/systemctl', 'enable', 'httpd.service']) + subprocess.call(['/bin/systemctl', 'restart', 'httpd.target']) elif os.path.isfile('/sbin/service'): subprocess.call(['/sbin/service', 'httpd', 'restart']) - subprocess.call(['/sbin/chkconfig', 'httpd', 'on']) + elif os.path.isfile('/usr/sbin/service'): + subprocess.call(['/usr/sbin/service','apache2','restart']) else: - log.error(_("Could not start and configure to start on boot, the " + \ - "webserver service.")) + log.error(_("Could not start the webserver server service.")) + if os.path.isfile('/bin/systemctl'): + subprocess.call(['/bin/systemctl', 'enable', 'httpd.target']) + elif os.path.isfile('/sbin/chkconfig'): + subprocess.call(['/sbin/chkconfig', 'httpd', 'on']) + elif os.path.isfile('/usr/sbin/update-rc.d'): + subprocess.call(['/usr/sbin/update-rc.d', 'apache2', 'defaults']) + else: + log.error(_("Could not configure to start on boot, the " + \ + "webserver server service.")) + -- 1.7.10.4 From 28fd92a69b81622ace2687b5e99bff291e528d36 Mon Sep 17 00:00:00 2001 From: Johannes Graumann <[email protected]> Date: Mon, 1 Oct 2012 18:37:40 +0300 Subject: [PATCH 05/16] Debianize service maintenance script path ("/usr/sbin/service"), start sequence-integration tool ("/usr/sbin/update-rc.d") as well as webserver name ("apache2" rather than "httpd"); --- pykolab/setup/setup_syncroton.py | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/pykolab/setup/setup_syncroton.py b/pykolab/setup/setup_syncroton.py index 8298db5..676d9bc 100644 --- a/pykolab/setup/setup_syncroton.py +++ b/pykolab/setup/setup_syncroton.py @@ -57,12 +57,21 @@ def execute(*args, **kw): time.sleep(2) if os.path.isfile('/bin/systemctl'): - subprocess.call(['/bin/systemctl', 'restart', 'httpd.service']) - subprocess.call(['/bin/systemctl', 'enable', 'httpd.service']) + subprocess.call(['/bin/systemctl', 'restart', 'httpd.target']) elif os.path.isfile('/sbin/service'): subprocess.call(['/sbin/service', 'httpd', 'restart']) + elif os.path.isfile('/usr/sbin/service'): + subprocess.call(['/usr/sbin/service','apache2','restart']) + else: + log.error(_("Could not start the webserver server service.")) + + if os.path.isfile('/bin/systemctl'): + subprocess.call(['/bin/systemctl', 'enable', 'httpd.target']) + elif os.path.isfile('/sbin/chkconfig'): subprocess.call(['/sbin/chkconfig', 'httpd', 'on']) + elif os.path.isfile('/usr/sbin/update-rc.d'): + subprocess.call(['/usr/sbin/update-rc.d', 'apache2', 'defaults']) else: - log.error(_("Could not start and configure to start on boot, the " + \ - "webserver service.")) + log.error(_("Could not configure to start on boot, the " + \ + "webserver server service.")) -- 1.7.10.4 From 35588eb1da12c21c0b5d86422b803a5503b84a91 Mon Sep 17 00:00:00 2001 From: Johannes Graumann <[email protected]> Date: Mon, 1 Oct 2012 18:38:52 +0300 Subject: [PATCH 06/16] Debianize service maintenance script path ("/usr/sbin/service"), start sequence-integration tool ("/usr/sbin/update-rc.d") as well as webserver name ("apache2" rather than "httpd"); --- pykolab/setup/setup_roundcube.py | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/pykolab/setup/setup_roundcube.py b/pykolab/setup/setup_roundcube.py index 0f45711..6b2c464 100644 --- a/pykolab/setup/setup_roundcube.py +++ b/pykolab/setup/setup_roundcube.py @@ -181,12 +181,21 @@ def execute(*args, **kw): time.sleep(2) if os.path.isfile('/bin/systemctl'): - subprocess.call(['/bin/systemctl', 'restart', 'httpd.service']) - subprocess.call(['/bin/systemctl', 'enable', 'httpd.service']) + subprocess.call(['/bin/systemctl', 'restart', 'httpd.target']) elif os.path.isfile('/sbin/service'): subprocess.call(['/sbin/service', 'httpd', 'restart']) + elif os.path.isfile('/usr/sbin/service'): + subprocess.call(['/usr/sbin/service','apache2','restart']) + else: + log.error(_("Could not start the webserver server service.")) + + if os.path.isfile('/bin/systemctl'): + subprocess.call(['/bin/systemctl', 'enable', 'httpd.target']) + elif os.path.isfile('/sbin/chkconfig'): subprocess.call(['/sbin/chkconfig', 'httpd', 'on']) + elif os.path.isfile('/usr/sbin/update-rc.d'): + subprocess.call(['/usr/sbin/update-rc.d', 'apache2', 'defaults']) else: - log.error(_("Could not start and configure to start on boot, the " + \ - "webserver service.")) + log.error(_("Could not configure to start on boot, the " + \ + "webserver server service.")) -- 1.7.10.4 From 7cdca492967e3ac186b4e6026f04abc7b90fe63b Mon Sep 17 00:00:00 2001 From: Johannes Graumann <[email protected]> Date: Mon, 1 Oct 2012 18:47:04 +0300 Subject: [PATCH 07/16] Debianize service maintenance script path ("/usr/sbin/service"), as well as the start sequence-integration tool ("/usr/sbin/update-rc.d"); --- pykolab/setup/setup_mysql.py | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/pykolab/setup/setup_mysql.py b/pykolab/setup/setup_mysql.py index 093d187..9a046b2 100644 --- a/pykolab/setup/setup_mysql.py +++ b/pykolab/setup/setup_mysql.py @@ -40,15 +40,24 @@ def description(): def execute(*args, **kw): if os.path.isfile('/bin/systemctl'): - subprocess.call(['/bin/systemctl', 'start', 'mysqld.service']) - subprocess.call(['/bin/systemctl', 'enable', 'mysqld.service']) + subprocess.call(['/bin/systemctl', 'restart', 'mysqld.target']) elif os.path.isfile('/sbin/service'): - subprocess.call(['/sbin/service', 'mysqld', 'start']) - subprocess.call(['/sbin/chkconfig', 'mysqld', 'on']) + subprocess.call(['/sbin/service', 'mysqld', 'restart']) + elif os.path.isfile('/usr/sbin/service'): + subprocess.call(['/usr/sbin/service','mysqld','restart']) else: - log.error(_("Could not start and configure to start on boot, the " + \ - "MySQL database service.")) + log.error(_("Could not start the MySQL database service.")) + if os.path.isfile('/bin/systemctl'): + subprocess.call(['/bin/systemctl', 'enable', 'mysqld.target']) + elif os.path.isfile('/sbin/chkconfig'): + subprocess.call(['/sbin/chkconfig', 'mysqld', 'on']) + elif os.path.isfile('/usr/sbin/update-rc.d'): + subprocess.call(['/usr/sbin/update-rc.d', 'mysqld', 'defaults']) + else: + log.error(_("Could not configure to start on boot, the " + \ + "MySQL database service.")) + print >> sys.stderr, utils.multiline_message( _(""" Please supply a root password for MySQL. This password will -- 1.7.10.4 From 3cbd1ba4f01b15804060361bd95525f0de04b7e9 Mon Sep 17 00:00:00 2001 From: Johannes Graumann <[email protected]> Date: Mon, 1 Oct 2012 20:00:52 +0300 Subject: [PATCH 08/16] Debianize service maintenance script path ("/usr/sbin/service"), start sequence-integration tool ("/usr/sbin/update-rc.d") as well as service names; --- pykolab/setup/setup_mta.py | 34 ++++++++++++++++++++++++---------- 1 file changed, 24 insertions(+), 10 deletions(-) diff --git a/pykolab/setup/setup_mta.py b/pykolab/setup/setup_mta.py index f9202d3..36e6750 100644 --- a/pykolab/setup/setup_mta.py +++ b/pykolab/setup/setup_mta.py @@ -289,23 +289,37 @@ result_attribute = mail if os.path.isfile('/bin/systemctl'): subprocess.call(['systemctl', 'restart', 'postfix.service']) - subprocess.call(['systemctl', 'enable', 'postfix.service']) subprocess.call(['systemctl', 'restart', 'amavisd.service']) - subprocess.call(['systemctl', 'enable', 'amavisd.service']) subprocess.call(['systemctl', 'restart', 'clamd.amavisd.service']) - subprocess.call(['systemctl', 'enable', 'clamd.amavisd.service']) subprocess.call(['systemctl', 'restart', 'wallace.service']) - subprocess.call(['systemctl', 'enable', 'wallace.service']) elif os.path.isfile('/sbin/service'): subprocess.call(['service', 'postfix', 'restart']) - subprocess.call(['chkconfig', 'postfix', 'on']) subprocess.call(['service', 'amavisd', 'restart']) - subprocess.call(['chkconfig', 'amavisd', 'on']) subprocess.call(['service', 'clamd.amavisd', 'restart']) - subprocess.call(['chkconfig', 'clamd.amavisd', 'on']) subprocess.call(['service', 'wallace', 'restart']) - subprocess.call(['chkconfig', 'wallace', 'on']) + elif os.path.isfile('/usr/sbin/service'): + subprocess.call(['/usr/sbin/service','postfix','restart']) + subprocess.call(['/usr/sbin/service','amavis','restart']) + subprocess.call(['/usr/sbin/service','clamav-daemon','restart']) + subprocess.call(['/usr/sbin/service','wallace','restart']) else: - log.error(_("Could not start and configure to start on boot, the " + \ - "postfix, clamav.amavisd and amavisd services.")) + log.error(_("Could not start the postfix, clamav and amavisd services services.")) + if os.path.isfile('/bin/systemctl'): + subprocess.call(['systemctl', 'enable', 'postfix.service']) + subprocess.call(['systemctl', 'enable', 'amavisd.service']) + subprocess.call(['systemctl', 'enable', 'clamd.amavisd.service']) + subprocess.call(['systemctl', 'enable', 'wallace.service']) + elif os.path.isfile('/sbin/chkconfig'): + subprocess.call(['chkconfig', 'postfix', 'on']) + subprocess.call(['chkconfig', 'amavisd', 'on']) + subprocess.call(['chkconfig', 'clamd.amavisd', 'on']) + subprocess.call(['chkconfig', 'wallace', 'on']) + elif os.path.isfile('/usr/sbin/update-rc.d'): + subprocess.call(['/usr/sbin/update-rc.d', 'postfix', 'defaults']) + subprocess.call(['/usr/sbin/update-rc.d', 'amavis', 'defaults']) + subprocess.call(['/usr/sbin/update-rc.d', 'clamav-daemon', 'defaults']) + subprocess.call(['/usr/sbin/update-rc.d', 'wallace', 'defaults']) + else: + log.error(_("Could not configure to start on boot, the " + \ + "postfix, clamav and amavisd services.")) -- 1.7.10.4 From 3bb97b805a6f70933219bd9aa46beedbf7bf765d Mon Sep 17 00:00:00 2001 From: Johannes Graumann <[email protected]> Date: Mon, 1 Oct 2012 20:03:40 +0300 Subject: [PATCH 09/16] Debianize service maintenance script path ("/usr/sbin/service"), start sequence-integration tool ("/usr/sbin/update-rc.d"); --- pykolab/setup/setup_kolabd.py | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/pykolab/setup/setup_kolabd.py b/pykolab/setup/setup_kolabd.py index 9e35a85..559dba2 100644 --- a/pykolab/setup/setup_kolabd.py +++ b/pykolab/setup/setup_kolabd.py @@ -63,8 +63,20 @@ def execute(*args, **kw): fp.close() if os.path.isfile('/bin/systemctl'): - subprocess.call(['systemctl', 'restart', 'kolabd.service']) - subprocess.call(['systemctl', 'enable', 'kolabd.service']) + subprocess.call(['/bin/systemctl', 'restart', 'kolabd.service']) elif os.path.isfile('/sbin/service'): - subprocess.call(['service', 'kolabd', 'restart']) - subprocess.call(['chkconfig', 'kolabd', 'on']) + subprocess.call(['/sbin/service', 'kolabd', 'restart']) + elif os.path.isfile('/usr/sbin/service'): + subprocess.call(['/usr/sbin/service','kolabd','restart']) + else: + log.error(_("Could not start the kolab server service.")) + + if os.path.isfile('/bin/systemctl'): + subprocess.call(['/bin/systemctl', 'enable', 'kolabd.service']) + elif os.path.isfile('/sbin/chkconfig'): + subprocess.call(['/sbin/chkconfig', 'kolabd', 'on']) + elif os.path.isfile('/usr/sbin/update-rc.d'): + subprocess.call(['/usr/sbin/update-rc.d', 'kolabd', 'defaults']) + else: + log.error(_("Could not configure to start on boot, the " + \ + "kolab server service.")) -- 1.7.10.4 From dc4aabd4c33a152f5e7cc7e29dfe5bf06ff94d2a Mon Sep 17 00:00:00 2001 From: Johannes Graumann <[email protected]> Date: Mon, 1 Oct 2012 20:10:42 +0300 Subject: [PATCH 10/16] Debianize service maintenance script path ("/usr/sbin/service"), start sequence-integration tool ("/usr/sbin/update-rc.d"); --- pykolab/setup/setup_imap.py | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/pykolab/setup/setup_imap.py b/pykolab/setup/setup_imap.py index 750e43d..f3c3172 100644 --- a/pykolab/setup/setup_imap.py +++ b/pykolab/setup/setup_imap.py @@ -131,14 +131,25 @@ def execute(*args, **kw): if os.path.isfile('/bin/systemctl'): subprocess.call(['systemctl', 'restart', 'cyrus-imapd.service']) - subprocess.call(['systemctl', 'enable', 'cyrus-imapd.service']) subprocess.call(['systemctl', 'restart', 'kolab-saslauthd.service']) - subprocess.call(['systemctl', 'enable', 'kolab-saslauthd.service']) elif os.path.isfile('/sbin/service'): subprocess.call(['service', 'cyrus-imapd', 'restart']) - subprocess.call(['chkconfig', 'cyrus-imapd', 'on']) subprocess.call(['service', 'kolab-saslauthd', 'restart']) + elif os.path.isfile('/usr/sbin/service'): + subprocess.call(['/usr/sbin/service','cyrus-imapd','restart']) + subprocess.call(['/usr/sbin/service','kolab-saslauthd','restart']) + else: + log.error(_("Could not start the cyrus-imapd and kolab-saslauthd services.")) + + if os.path.isfile('/bin/systemctl'): + subprocess.call(['systemctl', 'enable', 'cyrus-imapd.service']) + subprocess.call(['systemctl', 'enable', 'kolab-saslauthd.service']) + elif os.path.isfile('/sbin/chkconfig'): + subprocess.call(['chkconfig', 'cyrus-imapd', 'on']) subprocess.call(['chkconfig', 'kolab-saslauthd', 'on']) + elif os.path.isfile('/usr/sbin/update-rc.d'): + subprocess.call(['/usr/sbin/update-rc.d', 'cyrus-imapd', 'defaults']) + subprocess.call(['/usr/sbin/update-rc.d', 'kolab-saslauthd', 'defaults']) else: - log.error(_("Could not start and configure to start on boot, the " + \ - "cyrus-imapd and kolab-saslauthd services.")) + log.error(_("Could not configure to start on boot, the " + \ + "cyrus-imapd and kolab-saslauthd services.")) \ No newline at end of file -- 1.7.10.4 From 09ac02b5315db54fc89a9e5793deecea2b6959e1 Mon Sep 17 00:00:00 2001 From: Johannes Graumann <[email protected]> Date: Mon, 1 Oct 2012 20:11:41 +0300 Subject: [PATCH 11/16] Debianize service maintenance script path ("/usr/sbin/service"), start sequence-integration tool ("/usr/sbin/update-rc.d"); --- pykolab/setup/setup_freebusy.py | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/pykolab/setup/setup_freebusy.py b/pykolab/setup/setup_freebusy.py index 22c74c4..c1492cd 100644 --- a/pykolab/setup/setup_freebusy.py +++ b/pykolab/setup/setup_freebusy.py @@ -110,12 +110,21 @@ def execute(*args, **kw): time.sleep(2) if os.path.isfile('/bin/systemctl'): - subprocess.call(['/bin/systemctl', 'restart', 'httpd.service']) - subprocess.call(['/bin/systemctl', 'enable', 'httpd.service']) + subprocess.call(['/bin/systemctl', 'restart', 'httpd.target']) elif os.path.isfile('/sbin/service'): subprocess.call(['/sbin/service', 'httpd', 'restart']) + elif os.path.isfile('/usr/sbin/service'): + subprocess.call(['/usr/sbin/service','apache2','restart']) + else: + log.error(_("Could not start the webserver server service.")) + + if os.path.isfile('/bin/systemctl'): + subprocess.call(['/bin/systemctl', 'enable', 'httpd.target']) + elif os.path.isfile('/sbin/chkconfig'): subprocess.call(['/sbin/chkconfig', 'httpd', 'on']) + elif os.path.isfile('/usr/sbin/update-rc.d'): + subprocess.call(['/usr/sbin/update-rc.d', 'apache2', 'defaults']) else: - log.error(_("Could not start and configure to start on boot, the " + \ - "webserver service.")) + log.error(_("Could not configure to start on boot, the " + \ + "webserver server service.")) -- 1.7.10.4 From 4ce9120a1d71719a672db932f514b744114b4f8f Mon Sep 17 00:00:00 2001 From: Johannes Graumann <[email protected]> Date: Mon, 1 Oct 2012 21:08:40 +0300 Subject: [PATCH 12/16] Fix editing error :"httpd.target" --> "httpd.service" --- pykolab/setup/setup_freebusy.py | 4 ++-- pykolab/setup/setup_mysql.py | 4 ++-- pykolab/setup/setup_roundcube.py | 4 ++-- pykolab/setup/setup_syncroton.py | 4 ++-- pykolab/setup/setup_zpush.py | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/pykolab/setup/setup_freebusy.py b/pykolab/setup/setup_freebusy.py index c1492cd..7fe7d5f 100644 --- a/pykolab/setup/setup_freebusy.py +++ b/pykolab/setup/setup_freebusy.py @@ -110,7 +110,7 @@ def execute(*args, **kw): time.sleep(2) if os.path.isfile('/bin/systemctl'): - subprocess.call(['/bin/systemctl', 'restart', 'httpd.target']) + subprocess.call(['/bin/systemctl', 'restart', 'httpd.service']) elif os.path.isfile('/sbin/service'): subprocess.call(['/sbin/service', 'httpd', 'restart']) elif os.path.isfile('/usr/sbin/service'): @@ -119,7 +119,7 @@ def execute(*args, **kw): log.error(_("Could not start the webserver server service.")) if os.path.isfile('/bin/systemctl'): - subprocess.call(['/bin/systemctl', 'enable', 'httpd.target']) + subprocess.call(['/bin/systemctl', 'enable', 'httpd.service']) elif os.path.isfile('/sbin/chkconfig'): subprocess.call(['/sbin/chkconfig', 'httpd', 'on']) elif os.path.isfile('/usr/sbin/update-rc.d'): diff --git a/pykolab/setup/setup_mysql.py b/pykolab/setup/setup_mysql.py index 9a046b2..df9b1ac 100644 --- a/pykolab/setup/setup_mysql.py +++ b/pykolab/setup/setup_mysql.py @@ -40,7 +40,7 @@ def description(): def execute(*args, **kw): if os.path.isfile('/bin/systemctl'): - subprocess.call(['/bin/systemctl', 'restart', 'mysqld.target']) + subprocess.call(['/bin/systemctl', 'restart', 'mysqld.service']) elif os.path.isfile('/sbin/service'): subprocess.call(['/sbin/service', 'mysqld', 'restart']) elif os.path.isfile('/usr/sbin/service'): @@ -49,7 +49,7 @@ def execute(*args, **kw): log.error(_("Could not start the MySQL database service.")) if os.path.isfile('/bin/systemctl'): - subprocess.call(['/bin/systemctl', 'enable', 'mysqld.target']) + subprocess.call(['/bin/systemctl', 'enable', 'mysqld.service']) elif os.path.isfile('/sbin/chkconfig'): subprocess.call(['/sbin/chkconfig', 'mysqld', 'on']) elif os.path.isfile('/usr/sbin/update-rc.d'): diff --git a/pykolab/setup/setup_roundcube.py b/pykolab/setup/setup_roundcube.py index 6b2c464..4a5b394 100644 --- a/pykolab/setup/setup_roundcube.py +++ b/pykolab/setup/setup_roundcube.py @@ -181,7 +181,7 @@ def execute(*args, **kw): time.sleep(2) if os.path.isfile('/bin/systemctl'): - subprocess.call(['/bin/systemctl', 'restart', 'httpd.target']) + subprocess.call(['/bin/systemctl', 'restart', 'httpd.service']) elif os.path.isfile('/sbin/service'): subprocess.call(['/sbin/service', 'httpd', 'restart']) elif os.path.isfile('/usr/sbin/service'): @@ -190,7 +190,7 @@ def execute(*args, **kw): log.error(_("Could not start the webserver server service.")) if os.path.isfile('/bin/systemctl'): - subprocess.call(['/bin/systemctl', 'enable', 'httpd.target']) + subprocess.call(['/bin/systemctl', 'enable', 'httpd.service']) elif os.path.isfile('/sbin/chkconfig'): subprocess.call(['/sbin/chkconfig', 'httpd', 'on']) elif os.path.isfile('/usr/sbin/update-rc.d'): diff --git a/pykolab/setup/setup_syncroton.py b/pykolab/setup/setup_syncroton.py index 676d9bc..46d5190 100644 --- a/pykolab/setup/setup_syncroton.py +++ b/pykolab/setup/setup_syncroton.py @@ -57,7 +57,7 @@ def execute(*args, **kw): time.sleep(2) if os.path.isfile('/bin/systemctl'): - subprocess.call(['/bin/systemctl', 'restart', 'httpd.target']) + subprocess.call(['/bin/systemctl', 'restart', 'httpd.service']) elif os.path.isfile('/sbin/service'): subprocess.call(['/sbin/service', 'httpd', 'restart']) elif os.path.isfile('/usr/sbin/service'): @@ -66,7 +66,7 @@ def execute(*args, **kw): log.error(_("Could not start the webserver server service.")) if os.path.isfile('/bin/systemctl'): - subprocess.call(['/bin/systemctl', 'enable', 'httpd.target']) + subprocess.call(['/bin/systemctl', 'enable', 'httpd.service']) elif os.path.isfile('/sbin/chkconfig'): subprocess.call(['/sbin/chkconfig', 'httpd', 'on']) elif os.path.isfile('/usr/sbin/update-rc.d'): diff --git a/pykolab/setup/setup_zpush.py b/pykolab/setup/setup_zpush.py index c236f7b..b1ba921 100644 --- a/pykolab/setup/setup_zpush.py +++ b/pykolab/setup/setup_zpush.py @@ -89,7 +89,7 @@ def execute(*args, **kw): time.sleep(2) if os.path.isfile('/bin/systemctl'): - subprocess.call(['/bin/systemctl', 'restart', 'httpd.target']) + subprocess.call(['/bin/systemctl', 'restart', 'httpd.service']) elif os.path.isfile('/sbin/service'): subprocess.call(['/sbin/service', 'httpd', 'restart']) elif os.path.isfile('/usr/sbin/service'): @@ -98,7 +98,7 @@ def execute(*args, **kw): log.error(_("Could not start the webserver server service.")) if os.path.isfile('/bin/systemctl'): - subprocess.call(['/bin/systemctl', 'enable', 'httpd.target']) + subprocess.call(['/bin/systemctl', 'enable', 'httpd.service']) elif os.path.isfile('/sbin/chkconfig'): subprocess.call(['/sbin/chkconfig', 'httpd', 'on']) elif os.path.isfile('/usr/sbin/update-rc.d'): -- 1.7.10.4 From 3bc79f80db48ea69db43b7772dd3accbc428fd8e Mon Sep 17 00:00:00 2001 From: Johannes Graumann <[email protected]> Date: Tue, 2 Oct 2012 07:00:15 +0300 Subject: [PATCH 13/16] Demianize amavis configuration directory from '/etc/amavisd' to '/etc/amavis'; --- pykolab/setup/setup_mta.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pykolab/setup/setup_mta.py b/pykolab/setup/setup_mta.py index 36e6750..b4afbee 100644 --- a/pykolab/setup/setup_mta.py +++ b/pykolab/setup/setup_mta.py @@ -279,7 +279,10 @@ result_attribute = mail fp.close() t = Template(template_definition, searchList=[amavisd_settings]) - fp = open('/etc/amavisd/amavisd.conf', 'w') + if os.path.isdir('/etc/amavisd'): + fp = open('/etc/amavisd/amavisd.conf', 'w') + elif os.path.isdir('/etc/amavis'): + fp = open('/etc/amavis/amavisd.conf', 'w') fp.write(t.__str__()) fp.close() -- 1.7.10.4 From 3ea61f69e4bb9a36f02eaaa9c9cfead07f96fc76 Mon Sep 17 00:00:00 2001 From: Johannes Graumann <[email protected]> Date: Tue, 2 Oct 2012 15:28:15 +0300 Subject: [PATCH 14/16] Debianize with respect to php.ini location; --- pykolab/setup/setup_php.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/pykolab/setup/setup_php.py b/pykolab/setup/setup_php.py index 1d06b74..9baa679 100644 --- a/pykolab/setup/setup_php.py +++ b/pykolab/setup/setup_php.py @@ -68,14 +68,18 @@ def execute(*args, **kw): ) myaugeas = Augeas() - - setting_base = '/files/etc/php.ini/' - + + if os.path.isfile('/etc/php.ini/'): + setting_base = '/files/etc/php.ini/' + elif os.path.isfile('/etc/php5/apache2/php.ini/'): + setting_base = '/files/etc/php5/apache2/php.ini/' + else: + log.error(_("No usable 'php.ini' found.")) setting = os.path.join(setting_base, 'Date', 'date.timezone') current_value = myaugeas.get(setting) if current_value == None: - insert_paths = myaugeas.match('/files/etc/php.ini/Date/*') + insert_paths = myaugeas.match(setting_base + 'Date/*') insert_path = insert_paths[(len(insert_paths)-1)] myaugeas.insert(insert_path, 'date.timezone', False) -- 1.7.10.4 From 89dc6945332cdb12fce480426adb19c48c2b59bd Mon Sep 17 00:00:00 2001 From: Johannes Graumann <[email protected]> Date: Tue, 2 Oct 2012 15:37:51 +0300 Subject: [PATCH 15/16] (Fix) debianization - 'mysqld' service is called 'mysql' in debian; --- pykolab/setup/setup_mysql.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pykolab/setup/setup_mysql.py b/pykolab/setup/setup_mysql.py index df9b1ac..e4940a0 100644 --- a/pykolab/setup/setup_mysql.py +++ b/pykolab/setup/setup_mysql.py @@ -44,7 +44,7 @@ def execute(*args, **kw): elif os.path.isfile('/sbin/service'): subprocess.call(['/sbin/service', 'mysqld', 'restart']) elif os.path.isfile('/usr/sbin/service'): - subprocess.call(['/usr/sbin/service','mysqld','restart']) + subprocess.call(['/usr/sbin/service','mysql','restart']) else: log.error(_("Could not start the MySQL database service.")) @@ -53,7 +53,7 @@ def execute(*args, **kw): elif os.path.isfile('/sbin/chkconfig'): subprocess.call(['/sbin/chkconfig', 'mysqld', 'on']) elif os.path.isfile('/usr/sbin/update-rc.d'): - subprocess.call(['/usr/sbin/update-rc.d', 'mysqld', 'defaults']) + subprocess.call(['/usr/sbin/update-rc.d', 'mysql', 'defaults']) else: log.error(_("Could not configure to start on boot, the " + \ "MySQL database service.")) -- 1.7.10.4 From 72d439760e59cfc80a7f6fd7a82a3941782b4578 Mon Sep 17 00:00:00 2001 From: Johannes Graumann <[email protected]> Date: Tue, 2 Oct 2012 15:59:21 +0300 Subject: [PATCH 16/16] Debianization - debianize file locations; --- pykolab/setup/setup_roundcube.py | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/pykolab/setup/setup_roundcube.py b/pykolab/setup/setup_roundcube.py index 4a5b394..e242e04 100644 --- a/pykolab/setup/setup_roundcube.py +++ b/pykolab/setup/setup_roundcube.py @@ -119,14 +119,13 @@ def execute(*args, **kw): t = Template(template_definition, searchList=[rc_settings]) log.debug( - _("Successfully compiled template %r, writing out to %r") % ( - template_file, - '/etc/roundcubemail/%s' % (want_file) - ), + _("Successfully compiled template %r, writing out to %r") % (template_file, want_file), level=8 ) - - fp = open('/etc/roundcubemail/%s' % (want_file), 'w') + if os.path.isdir('/etc/roundcubemail'): + fp = open('/etc/roundcubemail/%s' % (want_file), 'w') + elif os.path.isdir('/etc/roundcube'): + fp = open('/etc/roundcube/%s' % (want_file), 'w') fp.write(t.__str__()) fp.close() @@ -143,14 +142,18 @@ def execute(*args, **kw): if not schema_filepath in schema_files: schema_files.append(schema_filepath) - for root, directories, filenames in os.walk('/usr/share/roundcubemail/plugins/calendar/drivers/kolab/'): + if os.path.isdir('/usr/share/roundcubemail'): + rcpath = '/usr/share/roundcubemail/' + elif os.path.isdir('/usr/share/roundcube'): + rcpath = '/usr/share/roundcube/' + for root, directories, filenames in os.walk(rcpath + 'plugins/calendar/drivers/kolab/'): for filename in filenames: if filename.startswith('mysql') and filename.endswith('.sql'): schema_filepath = os.path.join(root,filename) if not schema_filepath in schema_files: schema_files.append(schema_filepath) - for root, directories, filenames in os.walk('/usr/share/roundcubemail/plugins/libkolab/'): + for root, directories, filenames in os.walk(rcpath + 'plugins/libkolab/'): for filename in filenames: if filename.startswith('mysql') and filename.endswith('.sql'): schema_filepath = os.path.join(root,filename) -- 1.7.10.4
setup-kolab.log
(text/x-log, 92.7 KB)
2012-10-02 12:58:24,733 pykolab.setup DEBUG [6082]: No component selected, continuing for all components
2012-10-02 12:58:24,745 pykolab.conf DEBUG [6082]: Setting kolab_default_locale to 'en_US' (from defaults)
2012-10-02 12:58:24,745 pykolab.conf DEBUG [6082]: Setting mail_attributes to ['mail', 'alias'] (from defaults)
2012-10-02 12:58:24,745 pykolab.conf DEBUG [6082]: Setting mailserver_attribute to 'mailhost' (from defaults)
2012-10-02 12:58:24,745 pykolab.conf DEBUG [6082]: Setting loglevel to 50 (from defaults)
2012-10-02 12:58:24,746 pykolab.conf DEBUG [6082]: Setting imap_virtual_domains to 'userid' (from defaults)
2012-10-02 12:58:24,746 pykolab.conf DEBUG [6082]: Setting cyrus_annotations_retry_interval to 1 (from defaults)
2012-10-02 12:58:24,746 pykolab.conf DEBUG [6082]: Setting ldap_unique_attribute to 'nsuniqueid' (from defaults)
2012-10-02 12:58:24,746 pykolab.conf DEBUG [6082]: Setting address_search_attrs to ['mail', 'alias'] (from defaults)
2012-10-02 12:58:24,746 pykolab.conf DEBUG [6082]: Setting config_file to '/etc/kolab/kolab.conf' (from the default values for CLI options)
2012-10-02 12:58:24,746 pykolab.conf DEBUG [6082]: Setting loglevel to 'CRITICAL' (from the default values for CLI options)
2012-10-02 12:58:24,747 pykolab.conf DEBUG [6082]: Setting answer_yes to False (from the default values for CLI options)
2012-10-02 12:58:24,747 pykolab.conf DEBUG [6082]: Setting quiet to False (from the default values for CLI options)
2012-10-02 12:58:24,747 pykolab.conf DEBUG [6082]: Setting fqdn to 'kolab.<MYDOMAIN>.org' (from the default values for CLI options)
2012-10-02 12:58:24,747 pykolab.conf DEBUG [6082]: Setting anonymous to False (from the default values for CLI options)
2012-10-02 12:58:24,747 pykolab.conf DEBUG [6082]: Setting debuglevel to 0 (from the default values for CLI options)
2012-10-02 12:58:24,747 pykolab.conf DEBUG [6082]: Setting timezone to None (from the default values for CLI options)
2012-10-02 12:58:24,747 pykolab.conf DEBUG [6082]: Setting logfile to '/var/log/kolab/pykolab.log' (from the default values for CLI options)
2012-10-02 12:58:24,748 pykolab.conf DEBUG [6082]: Setting options from configuration file
2012-10-02 12:58:24,748 pykolab.conf DEBUG [6082]: Reading configuration file /etc/kolab/kolab.conf
2012-10-02 12:58:24,750 pykolab.conf DEBUG [6082]: Setting config_file to '/etc/kolab/kolab.conf' (from CLI, verified)
2012-10-02 12:58:24,750 pykolab.conf DEBUG [6082]: Setting loglevel to 'CRITICAL' (from CLI, not checked)
2012-10-02 12:58:24,750 pykolab.conf DEBUG [6082]: Setting answer_yes to False (from CLI, not checked)
2012-10-02 12:58:24,751 pykolab.conf DEBUG [6082]: Setting quiet to False (from CLI, not checked)
2012-10-02 12:58:24,751 pykolab.conf DEBUG [6082]: Setting fqdn to 'kolab.<MYDOMAIN>.org' (from CLI, not checked)
2012-10-02 12:58:24,751 pykolab.conf DEBUG [6082]: Setting anonymous to False (from CLI, not checked)
2012-10-02 12:58:24,751 pykolab.conf DEBUG [6082]: Setting debuglevel to 9 (from CLI, verified)
2012-10-02 12:58:24,751 pykolab.conf DEBUG [6082]: Setting timezone to 'Asia/<MYPLACE>' (from CLI, not checked)
2012-10-02 12:58:24,751 pykolab.conf DEBUG [6082]: Setting logfile to '/var/log/kolab/pykolab.log' (from CLI, not checked)
User [dirsrv]: Group [dirsrv]: <MYDOMAIN>.org [Y/n]: dc=<MYDOMAIN>,dc=org [Y/n]: 2012-10-02 12:58:35,925 pykolab.setup INFO Setting up 389 Directory Server
2012-10-02 12:58:57,151 pykolab.setup DEBUG [6082]: Setup DS stdout:
2012-10-02 12:58:57,151 pykolab.setup DEBUG [6082]: Creating directory server . . .
Your new DS instance 'kolab' was successfully created.
Creating the configuration directory server . . .
Beginning Admin Server reconfiguration . . .
Creating Admin Server files and directories . . .
Updating adm.conf . . .
Updating admpw . . .
Registering admin server with the configuration directory server . . .
Updating adm.conf with information from configuration directory server . . .
Updating the configuration for the httpd engine . . .
Starting admin server . . .
output: /usr/sbin/start-ds-admin: 104: /usr/sbin/start-ds-admin: /usr/sbin/apache2: not found
output: Server failed to start !!! Please check errors log for problems
Could not start the admin server. Error: 256
Could not reconfigure the admin server.
Exiting . . .
Log file is '/tmp/setup6wGFDz.log'
2012-10-02 12:58:57,152 pykolab.setup DEBUG [6082]: Setup DS stderr:
2012-10-02 12:58:57,152 pykolab.setup DEBUG [6082]: +Socket version 2.002
+found for hostname kolab.<MYDOMAIN>.org
+ipaddr=10.10.10.4
+hostname kolab.<MYDOMAIN>.org resolves correctly
+makePaths: created directory /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab mode 770 user dirsrv group dirsrv
+makePaths: created directory /etc/dirsrv/slapd-kolab mode 770 user dirsrv group dirsrv
+makePaths: created directory /etc/dirsrv/slapd-kolab/schema mode 770 user dirsrv group dirsrv
+makePaths: created directory /var/log/dirsrv/slapd-kolab mode 770 user dirsrv group dirsrv
+makePaths: created directory /var/lock/dirsrv/slapd-kolab mode 770 user dirsrv group dirsrv
+makePaths: created directory /var/lib/dirsrv/slapd-kolab mode 770 user dirsrv group dirsrv
+makePaths: created directory /var/lib/dirsrv/slapd-kolab/db mode 770 user dirsrv group dirsrv
+makePaths: created directory /var/lib/dirsrv/slapd-kolab/ldif mode 770 user dirsrv group dirsrv
+makePaths: created directory /var/lib/dirsrv/slapd-kolab/bak mode 770 user dirsrv group dirsrv
+changeOwnerMode: changed mode of /var/run/dirsrv to 770
+changeOwnerMode: changed group ownership of /var/run/dirsrv to group 106
+changeOwnerMode: changed mode of /usr/lib/x86_64-linux-gnu/dirsrv to 775
+changeOwnerMode: changed group ownership of /usr/lib/x86_64-linux-gnu/dirsrv to group 106
+changeOwnerMode: changed mode of /etc/dirsrv to 775
+changeOwnerMode: changed group ownership of /etc/dirsrv to group 106
+Processing /usr/share/dirsrv/data/template-dse.ldif ...
+Entry cn=config is added
+Entry cn=features,cn=config is added
+Entry oid=1.3.6.1.4.1.42.2.27.9.5.8,cn=features,cn=config is added
+Entry cn=plugins,cn=config is added
+Entry cn=Password Storage Schemes,cn=plugins,cn=config is added
+Entry cn=SSHA,cn=Password Storage Schemes,cn=plugins,cn=config is added
+Entry cn=SSHA256,cn=Password Storage Schemes,cn=plugins,cn=config is added
+Entry cn=SSHA384,cn=Password Storage Schemes,cn=plugins,cn=config is added
+Entry cn=SSHA512,cn=Password Storage Schemes,cn=plugins,cn=config is added
+Entry cn=SHA,cn=Password Storage Schemes,cn=plugins,cn=config is added
+Entry cn=SHA256,cn=Password Storage Schemes,cn=plugins,cn=config is added
+Entry cn=SHA384,cn=Password Storage Schemes,cn=plugins,cn=config is added
+Entry cn=SHA512,cn=Password Storage Schemes,cn=plugins,cn=config is added
+Entry cn=CRYPT,cn=Password Storage Schemes,cn=plugins,cn=config is added
+Entry cn=MD5,cn=Password Storage Schemes,cn=plugins,cn=config is added
+Entry cn=SMD5,cn=Password Storage Schemes,cn=plugins,cn=config is added
+Entry cn=CLEAR,cn=Password Storage Schemes,cn=plugins,cn=config is added
+Entry cn=NS-MTA-MD5,cn=Password Storage Schemes,cn=plugins,cn=config is added
+Entry cn=DES,cn=Password Storage Schemes,cn=plugins,cn=config is added
+Entry cn=Syntax Validation Task,cn=plugins,cn=config is added
+Entry cn=Case Ignore String Syntax,cn=plugins,cn=config is added
+Entry cn=Case Exact String Syntax,cn=plugins,cn=config is added
+Entry cn=Schema Reload,cn=plugins,cn=config is added
+Entry cn=Space Insensitive String Syntax,cn=plugins,cn=config is added
+Entry cn=Binary Syntax,cn=plugins,cn=config is added
+Entry cn=Bit String Syntax,cn=plugins,cn=config is added
+Entry cn=Octet String Syntax,cn=plugins,cn=config is added
+Entry cn=Boolean Syntax,cn=plugins,cn=config is added
+Entry cn=Generalized Time Syntax,cn=plugins,cn=config is added
+Entry cn=Telephone Syntax,cn=plugins,cn=config is added
+Entry cn=Telex Number Syntax,cn=plugins,cn=config is added
+Entry cn=Teletex Terminal Identifier Syntax,cn=plugins,cn=config is added
+Entry cn=Enhanced Guide Syntax,cn=plugins,cn=config is added
+Entry cn=Facsimile Telephone Number Syntax,cn=plugins,cn=config is added
+Entry cn=Fax Syntax,cn=plugins,cn=config is added
+Entry cn=Guide Syntax,cn=plugins,cn=config is added
+Entry cn=Delivery Method Syntax,cn=plugins,cn=config is added
+Entry cn=Integer Syntax,cn=plugins,cn=config is added
+Entry cn=Distinguished Name Syntax,cn=plugins,cn=config is added
+Entry cn=Name And Optional UID Syntax,cn=plugins,cn=config is added
+Entry cn=OID Syntax,cn=plugins,cn=config is added
+Entry cn=URI Syntax,cn=plugins,cn=config is added
+Entry cn=JPEG Syntax,cn=plugins,cn=config is added
+Entry cn=Country String Syntax,cn=plugins,cn=config is added
+Entry cn=Postal Address Syntax,cn=plugins,cn=config is added
+Entry cn=Numeric String Syntax,cn=plugins,cn=config is added
+Entry cn=Printable String Syntax,cn=plugins,cn=config is added
+Entry cn=State Change Plugin,cn=plugins,cn=config is added
+Entry cn=Roles Plugin,cn=plugins,cn=config is added
+Entry cn=ACL Plugin,cn=plugins,cn=config is added
+Entry cn=ACL preoperation,cn=plugins,cn=config is added
+Entry cn=MemberOf Plugin,cn=plugins,cn=config is added
+Entry cn=Retro Changelog Plugin,cn=plugins,cn=config is added
+Entry cn=Class of Service,cn=plugins,cn=config is added
+Entry cn=Views,cn=plugins,cn=config is added
+Entry cn=referential integrity postoperation,cn=plugins,cn=config is added
+Entry cn=attribute uniqueness,cn=plugins,cn=config is added
+Entry cn=7-bit check,cn=plugins,cn=config is added
+Entry cn=Account Usability Plugin,cn=plugins,cn=config is added
+Entry cn=Auto Membership Plugin,cn=plugins,cn=config is added
+Entry cn=deref,cn=plugins,cn=config is added
+Entry cn=Internationalization Plugin,cn=plugins,cn=config is added
+Entry cn=HTTP Client,cn=plugins,cn=config is added
+Entry cn=Linked Attributes,cn=plugins,cn=config is added
+Entry cn=Managed Entries,cn=plugins,cn=config is added
+Entry cn=Pass Through Authentication,cn=plugins,cn=config is added
+Entry cn=USN,cn=plugins,cn=config is added
+Entry cn=RootDN Access Control,cn=plugins,cn=config is added
+Entry cn=ldbm database,cn=plugins,cn=config is added
+Entry cn=config,cn=ldbm database,cn=plugins,cn=config is added
+Entry cn=default indexes, cn=config,cn=ldbm database,cn=plugins,cn=config is added
+Entry cn=aci,cn=default indexes, cn=config,cn=ldbm database,cn=plugins,cn=config is added
+Entry cn=cn,cn=default indexes, cn=config,cn=ldbm database,cn=plugins,cn=config is added
+Entry cn=entryusn,cn=default indexes, cn=config,cn=ldbm database,cn=plugins,cn=config is added
+Entry cn=givenName,cn=default indexes, cn=config,cn=ldbm database,cn=plugins,cn=config is added
+Entry cn=mail,cn=default indexes, cn=config,cn=ldbm database,cn=plugins,cn=config is added
+Entry cn=mailAlternateAddress,cn=default indexes, cn=config,cn=ldbm database,cn=plugins,cn=config is added
+Entry cn=mailHost,cn=default indexes, cn=config,cn=ldbm database,cn=plugins,cn=config is added
+Entry cn=member,cn=default indexes, cn=config,cn=ldbm database,cn=plugins,cn=config is added
+Entry cn=memberOf,cn=default indexes, cn=config,cn=ldbm database,cn=plugins,cn=config is added
+Entry cn=nsUniqueId,cn=default indexes, cn=config,cn=ldbm database,cn=plugins,cn=config is added
+Entry cn=numsubordinates,cn=default indexes, cn=config,cn=ldbm database,cn=plugins,cn=config is added
+Entry cn=objectclass,cn=default indexes, cn=config,cn=ldbm database,cn=plugins,cn=config is added
+Entry cn=owner,cn=default indexes, cn=config,cn=ldbm database,cn=plugins,cn=config is added
+Entry cn=parentid,cn=default indexes, cn=config,cn=ldbm database,cn=plugins,cn=config is added
+Entry cn=seeAlso,cn=default indexes, cn=config,cn=ldbm database,cn=plugins,cn=config is added
+Entry cn=sn,cn=default indexes, cn=config,cn=ldbm database,cn=plugins,cn=config is added
+Entry cn=telephoneNumber,cn=default indexes, cn=config,cn=ldbm database,cn=plugins,cn=config is added
+Entry cn=uid,cn=default indexes, cn=config,cn=ldbm database,cn=plugins,cn=config is added
+Entry cn=ntUniqueId,cn=default indexes, cn=config,cn=ldbm database,cn=plugins,cn=config is added
+Entry cn=ntUserDomainId,cn=default indexes, cn=config,cn=ldbm database,cn=plugins,cn=config is added
+Entry cn=uniquemember,cn=default indexes, cn=config,cn=ldbm database,cn=plugins,cn=config is added
+Entry cn=monitor, cn=ldbm database, cn=plugins, cn=config is added
+Entry cn=database, cn=monitor, cn=ldbm database, cn=plugins, cn=config is added
+Entry cn=chaining database,cn=plugins,cn=config is added
+Entry cn=config,cn=chaining database,cn=plugins,cn=config is added
+Entry cn=mapping tree,cn=config is added
+Entry cn=tasks,cn=config is added
+Entry cn=Account Policy Plugin,cn=plugins,cn=config is added
+Entry cn=config,cn=Account Policy Plugin,cn=plugins,cn=config is added
+Processing /usr/share/dirsrv/data/template-suffix-db.ldif ...
+Entry cn=<MYDOMAIN>_org,cn=ldbm database,cn=plugins,cn=config is added
+Entry cn=encrypted attribute keys,cn=<MYDOMAIN>_org,cn=ldbm database,cn=plugins,cn=config is added
+Entry cn=encrypted attributes,cn=<MYDOMAIN>_org,cn=ldbm database,cn=plugins,cn=config is added
+Entry cn="dc=<MYDOMAIN>,dc=org",cn=mapping tree,cn=config is added
+Processing /usr/share/dirsrv/data/template-sasl.ldif ...
+Entry cn=sasl,cn=config is added
+Entry cn=mapping,cn=sasl,cn=config is added
+Entry cn=Kerberos uid mapping,cn=mapping,cn=sasl,cn=config is added
+Entry cn=rfc 2829 dn syntax,cn=mapping,cn=sasl,cn=config is added
+Entry cn=rfc 2829 u syntax,cn=mapping,cn=sasl,cn=config is added
+Entry cn=uid mapping,cn=mapping,cn=sasl,cn=config is added
+Processing /usr/share/dirsrv/data/template-pampta.ldif ...
+Entry cn=PAM Pass Through Auth,cn=plugins,cn=config is added
+Processing /usr/share/dirsrv/data/template-bitwise.ldif ...
+Entry cn=Bitwise Plugin,cn=plugins,cn=config is added
+Processing /usr/share/dirsrv/data/template-dnaplugin.ldif ...
+Entry cn=Distributed Numeric Assignment Plugin,cn=plugins,cn=config is added
+Processing /usr/share/dirsrv/updates/50replication-plugins.ldif ...
+Entry cn=Legacy Replication Plugin,cn=plugins,cn=config is added
+Entry cn=Multimaster Replication Plugin,cn=plugins,cn=config is added
+Processing /usr/share/dirsrv/data/90betxn-plugins.ldif ...
+changeOwnerMode: changed mode of /etc/dirsrv/slapd-kolab/dse.ldif to 660
+changeOwnerMode: changed ownership of /etc/dirsrv/slapd-kolab/dse.ldif to user 104 group 106
+changeOwnerMode: changed mode of /etc/dirsrv/slapd-kolab/dse_original.ldif to 440
+changeOwnerMode: changed ownership of /etc/dirsrv/slapd-kolab/dse_original.ldif to user 104 group 106
+changeOwnerMode: changed mode of /etc/dirsrv/slapd-kolab/certmap.conf to 440
+changeOwnerMode: changed ownership of /etc/dirsrv/slapd-kolab/certmap.conf to user 104 group 106
+changeOwnerMode: changed mode of /etc/dirsrv/slapd-kolab/slapd-collations.conf to 440
+changeOwnerMode: changed ownership of /etc/dirsrv/slapd-kolab/slapd-collations.conf to user 104 group 106
+changeOwnerMode: changed mode of /etc/default/dirsrv-kolab to 440
+changeOwnerMode: changed ownership of /etc/default/dirsrv-kolab to user 104 group 106
+changeOwnerMode: changed mode of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/bak2db to 550
+changeOwnerMode: changed ownership of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/bak2db to user 104 group 106
+changeOwnerMode: changed mode of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/bak2db.pl to 550
+changeOwnerMode: changed ownership of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/bak2db.pl to user 104 group 106
+changeOwnerMode: changed mode of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/db2bak to 550
+changeOwnerMode: changed ownership of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/db2bak to user 104 group 106
+changeOwnerMode: changed mode of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/db2bak.pl to 550
+changeOwnerMode: changed ownership of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/db2bak.pl to user 104 group 106
+changeOwnerMode: changed mode of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/db2index to 550
+changeOwnerMode: changed ownership of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/db2index to user 104 group 106
+changeOwnerMode: changed mode of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/db2index.pl to 550
+changeOwnerMode: changed ownership of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/db2index.pl to user 104 group 106
+changeOwnerMode: changed mode of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/db2ldif to 550
+changeOwnerMode: changed ownership of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/db2ldif to user 104 group 106
+changeOwnerMode: changed mode of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/db2ldif.pl to 550
+changeOwnerMode: changed ownership of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/db2ldif.pl to user 104 group 106
+changeOwnerMode: changed mode of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/dbverify to 550
+changeOwnerMode: changed ownership of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/dbverify to user 104 group 106
+changeOwnerMode: changed mode of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/dn2rdn to 550
+changeOwnerMode: changed ownership of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/dn2rdn to user 104 group 106
+changeOwnerMode: changed mode of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/fixup-linkedattrs.pl to 550
+changeOwnerMode: changed ownership of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/fixup-linkedattrs.pl to user 104 group 106
+changeOwnerMode: changed mode of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/fixup-memberof.pl to 550
+changeOwnerMode: changed ownership of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/fixup-memberof.pl to user 104 group 106
+changeOwnerMode: changed mode of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/ldif2db to 550
+changeOwnerMode: changed ownership of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/ldif2db to user 104 group 106
+changeOwnerMode: changed mode of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/ldif2db.pl to 550
+changeOwnerMode: changed ownership of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/ldif2db.pl to user 104 group 106
+changeOwnerMode: changed mode of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/ldif2ldap to 550
+changeOwnerMode: changed ownership of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/ldif2ldap to user 104 group 106
+changeOwnerMode: changed mode of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/monitor to 550
+changeOwnerMode: changed ownership of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/monitor to user 104 group 106
+changeOwnerMode: changed mode of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/ns-accountstatus.pl to 550
+changeOwnerMode: changed ownership of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/ns-accountstatus.pl to user 104 group 106
+changeOwnerMode: changed mode of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/ns-activate.pl to 550
+changeOwnerMode: changed ownership of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/ns-activate.pl to user 104 group 106
+changeOwnerMode: changed mode of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/ns-inactivate.pl to 550
+changeOwnerMode: changed ownership of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/ns-inactivate.pl to user 104 group 106
+changeOwnerMode: changed mode of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/ns-newpwpolicy.pl to 550
+changeOwnerMode: changed ownership of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/ns-newpwpolicy.pl to user 104 group 106
+changeOwnerMode: changed mode of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/restart-slapd to 550
+changeOwnerMode: changed ownership of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/restart-slapd to user 104 group 106
+changeOwnerMode: changed mode of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/restoreconfig to 550
+changeOwnerMode: changed ownership of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/restoreconfig to user 104 group 106
+changeOwnerMode: changed mode of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/saveconfig to 550
+changeOwnerMode: changed ownership of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/saveconfig to user 104 group 106
+changeOwnerMode: changed mode of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/schema-reload.pl to 550
+changeOwnerMode: changed ownership of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/schema-reload.pl to user 104 group 106
+changeOwnerMode: changed mode of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/start-slapd to 550
+changeOwnerMode: changed ownership of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/start-slapd to user 104 group 106
+changeOwnerMode: changed mode of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/stop-slapd to 550
+changeOwnerMode: changed ownership of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/stop-slapd to user 104 group 106
+changeOwnerMode: changed mode of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/suffix2instance to 550
+changeOwnerMode: changed ownership of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/suffix2instance to user 104 group 106
+changeOwnerMode: changed mode of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/syntax-validate.pl to 550
+changeOwnerMode: changed ownership of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/syntax-validate.pl to user 104 group 106
+changeOwnerMode: changed mode of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/upgradednformat to 550
+changeOwnerMode: changed ownership of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/upgradednformat to user 104 group 106
+changeOwnerMode: changed mode of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/usn-tombstone-cleanup.pl to 550
+changeOwnerMode: changed ownership of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/usn-tombstone-cleanup.pl to user 104 group 106
+changeOwnerMode: changed mode of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/verify-db.pl to 550
+changeOwnerMode: changed ownership of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/verify-db.pl to user 104 group 106
+changeOwnerMode: changed mode of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/vlvindex to 550
+changeOwnerMode: changed ownership of /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/vlvindex to user 104 group 106
+changeOwnerMode: changed mode of /etc/dirsrv/slapd-kolab/schema/00core.ldif to 440
+changeOwnerMode: changed ownership of /etc/dirsrv/slapd-kolab/schema/00core.ldif to user 104 group 106
+changeOwnerMode: changed mode of /etc/dirsrv/slapd-kolab/schema/01core389.ldif to 440
+changeOwnerMode: changed ownership of /etc/dirsrv/slapd-kolab/schema/01core389.ldif to user 104 group 106
+changeOwnerMode: changed mode of /etc/dirsrv/slapd-kolab/schema/02common.ldif to 440
+changeOwnerMode: changed ownership of /etc/dirsrv/slapd-kolab/schema/02common.ldif to user 104 group 106
+changeOwnerMode: changed mode of /etc/dirsrv/slapd-kolab/schema/05rfc2927.ldif to 440
+changeOwnerMode: changed ownership of /etc/dirsrv/slapd-kolab/schema/05rfc2927.ldif to user 104 group 106
+changeOwnerMode: changed mode of /etc/dirsrv/slapd-kolab/schema/05rfc4523.ldif to 440
+changeOwnerMode: changed ownership of /etc/dirsrv/slapd-kolab/schema/05rfc4523.ldif to user 104 group 106
+changeOwnerMode: changed mode of /etc/dirsrv/slapd-kolab/schema/05rfc4524.ldif to 440
+changeOwnerMode: changed ownership of /etc/dirsrv/slapd-kolab/schema/05rfc4524.ldif to user 104 group 106
+changeOwnerMode: changed mode of /etc/dirsrv/slapd-kolab/schema/06inetorgperson.ldif to 440
+changeOwnerMode: changed ownership of /etc/dirsrv/slapd-kolab/schema/06inetorgperson.ldif to user 104 group 106
+changeOwnerMode: changed mode of /etc/dirsrv/slapd-kolab/schema/10automember-plugin.ldif to 440
+changeOwnerMode: changed ownership of /etc/dirsrv/slapd-kolab/schema/10automember-plugin.ldif to user 104 group 106
+changeOwnerMode: changed mode of /etc/dirsrv/slapd-kolab/schema/10dna-plugin.ldif to 440
+changeOwnerMode: changed ownership of /etc/dirsrv/slapd-kolab/schema/10dna-plugin.ldif to user 104 group 106
+changeOwnerMode: changed mode of /etc/dirsrv/slapd-kolab/schema/10mep-plugin.ldif to 440
+changeOwnerMode: changed ownership of /etc/dirsrv/slapd-kolab/schema/10mep-plugin.ldif to user 104 group 106
+changeOwnerMode: changed mode of /etc/dirsrv/slapd-kolab/schema/10rfc2307.ldif to 440
+changeOwnerMode: changed ownership of /etc/dirsrv/slapd-kolab/schema/10rfc2307.ldif to user 104 group 106
+changeOwnerMode: changed mode of /etc/dirsrv/slapd-kolab/schema/20subscriber.ldif to 440
+changeOwnerMode: changed ownership of /etc/dirsrv/slapd-kolab/schema/20subscriber.ldif to user 104 group 106
+changeOwnerMode: changed mode of /etc/dirsrv/slapd-kolab/schema/25java-object.ldif to 440
+changeOwnerMode: changed ownership of /etc/dirsrv/slapd-kolab/schema/25java-object.ldif to user 104 group 106
+changeOwnerMode: changed mode of /etc/dirsrv/slapd-kolab/schema/28pilot.ldif to 440
+changeOwnerMode: changed ownership of /etc/dirsrv/slapd-kolab/schema/28pilot.ldif to user 104 group 106
+changeOwnerMode: changed mode of /etc/dirsrv/slapd-kolab/schema/30ns-common.ldif to 440
+changeOwnerMode: changed ownership of /etc/dirsrv/slapd-kolab/schema/30ns-common.ldif to user 104 group 106
+changeOwnerMode: changed mode of /etc/dirsrv/slapd-kolab/schema/50ns-admin.ldif to 440
+changeOwnerMode: changed ownership of /etc/dirsrv/slapd-kolab/schema/50ns-admin.ldif to user 104 group 106
+changeOwnerMode: changed mode of /etc/dirsrv/slapd-kolab/schema/50ns-certificate.ldif to 440
+changeOwnerMode: changed ownership of /etc/dirsrv/slapd-kolab/schema/50ns-certificate.ldif to user 104 group 106
+changeOwnerMode: changed mode of /etc/dirsrv/slapd-kolab/schema/50ns-directory.ldif to 440
+changeOwnerMode: changed ownership of /etc/dirsrv/slapd-kolab/schema/50ns-directory.ldif to user 104 group 106
+changeOwnerMode: changed mode of /etc/dirsrv/slapd-kolab/schema/50ns-mail.ldif to 440
+changeOwnerMode: changed ownership of /etc/dirsrv/slapd-kolab/schema/50ns-mail.ldif to user 104 group 106
+changeOwnerMode: changed mode of /etc/dirsrv/slapd-kolab/schema/50ns-value.ldif to 440
+changeOwnerMode: changed ownership of /etc/dirsrv/slapd-kolab/schema/50ns-value.ldif to user 104 group 106
+changeOwnerMode: changed mode of /etc/dirsrv/slapd-kolab/schema/50ns-web.ldif to 440
+changeOwnerMode: changed ownership of /etc/dirsrv/slapd-kolab/schema/50ns-web.ldif to user 104 group 106
+changeOwnerMode: changed mode of /etc/dirsrv/slapd-kolab/schema/60acctpolicy.ldif to 440
+changeOwnerMode: changed ownership of /etc/dirsrv/slapd-kolab/schema/60acctpolicy.ldif to user 104 group 106
+changeOwnerMode: changed mode of /etc/dirsrv/slapd-kolab/schema/60autofs.ldif to 440
+changeOwnerMode: changed ownership of /etc/dirsrv/slapd-kolab/schema/60autofs.ldif to user 104 group 106
+changeOwnerMode: changed mode of /etc/dirsrv/slapd-kolab/schema/60eduperson.ldif to 440
+changeOwnerMode: changed ownership of /etc/dirsrv/slapd-kolab/schema/60eduperson.ldif to user 104 group 106
+changeOwnerMode: changed mode of /etc/dirsrv/slapd-kolab/schema/60mozilla.ldif to 440
+changeOwnerMode: changed ownership of /etc/dirsrv/slapd-kolab/schema/60mozilla.ldif to user 104 group 106
+changeOwnerMode: changed mode of /etc/dirsrv/slapd-kolab/schema/60nss-ldap.ldif to 440
+changeOwnerMode: changed ownership of /etc/dirsrv/slapd-kolab/schema/60nss-ldap.ldif to user 104 group 106
+changeOwnerMode: changed mode of /etc/dirsrv/slapd-kolab/schema/60pam-plugin.ldif to 440
+changeOwnerMode: changed ownership of /etc/dirsrv/slapd-kolab/schema/60pam-plugin.ldif to user 104 group 106
+changeOwnerMode: changed mode of /etc/dirsrv/slapd-kolab/schema/60pureftpd.ldif to 440
+changeOwnerMode: changed ownership of /etc/dirsrv/slapd-kolab/schema/60pureftpd.ldif to user 104 group 106
+changeOwnerMode: changed mode of /etc/dirsrv/slapd-kolab/schema/60rfc2739.ldif to 440
+changeOwnerMode: changed ownership of /etc/dirsrv/slapd-kolab/schema/60rfc2739.ldif to user 104 group 106
+changeOwnerMode: changed mode of /etc/dirsrv/slapd-kolab/schema/60rfc3712.ldif to 440
+changeOwnerMode: changed ownership of /etc/dirsrv/slapd-kolab/schema/60rfc3712.ldif to user 104 group 106
+changeOwnerMode: changed mode of /etc/dirsrv/slapd-kolab/schema/60sabayon.ldif to 440
+changeOwnerMode: changed ownership of /etc/dirsrv/slapd-kolab/schema/60sabayon.ldif to user 104 group 106
+changeOwnerMode: changed mode of /etc/dirsrv/slapd-kolab/schema/60sudo.ldif to 440
+changeOwnerMode: changed ownership of /etc/dirsrv/slapd-kolab/schema/60sudo.ldif to user 104 group 106
+changeOwnerMode: changed mode of /etc/dirsrv/slapd-kolab/schema/60trust.ldif to 440
+changeOwnerMode: changed ownership of /etc/dirsrv/slapd-kolab/schema/60trust.ldif to user 104 group 106
+changeOwnerMode: changed mode of /etc/dirsrv/slapd-kolab/schema/99user.ldif to 660
+changeOwnerMode: changed ownership of /etc/dirsrv/slapd-kolab/schema/99user.ldif to user 104 group 106
+Processing /usr/share/dirsrv/data/template-domain.ldif ...
+Entry dc=<MYDOMAIN>,dc=org is added
+Processing /usr/share/dirsrv/data/template-baseacis.ldif ...
+Processing /usr/share/dirsrv/data/template.ldif ...
+Entry cn=Directory Administrators, dc=<MYDOMAIN>,dc=org is added
+Entry ou=Groups, dc=<MYDOMAIN>,dc=org is added
+Entry ou=People, dc=<MYDOMAIN>,dc=org is added
+Entry ou=Special Users,dc=<MYDOMAIN>,dc=org is added
+Entry cn=Accounting Managers,ou=groups,dc=<MYDOMAIN>,dc=org is added
+Entry cn=HR Managers,ou=groups,dc=<MYDOMAIN>,dc=org is added
+Entry cn=QA Managers,ou=groups,dc=<MYDOMAIN>,dc=org is added
+Entry cn=PD Managers,ou=groups,dc=<MYDOMAIN>,dc=org is added
+changeOwnerMode: changed mode of /tmp/ldiffjwBdK.ldif to 440
+changeOwnerMode: changed ownership of /tmp/ldiffjwBdK.ldif to user 104 group 106
+importing data ...
[02/Oct/2012:12:58:36 +0000] - WARNING: Import is running with nsslapd-db-private-import-mem on; No other process is allowed to access the database
[02/Oct/2012:12:58:36 +0000] - check_and_set_import_cache: pagesize: 4096, pages: 1007173, procpages: 48653
[02/Oct/2012:12:58:36 +0000] - Import allocates 1611476KB import cache.
[02/Oct/2012:12:58:36 +0000] - import <MYDOMAIN>_org: Beginning import job...
[02/Oct/2012:12:58:36 +0000] - import <MYDOMAIN>_org: Index buffering enabled with bucket size 100
[02/Oct/2012:12:58:37 +0000] - import <MYDOMAIN>_org: Processing file "/tmp/ldiffjwBdK.ldif"
[02/Oct/2012:12:58:37 +0000] - import <MYDOMAIN>_org: Finished scanning file "/tmp/ldiffjwBdK.ldif" (9 entries)
[02/Oct/2012:12:58:37 +0000] - import <MYDOMAIN>_org: Workers finished; cleaning up...
[02/Oct/2012:12:58:38 +0000] - import <MYDOMAIN>_org: Workers cleaned up.
[02/Oct/2012:12:58:38 +0000] - import <MYDOMAIN>_org: Cleaning up producer thread...
[02/Oct/2012:12:58:38 +0000] - import <MYDOMAIN>_org: Indexing complete. Post-processing...
[02/Oct/2012:12:58:38 +0000] - import <MYDOMAIN>_org: Generating numSubordinates complete.
[02/Oct/2012:12:58:38 +0000] - import <MYDOMAIN>_org: Flushing caches...
[02/Oct/2012:12:58:38 +0000] - import <MYDOMAIN>_org: Closing files...
[02/Oct/2012:12:58:38 +0000] - All database threads now stopped
[02/Oct/2012:12:58:38 +0000] - import <MYDOMAIN>_org: Import complete. Processed 9 entries in 2 seconds. (4.50 entries/sec)
+Starting the server: /usr/lib/x86_64-linux-gnu/dirsrv/slapd-kolab/start-slapd
+Started the server: code 0
++ 389-Directory/1.2.11.7 B2012.250.1648
+ kolab.<MYDOMAIN>.org:389 (/etc/dirsrv/slapd-kolab)
+
+[02/Oct/2012:12:58:36 +0000] - WARNING: Import is running with nsslapd-db-private-import-mem on; No other process is allowed to access the database
+[02/Oct/2012:12:58:36 +0000] - check_and_set_import_cache: pagesize: 4096, pages: 1007173, procpages: 48653
+[02/Oct/2012:12:58:36 +0000] - Import allocates 1611476KB import cache.
+[02/Oct/2012:12:58:36 +0000] - import <MYDOMAIN>_org: Beginning import job...
+[02/Oct/2012:12:58:36 +0000] - import <MYDOMAIN>_org: Index buffering enabled with bucket size 100
+[02/Oct/2012:12:58:37 +0000] - import <MYDOMAIN>_org: Processing file "/tmp/ldiffjwBdK.ldif"
+[02/Oct/2012:12:58:37 +0000] - import <MYDOMAIN>_org: Finished scanning file "/tmp/ldiffjwBdK.ldif" (9 entries)
+[02/Oct/2012:12:58:37 +0000] - import <MYDOMAIN>_org: Workers finished; cleaning up...
+[02/Oct/2012:12:58:38 +0000] - import <MYDOMAIN>_org: Workers cleaned up.
+[02/Oct/2012:12:58:38 +0000] - import <MYDOMAIN>_org: Cleaning up producer thread...
+[02/Oct/2012:12:58:38 +0000] - import <MYDOMAIN>_org: Indexing complete. Post-processing...
+[02/Oct/2012:12:58:38 +0000] - import <MYDOMAIN>_org: Generating numSubordinates complete.
+[02/Oct/2012:12:58:38 +0000] - import <MYDOMAIN>_org: Flushing caches...
+[02/Oct/2012:12:58:38 +0000] - import <MYDOMAIN>_org: Closing files...
+[02/Oct/2012:12:58:38 +0000] - All database threads now stopped
+[02/Oct/2012:12:58:38 +0000] - import <MYDOMAIN>_org: Import complete. Processed 9 entries in 2 seconds. (4.50 entries/sec)
+[02/Oct/2012:12:58:38 +0000] - 389-Directory/1.2.11.7 B2012.250.1648 starting up
+[02/Oct/2012:12:58:38 +0000] - I'm resizing my cache now...cache was 1650151424 and is now 8000000
+[02/Oct/2012:12:58:39 +0000] - slapd started. Listening on All Interfaces port 389 for LDAP requests
+Your new directory server has been started.
+Processing /usr/share/dirsrv/data/01nsroot.ldif.tmpl ...
+Entry o=NetscapeRoot is added
+Entry ou=TopologyManagement,o=NetscapeRoot is added
+Entry ou=Groups,ou=TopologyManagement,o=NetscapeRoot is added
+Entry ou=Administrators,ou=TopologyManagement,o=NetscapeRoot is added
+Entry cn=Configuration Administrators,ou=Groups,ou=TopologyManagement,o=NetscapeRoot is added
+Entry uid=admin,ou=Administrators,ou=TopologyManagement,o=NetscapeRoot is added
+Entry ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Entry ou=Global Preferences,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Entry ou=Host Preferences,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Entry ou=UserPreferences,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Entry ou=uid\=admin\,ou\=Administrators\,ou\=TopologyManagement\,o\=NetscapeRoot,ou=UserPreferences,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Processing /usr/share/dirsrv/data/02globalpreferences.ldif.tmpl ...
+Entry ou=Admin,ou=Global Preferences,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Entry ou=1.1,ou=Admin,ou=Global Preferences,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Entry cn=ResourceEditorExtension,ou=1.1,ou=Admin,ou=Global Preferences,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Entry cn=UserDirectory,ou=Global Preferences,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Entry cn=Common,ou=Global Preferences,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Entry cn=Client,ou=Admin,ou=Global Preferences,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Entry cn=PublicViews,ou=1.1,ou=Admin,ou=Global Preferences,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Entry cn=CustomView,ou=1.1,ou=Admin,ou=Global Preferences,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Entry cn=inetorgPerson,cn=ResourceEditorExtension,ou=1.1,ou=Admin,ou=Global Preferences,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Entry cn=organizationalPerson,cn=ResourceEditorExtension,ou=1.1,ou=Admin,ou=Global Preferences,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Entry cn=groupofuniquenames,cn=ResourceEditorExtension,ou=1.1,ou=Admin,ou=Global Preferences,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Entry cn=organizationalunit,cn=ResourceEditorExtension,ou=1.1,ou=Admin,ou=Global Preferences,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Entry cn=defaultObjectClassesContainer,ou=1.1,ou=Admin,ou=Global Preferences,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Entry cn=user,cn=defaultObjectClassesContainer,ou=1.1,ou=Admin,ou=Global Preferences,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Entry cn=group,cn=defaultObjectClassesContainer,ou=1.1,ou=Admin,ou=Global Preferences,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Entry cn=ou,cn=defaultObjectClassesContainer,ou=1.1,ou=Admin,ou=Global Preferences,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Entry cn=topologyplugin,ou=1.1,ou=Admin,ou=Global Preferences,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Entry cn=defaultplugin,cn=topologyplugin,ou=1.1,ou=Admin,ou=Global Preferences,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Entry cn=UI,ou=1.1,ou=Admin,ou=Global Preferences,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Processing /usr/share/dirsrv/data/12dsconfig.mod.tmpl ...
+Processing /usr/share/dirsrv/data/13dsschema.mod.tmpl ...
+Processing /usr/share/dirsrv/data/14dsmonitor.mod.tmpl ...
+Processing /usr/share/dirsrv/data/16dssuffixadmin.mod.tmpl ...
+Processing /usr/share/dirsrv/data/10dsdata.ldif.tmpl ...
+Entry cn=kolab.<MYDOMAIN>.org,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Entry cn=Server Group,cn=kolab.<MYDOMAIN>.org,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Entry cn=389 Directory Server,cn=Server Group,cn=kolab.<MYDOMAIN>.org,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Entry cn=slapd-kolab,cn=389 Directory Server,cn=Server Group,cn=kolab.<MYDOMAIN>.org,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Entry cn=configuration,cn=slapd-kolab,cn=389 Directory Server,cn=Server Group,cn=kolab.<MYDOMAIN>.org,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Entry ou=cn\=slapd-kolab\,cn\=389 Directory Server\,cn\=Server Group\,cn\=kolab.<MYDOMAIN>.org\,ou\=<MYDOMAIN>.org\,o\=NetscapeRoot,ou=UserPreferences,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Entry ou=cn\=Directory Manager,ou=UserPreferences,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Entry cn=nsroledefinition,cn=ResourceEditorExtension,ou=1.1,ou=Admin,ou=Global Preferences,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Entry cn=cossuperdefinition,cn=ResourceEditorExtension,ou=1.1,ou=Admin,ou=Global Preferences,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Processing /usr/share/dirsrv/data/11dstasks.ldif.tmpl ...
+Entry cn=Tasks,cn=slapd-kolab, cn=389 Directory Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=Operation,cn=Tasks,cn=slapd-kolab, cn=389 Directory Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=task summary,cn=Operation,cn=Tasks,cn=slapd-kolab, cn=389 Directory Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=start,cn=Operation,cn=Tasks,cn=slapd-kolab, cn=389 Directory Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=stop,cn=Operation,cn=Tasks,cn=slapd-kolab, cn=389 Directory Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=restart,cn=Operation,cn=Tasks,cn=slapd-kolab, cn=389 Directory Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=Backup,cn=operation,cn=Tasks,cn=slapd-kolab, cn=389 Directory Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=Restore,cn=operation,cn=Tasks,cn=slapd-kolab, cn=389 Directory Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=KeyCert,cn=operation,cn=Tasks,cn=slapd-kolab, cn=389 Directory Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=Authenticate,cn=operation,cn=Tasks,cn=slapd-kolab, cn=389 Directory Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=CompleteImport,cn=operation,cn=Tasks,cn=slapd-kolab, cn=389 Directory Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=CompleteExport,cn=operation,cn=Tasks,cn=slapd-kolab, cn=389 Directory Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=ViewLog,cn=operation,cn=Tasks,cn=slapd-kolab, cn=389 Directory Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=ListBackups,cn=operation,cn=Tasks,cn=slapd-kolab, cn=389 Directory Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=Remove,cn=operation,cn=Tasks,cn=slapd-kolab, cn=389 Directory Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=CreateVLVIndex,cn=operation,cn=Tasks,cn=slapd-kolab, cn=389 Directory Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=AddIndex,cn=operation,cn=Tasks,cn=slapd-kolab, cn=389 Directory Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=SNMPCtrl,cn=operation,cn=Tasks,cn=slapd-kolab, cn=389 Directory Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=Tasks,cn=389 Directory Server,cn=Server Group,cn=kolab.<MYDOMAIN>.org,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Entry cn=Operation,cn=Tasks,cn=389 Directory Server,cn=Server Group,cn=kolab.<MYDOMAIN>.org,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Entry cn=Migrate,cn=Operation,cn=Tasks,cn=389 Directory Server,cn=Server Group,cn=kolab.<MYDOMAIN>.org,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Entry cn=Create,cn=Operation,cn=Tasks,cn=389 Directory Server,cn=Server Group,cn=kolab.<MYDOMAIN>.org,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Entry cn=GetConfigInfo,cn=Operation,cn=Tasks,cn=389 Directory Server,cn=Server Group,cn=kolab.<MYDOMAIN>.org,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Entry cn=MigrateLocalDB,cn=Operation,cn=Tasks,cn=389 Directory Server,cn=Server Group,cn=kolab.<MYDOMAIN>.org,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Processing /usr/share/dirsrv/data/20asdata.ldif.tmpl ...
+Entry cn=389 Administration Server,cn=Server Group,cn=kolab.<MYDOMAIN>.org,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Entry cn=admin-serv-kolab,cn=389 Administration Server,cn=Server Group,cn=kolab.<MYDOMAIN>.org,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Entry cn=configuration,cn=admin-serv-kolab,cn=389 Administration Server,cn=Server Group,cn=kolab.<MYDOMAIN>.org,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Entry ou=cn\=admin-serv-kolab\,cn\=389 Administration Server\,cn\=Server Group\,cn\=kolab.<MYDOMAIN>.org\,ou\=<MYDOMAIN>.org\,o\=NetscapeRoot,ou=UserPreferences,ou=<MYDOMAIN>.org,o=NetscapeRoot is added
+Processing /usr/share/dirsrv/data/21astasks.ldif.tmpl ...
+Entry cn=Tasks,cn=admin-serv-kolab, cn=389 Administration Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=Operation,cn=Tasks,cn=admin-serv-kolab, cn=389 Administration Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=Stop,cn=Operation,cn=Tasks,cn=admin-serv-kolab, cn=389 Administration Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=Restart,cn=Operation,cn=Tasks,cn=admin-serv-kolab, cn=389 Administration Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=Authenticate,cn=Operation,cn=Tasks,cn=admin-serv-kolab, cn=389 Administration Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=ListOldServers,cn=Operation,cn=Tasks,cn=admin-serv-kolab, cn=389 Administration Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=StartConfigDS,cn=Operation,cn=Tasks,cn=admin-serv-kolab, cn=389 Administration Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=MigrateConfig,cn=Operation,cn=Tasks,cn=admin-serv-kolab, cn=389 Administration Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=StatusPing,cn=Operation,cn=Tasks,cn=admin-serv-kolab, cn=389 Administration Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=Configuration,cn=Tasks,cn=admin-serv-kolab, cn=389 Administration Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=ServerSetup,cn=configuration,cn=Tasks,cn=admin-serv-kolab, cn=389 Administration Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=DirectorySetup,cn=configuration,cn=Tasks,cn=admin-serv-kolab, cn=389 Administration Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=UGDirectorySetup,cn=configuration,cn=Tasks,cn=admin-serv-kolab, cn=389 Administration Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=AccessSetup,cn=configuration,cn=Tasks,cn=admin-serv-kolab, cn=389 Administration Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=Logging,cn=configuration,cn=Tasks,cn=admin-serv-kolab, cn=389 Administration Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=SecurityOp,cn=configuration,cn=Tasks,cn=admin-serv-kolab, cn=389 Administration Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=CertSetup,cn=configuration,cn=Tasks,cn=admin-serv-kolab, cn=389 Administration Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=SSLActivate,cn=configuration,cn=Tasks,cn=admin-serv-kolab, cn=389 Administration Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=ReadLog,cn=configuration,cn=Tasks,cn=admin-serv-kolab, cn=389 Administration Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=HTMLAdmin,cn=configuration,cn=Tasks,cn=admin-serv-kolab, cn=389 Administration Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=StatPingServ,cn=configuration,cn=Tasks,cn=admin-serv-kolab, cn=389 Administration Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=ViewData,cn=configuration,cn=Tasks,cn=admin-serv-kolab, cn=389 Administration Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=ViewLog,cn=configuration,cn=Tasks,cn=admin-serv-kolab, cn=389 Administration Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=MonReplication,cn=configuration,cn=Tasks,cn=admin-serv-kolab, cn=389 Administration Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=repl-monitor-cgi.pl,cn=configuration,cn=Tasks,cn=admin-serv-kolab, cn=389 Administration Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Processing /usr/share/dirsrv/data/22ascommands.ldif.tmpl ...
+Entry cn=Commands,cn=admin-serv-kolab, cn=389 Administration Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=sync-task-sie-data,cn=Commands,cn=admin-serv-kolab, cn=389 Administration Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Entry cn=change-sie-password,cn=Commands,cn=admin-serv-kolab, cn=389 Administration Server, cn=Server Group, cn=kolab.<MYDOMAIN>.org, ou=<MYDOMAIN>.org, o=NetscapeRoot is added
+Content-type: text/html
NMC_Status: 0
Shutting down 389 DS instance kolab: ....
Starting 389 DS instance kolab: ....
update-rc.d: using dependency based boot sequencing
2012-10-02 12:59:38,868 pykolab.setup INFO Writing out configuration to kolab.conf
2012-10-02 12:59:38,881 pykolab.setup INFO Inserting service users into LDAP.
2012-10-02 12:59:38,881 pykolab.auth DEBUG [6082]: Called for domain None
2012-10-02 12:59:38,882 pykolab.auth DEBUG [6082]: Using section kolab and domain <MYDOMAIN>.org
2012-10-02 12:59:38,883 pykolab.auth DEBUG [6082]: Using section kolab and domain <MYDOMAIN>.org
2012-10-02 12:59:38,883 pykolab.auth DEBUG [6082]: Connecting to Authentication backend for domain <MYDOMAIN>.org
2012-10-02 12:59:38,887 pykolab.auth DEBUG [6082]: Section kolab has auth_mechanism: 'ldap'
2012-10-02 12:59:38,888 pykolab.auth DEBUG [6082]: Starting LDAP...
2012-10-02 12:59:38,958 pykolab.auth DEBUG [6082]: Connecting to LDAP...
2012-10-02 12:59:38,958 pykolab.auth DEBUG [6082]: Attempting to use LDAP URI ldap://localhost:389
*** <ldap.ldapobject.SimpleLDAPObject instance at 0x7fe3c87f6c68> ldap://localhost:389 - SimpleLDAPObject.set_option
((17, 3), {})
*** <ldap.ldapobject.SimpleLDAPObject instance at 0x7fe3c87f6c68> ldap://localhost:389 - SimpleLDAPObject.set_option
((17, 3), {})
*** <ldap.ldapobject.SimpleLDAPObject instance at 0x7fe3c87f6c68> ldap://localhost:389 - SimpleLDAPObject.simple_bind
(('cn=Directory Manager', 'lZALGX99ANoXl9Q', None, None), {})
*** <ldap.ldapobject.SimpleLDAPObject instance at 0x7fe3c87f6c68> ldap://localhost:389 - SimpleLDAPObject.result4
((1, 1, -1, 0, 0, 0), {})
*** <ldap.ldapobject.SimpleLDAPObject instance at 0x7fe3c87f6c68> ldap://localhost:389 - SimpleLDAPObject.add_ext
(('uid=cyrus-admin,ou=Special Users,dc=<MYDOMAIN>,dc=org',
[('surname', 'Administrator'),
('uid', 'cyrus-admin'),
('objectclass',
['top', 'person', 'inetorgperson', 'organizationalperson']),
('userPassword', 'NJxSMplaOtVyn94'),
('givenname', 'Cyrus'),
('cn', 'Cyrus Administrator')],
None,
None),
{})
*** <ldap.ldapobject.SimpleLDAPObject instance at 0x7fe3c87f6c68> ldap://localhost:389 - SimpleLDAPObject.result4
((2, 1, -1, 0, 0, 0), {})
*** <ldap.ldapobject.SimpleLDAPObject instance at 0x7fe3c87f6c68> ldap://localhost:389 - SimpleLDAPObject.add_ext
(('uid=kolab-service,ou=Special Users,dc=<MYDOMAIN>,dc=org',
[('nslookthroughlimit', '-1'),
('surname', 'Service'),
('uid', 'kolab-service'),
('objectclass',
['top', 'person', 'inetorgperson', 'organizationalperson']),
('userPassword', 'CvCix2RveqqV-Sq'),
('nstimelimit', '-1'),
('nssizelimit', '-1'),
('nsidletimeout', '-1'),
('givenname', 'Kolab'),
('cn', 'Kolab Service')],
None,
None),
{})
*** <ldap.ldapobject.SimpleLDAPObject instance at 0x7fe3c87f6c68> ldap://localhost:389 - SimpleLDAPObject.result4
((3, 1, -1, 0, 0, 0), {})
*** <ldap.ldapobject.SimpleLDAPObject instance at 0x7fe3c87f6c68> ldap://localhost:389 - SimpleLDAPObject.add_ext
(('ou=Resources,dc=<MYDOMAIN>,dc=org',
[('objectclass', ['top', 'organizationalunit']), ('ou', 'Resources')],
None,
None),
{})
*** <ldap.ldapobject.SimpleLDAPObject instance at 0x7fe3c87f6c68> ldap://localhost:389 - SimpleLDAPObject.result4
((4, 1, -1, 0, 0, 0), {})
*** <ldap.ldapobject.SimpleLDAPObject instance at 0x7fe3c87f6c68> ldap://localhost:389 - SimpleLDAPObject.add_ext
(('ou=Shared Folders,dc=<MYDOMAIN>,dc=org',
[('objectclass', ['top', 'organizationalunit']), ('ou', 'Shared Folders')],
None,
None),
{})
*** <ldap.ldapobject.SimpleLDAPObject instance at 0x7fe3c87f6c68> ldap://localhost:389 - SimpleLDAPObject.result4
((5, 1, -1, 0, 0, 0), {})
2012-10-02 12:59:39,579 pykolab.setup INFO Writing out cn=kolab,cn=config
*** <ldap.ldapobject.SimpleLDAPObject instance at 0x7fe3c87f6c68> ldap://localhost:389 - SimpleLDAPObject.add_ext
(('cn=kolab,cn=config',
[('objectclass', ['top', 'extensibleobject']), ('cn', 'kolab')],
None,
None),
{})
*** <ldap.ldapobject.SimpleLDAPObject instance at 0x7fe3c87f6c68> ldap://localhost:389 - SimpleLDAPObject.result4
((6, 1, -1, 0, 0, 0), {})
2012-10-02 12:59:39,590 pykolab.auth DEBUG [6082]: Setting entry attribute 'aci' to '(targetattr = "*") (version 3.0;acl "Kolab Services";allow (read,compare,search)(userdn = "ldap:///uid=kolab-service,ou=Special Users,dc=<MYDOMAIN>,dc=org");)' for 'cn=kolab,cn=config'
*** <ldap.ldapobject.SimpleLDAPObject instance at 0x7fe3c87f6c68> ldap://localhost:389 - SimpleLDAPObject.search_ext
(('cn=kolab,cn=config',
0,
'(objectclass=*)',
['dn', '*'],
0,
None,
None,
-1,
0),
{})
*** <ldap.ldapobject.SimpleLDAPObject instance at 0x7fe3c87f6c68> ldap://localhost:389 - SimpleLDAPObject.result4
((7, 1, -1, 0, 0, 0), {})
*** <ldap.ldapobject.SimpleLDAPObject instance at 0x7fe3c87f6c68> ldap://localhost:389 - SimpleLDAPObject.search_ext
(('cn=kolab,cn=config',
0,
'(objectclass=*)',
['dn', 'aci'],
0,
None,
None,
-1,
0),
{})
*** <ldap.ldapobject.SimpleLDAPObject instance at 0x7fe3c87f6c68> ldap://localhost:389 - SimpleLDAPObject.result4
((8, 1, -1, 0, 0, 0), {})
*** <ldap.ldapobject.SimpleLDAPObject instance at 0x7fe3c87f6c68> ldap://localhost:389 - SimpleLDAPObject.modify_ext
(('cn=kolab,cn=config',
[(0,
'aci',
'(targetattr = "*") (version 3.0;acl "Kolab Services";allow (read,compare,search)(userdn = "ldap:///uid=kolab-service,ou=Special Users,dc=<MYDOMAIN>,dc=org");)')],
None,
None),
{})
*** <ldap.ldapobject.SimpleLDAPObject instance at 0x7fe3c87f6c68> ldap://localhost:389 - SimpleLDAPObject.result4
((9, 1, -1, 0, 0, 0), {})
2012-10-02 12:59:39,602 pykolab.setup INFO Adding domain <MYDOMAIN>.org to list of domains for this deployment
*** <ldap.ldapobject.SimpleLDAPObject instance at 0x7fe3c87f6c68> ldap://localhost:389 - SimpleLDAPObject.add_ext
(('associateddomain=<MYDOMAIN>.org,cn=kolab,cn=config',
[('objectclass', ['top', 'domainrelatedobject']),
('associateddomain',
['<MYDOMAIN>.org',
'kolab.<MYDOMAIN>.org',
'localhost.localdomain',
'localhost']),
('aci',
'(targetattr = "*") (version 3.0;acl "Read Access for <MYDOMAIN>.org Users";allow (read,compare,search)(userdn = "ldap:///dc=<MYDOMAIN>,dc=org??sub?(objectclass=*)");)')],
None,
None),
{})
*** <ldap.ldapobject.SimpleLDAPObject instance at 0x7fe3c87f6c68> ldap://localhost:389 - SimpleLDAPObject.result4
((10, 1, -1, 0, 0, 0), {})
2012-10-02 12:59:39,613 pykolab.setup INFO Disabling anonymous binds
*** <ldap.ldapobject.SimpleLDAPObject instance at 0x7fe3c87f6c68> ldap://localhost:389 - SimpleLDAPObject.modify_ext
(('cn=config', [(2, 'nsslapd-allow-anonymous-access', 'off')], None, None), {})
*** <ldap.ldapobject.SimpleLDAPObject instance at 0x7fe3c87f6c68> ldap://localhost:389 - SimpleLDAPObject.result4
((11, 1, -1, 0, 0, 0), {})
2012-10-02 12:59:39,629 pykolab.setup INFO Enabling attribute uniqueness plugin
*** <ldap.ldapobject.SimpleLDAPObject instance at 0x7fe3c87f6c68> ldap://localhost:389 - SimpleLDAPObject.modify_ext
(('cn=attribute uniqueness,cn=plugins,cn=config',
[(2, 'nsslapd-pluginEnabled', 'on')],
None,
None),
{})
*** <ldap.ldapobject.SimpleLDAPObject instance at 0x7fe3c87f6c68> ldap://localhost:389 - SimpleLDAPObject.result4
((12, 1, -1, 0, 0, 0), {})
2012-10-02 12:59:39,646 pykolab.setup INFO Enabling referential integrity plugin
*** <ldap.ldapobject.SimpleLDAPObject instance at 0x7fe3c87f6c68> ldap://localhost:389 - SimpleLDAPObject.modify_ext
(('cn=referential integrity postoperation,cn=plugins,cn=config',
[(2, 'nsslapd-pluginEnabled', 'on')],
None,
None),
{})
*** <ldap.ldapobject.SimpleLDAPObject instance at 0x7fe3c87f6c68> ldap://localhost:389 - SimpleLDAPObject.result4
((13, 1, -1, 0, 0, 0), {})
2012-10-02 12:59:39,665 pykolab.setup INFO Enabling and configuring account policy plugin
*** <ldap.ldapobject.SimpleLDAPObject instance at 0x7fe3c87f6c68> ldap://localhost:389 - SimpleLDAPObject.modify_ext
(('cn=Account Policy Plugin,cn=plugins,cn=config',
[(2, 'nsslapd-pluginEnabled', 'on'),
(0,
'nsslapd-pluginarg0',
'cn=config,cn=Account Policy Plugin,cn=plugins,cn=config')],
None,
None),
{})
*** <ldap.ldapobject.SimpleLDAPObject instance at 0x7fe3c87f6c68> ldap://localhost:389 - SimpleLDAPObject.result4
((14, 1, -1, 0, 0, 0), {})
*** <ldap.ldapobject.SimpleLDAPObject instance at 0x7fe3c87f6c68> ldap://localhost:389 - SimpleLDAPObject.modify_ext
(('cn=config,cn=Account Policy Plugin,cn=plugins,cn=config',
[(2, 'alwaysrecordlogin', 'yes'),
(0, 'stateattrname', 'lastLoginTime'),
(0, 'altstateattrname', 'createTimestamp')],
None,
None),
{})
*** <ldap.ldapobject.SimpleLDAPObject instance at 0x7fe3c87f6c68> ldap://localhost:389 - SimpleLDAPObject.result4
((15, 1, -1, 0, 0, 0), {})
2012-10-02 12:59:39,696 pykolab.setup INFO Adding the kolab-admin role
*** <ldap.ldapobject.SimpleLDAPObject instance at 0x7fe3c87f6c68> ldap://localhost:389 - SimpleLDAPObject.add_ext
(('cn=kolab-admin,dc=<MYDOMAIN>,dc=org',
[('objectClass',
['top',
'ldapsubentry',
'nsroledefinition',
'nssimpleroledefinition',
'nsmanagedroledefinition']),
('description', 'Kolab Administrator'),
('cn', 'kolab-admin')],
None,
None),
{})
*** <ldap.ldapobject.SimpleLDAPObject instance at 0x7fe3c87f6c68> ldap://localhost:389 - SimpleLDAPObject.result4
((16, 1, -1, 0, 0, 0), {})
2012-10-02 12:59:39,751 pykolab.setup INFO Setting access control to dc=<MYDOMAIN>,dc=org
*** <ldap.ldapobject.SimpleLDAPObject instance at 0x7fe3c87f6c68> ldap://localhost:389 - SimpleLDAPObject.modify_ext
(('dc=<MYDOMAIN>,dc=org',
[(2,
'aci',
['(targetattr = "homePhone || preferredDeliveryMethod || jpegPhoto || postalAddress || carLicense || userPassword || mobile || kolabAllowSMTPRecipient || displayName || kolabDelegate || description || labeledURI || homePostalAddress || postOfficeBox || registeredAddress || postalCode || photo || title || street || kolabInvitationPolicy || pager || o || l || initials || kolabAllowSMTPSender || telephoneNumber || preferredLanguage || facsimileTelephoneNumber") (version 3.0;acl "Enable self write for common attributes";allow (read,compare,search,write)(userdn = "ldap:///self");)',
'(targetattr = "*") (version 3.0;acl "Directory Administrators Group";allow (all)(groupdn = "ldap:///cn=Directory Administrators,dc=<MYDOMAIN>,dc=org" or roledn = "ldap:///cn=kolab-admin,dc=<MYDOMAIN>,dc=org");)',
'(targetattr="*")(version 3.0; acl "Configuration Administrators Group"; allow (all) groupdn="ldap:///cn=Configuration Administrators,ou=Groups,ou=TopologyManagement,o=NetscapeRoot";)',
'(targetattr="*")(version 3.0; acl "Configuration Administrator"; allow (all) userdn="ldap:///uid=admin,ou=Administrators,ou=TopologyManagement,o=NetscapeRoot";)',
'(targetattr = "*")(version 3.0; acl "SIE Group"; allow (all) groupdn = "ldap:///cn=slapd-kolab,cn=389 Directory Server,cn=Server Group,cn=kolab.<MYDOMAIN>.org,ou=<MYDOMAIN>.org,o=NetscapeRoot";)',
'(targetattr = "*") (version 3.0;acl "Search Access";allow (read,compare,search)(userdn = "ldap:///all");)'])],
None,
None),
{})
*** <ldap.ldapobject.SimpleLDAPObject instance at 0x7fe3c87f6c68> ldap://localhost:389 - SimpleLDAPObject.result4
((17, 1, -1, 0, 0, 0), {})
update-rc.d: using dependency based boot sequencing
2012-10-02 12:59:39,903 pykolab.conf DEBUG [6082]: Setting kolab_default_locale to 'en_US' (from defaults)
2012-10-02 12:59:39,904 pykolab.conf DEBUG [6082]: Setting mail_attributes to ['mail', 'alias'] (from defaults)
2012-10-02 12:59:39,904 pykolab.conf DEBUG [6082]: Setting mailserver_attribute to 'mailhost' (from defaults)
2012-10-02 12:59:39,905 pykolab.conf DEBUG [6082]: Setting loglevel to 50 (from defaults)
2012-10-02 12:59:39,905 pykolab.conf DEBUG [6082]: Setting imap_virtual_domains to 'userid' (from defaults)
2012-10-02 12:59:39,906 pykolab.conf DEBUG [6082]: Setting cyrus_annotations_retry_interval to 1 (from defaults)
2012-10-02 12:59:39,906 pykolab.conf DEBUG [6082]: Setting ldap_unique_attribute to 'nsuniqueid' (from defaults)
2012-10-02 12:59:39,907 pykolab.conf DEBUG [6082]: Setting address_search_attrs to ['mail', 'alias'] (from defaults)
2012-10-02 12:59:39,907 pykolab.conf DEBUG [6082]: Setting config_file to '/etc/kolab/kolab.conf' (from the default values for CLI options)
2012-10-02 12:59:39,908 pykolab.conf DEBUG [6082]: Setting loglevel to 'CRITICAL' (from the default values for CLI options)
2012-10-02 12:59:39,909 pykolab.conf DEBUG [6082]: Setting answer_yes to False (from the default values for CLI options)
2012-10-02 12:59:39,909 pykolab.conf DEBUG [6082]: Setting quiet to False (from the default values for CLI options)
2012-10-02 12:59:39,910 pykolab.conf DEBUG [6082]: Setting fqdn to 'kolab.<MYDOMAIN>.org' (from the default values for CLI options)
2012-10-02 12:59:39,910 pykolab.conf DEBUG [6082]: Setting anonymous to False (from the default values for CLI options)
2012-10-02 12:59:39,911 pykolab.conf DEBUG [6082]: Setting debuglevel to 0 (from the default values for CLI options)
2012-10-02 12:59:39,911 pykolab.conf DEBUG [6082]: Setting timezone to None (from the default values for CLI options)
2012-10-02 12:59:39,912 pykolab.conf DEBUG [6082]: Setting logfile to '/var/log/kolab/pykolab.log' (from the default values for CLI options)
2012-10-02 12:59:39,912 pykolab.conf DEBUG [6082]: Setting options from configuration file
2012-10-02 12:59:39,913 pykolab.conf DEBUG [6082]: Reading configuration file /etc/kolab/kolab.conf
2012-10-02 12:59:39,921 pykolab.conf DEBUG [6082]: Setting config_file to '/etc/kolab/kolab.conf' (from CLI, verified)
2012-10-02 12:59:39,922 pykolab.conf DEBUG [6082]: Setting loglevel to 'CRITICAL' (from CLI, not checked)
2012-10-02 12:59:39,922 pykolab.conf DEBUG [6082]: Setting answer_yes to False (from CLI, not checked)
2012-10-02 12:59:39,922 pykolab.conf DEBUG [6082]: Setting quiet to False (from CLI, not checked)
2012-10-02 12:59:39,922 pykolab.conf DEBUG [6082]: Setting fqdn to 'kolab.<MYDOMAIN>.org' (from CLI, not checked)
2012-10-02 12:59:39,922 pykolab.conf DEBUG [6082]: Setting anonymous to False (from CLI, not checked)
2012-10-02 12:59:39,923 pykolab.conf DEBUG [6082]: Setting debuglevel to 9 (from CLI, verified)
2012-10-02 12:59:39,923 pykolab.conf DEBUG [6082]: Setting timezone to 'Asia/<MYPLACE>' (from CLI, not checked)
2012-10-02 12:59:39,923 pykolab.conf DEBUG [6082]: Setting logfile to '/var/log/kolab/pykolab.log' (from CLI, not checked)
2012-10-02 12:59:40,816 pykolab.setup DEBUG [6082]: Setting key 'transport_maps' to 'ldap:/etc/postfix/ldap/transport_maps.cf'
2012-10-02 12:59:40,817 pykolab.setup DEBUG [6082]: Setting key 'content_filter' to 'smtp-amavis:[127.0.0.1]:10024'
2012-10-02 12:59:40,817 pykolab.setup DEBUG [6082]: Setting key 'smtpd_tls_key_file' to '/etc/pki/tls/private/localhost.pem'
2012-10-02 12:59:40,817 pykolab.setup DEBUG [6082]: Setting key 'virtual_alias_maps' to '$alias_maps, ldap:/etc/postfix/ldap/virtual_alias_maps.cf, ldap:/etc/postfix/ldap/mailenabled_distgroups.cf, ldap:/etc/postfix/ldap/mailenabled_dynamic_distgroups.cf'
2012-10-02 12:59:40,817 pykolab.setup DEBUG [6082]: Setting key 'submission_recipient_restrictions' to 'check_policy_service unix:private/submission_policy, permit_sasl_authenticated, reject'
2012-10-02 12:59:40,818 pykolab.setup DEBUG [6082]: Setting key 'smtpd_recipient_restrictions' to 'permit_mynetworks, reject_unauth_pipelining, reject_rbl_client zen.spamhaus.org, reject_non_fqdn_recipient, reject_invalid_helo_hostname, reject_unknown_recipient_domain, reject_unauth_destination, check_policy_service unix:private/recipient_policy_incoming, permit'
2012-10-02 12:59:40,818 pykolab.setup DEBUG [6082]: Setting key 'smtpd_sender_restrictions' to 'permit_mynetworks, check_policy_service unix:private/sender_policy_incoming'
2012-10-02 12:59:40,818 pykolab.setup DEBUG [6082]: Setting key 'smtpd_tls_auth_only' to 'yes'
2012-10-02 12:59:40,818 pykolab.setup DEBUG [6082]: Setting key 'mydestination' to 'ldap:/etc/postfix/ldap/mydestination.cf'
2012-10-02 12:59:40,819 pykolab.setup DEBUG [6082]: Setting key 'submission_sender_restrictions' to 'reject_non_fqdn_sender, check_policy_service unix:private/submission_policy, permit_sasl_authenticated, reject'
2012-10-02 12:59:40,819 pykolab.setup DEBUG [6082]: Setting key 'local_recipient_maps' to 'ldap:/etc/postfix/ldap/local_recipient_maps.cf'
2012-10-02 12:59:40,819 pykolab.setup DEBUG [6082]: Setting key 'submission_data_restrictions' to 'check_policy_service unix:private/submission_policy'
2012-10-02 12:59:40,819 pykolab.setup DEBUG [6082]: Setting key 'inet_interfaces' to 'all'
2012-10-02 12:59:40,820 pykolab.setup DEBUG [6082]: Setting key 'smtpd_tls_cert_file' to '/etc/pki/tls/private/localhost.pem'
Stopping Postfix Mail Transport Agent: postfix.
Starting Postfix Mail Transport Agent: postfix.
Stopping amavisd: amavisd-new.
Starting amavisd: amavisd-new.
Stopping ClamAV daemon: clamd.
Starting ClamAV daemon: clamd .
update-rc.d: using dependency based boot sequencing
update-rc.d: using dependency based boot sequencing
update-rc.d: using dependency based boot sequencing
update-rc.d: using dependency based boot sequencing
2012-10-02 12:59:48,227 pykolab.conf DEBUG [6082]: Setting kolab_default_locale to 'en_US' (from defaults)
2012-10-02 12:59:48,227 pykolab.conf DEBUG [6082]: Setting mail_attributes to ['mail', 'alias'] (from defaults)
2012-10-02 12:59:48,227 pykolab.conf DEBUG [6082]: Setting mailserver_attribute to 'mailhost' (from defaults)
2012-10-02 12:59:48,227 pykolab.conf DEBUG [6082]: Setting loglevel to 50 (from defaults)
2012-10-02 12:59:48,228 pykolab.conf DEBUG [6082]: Setting imap_virtual_domains to 'userid' (from defaults)
2012-10-02 12:59:48,228 pykolab.conf DEBUG [6082]: Setting cyrus_annotations_retry_interval to 1 (from defaults)
2012-10-02 12:59:48,228 pykolab.conf DEBUG [6082]: Setting ldap_unique_attribute to 'nsuniqueid' (from defaults)
2012-10-02 12:59:48,228 pykolab.conf DEBUG [6082]: Setting address_search_attrs to ['mail', 'alias'] (from defaults)
2012-10-02 12:59:48,228 pykolab.conf DEBUG [6082]: Setting config_file to '/etc/kolab/kolab.conf' (from the default values for CLI options)
2012-10-02 12:59:48,229 pykolab.conf DEBUG [6082]: Setting loglevel to 'CRITICAL' (from the default values for CLI options)
2012-10-02 12:59:48,229 pykolab.conf DEBUG [6082]: Setting answer_yes to False (from the default values for CLI options)
2012-10-02 12:59:48,229 pykolab.conf DEBUG [6082]: Setting quiet to False (from the default values for CLI options)
2012-10-02 12:59:48,229 pykolab.conf DEBUG [6082]: Setting fqdn to 'kolab.<MYDOMAIN>.org' (from the default values for CLI options)
2012-10-02 12:59:48,229 pykolab.conf DEBUG [6082]: Setting anonymous to False (from the default values for CLI options)
2012-10-02 12:59:48,229 pykolab.conf DEBUG [6082]: Setting debuglevel to 0 (from the default values for CLI options)
2012-10-02 12:59:48,230 pykolab.conf DEBUG [6082]: Setting timezone to None (from the default values for CLI options)
2012-10-02 12:59:48,230 pykolab.conf DEBUG [6082]: Setting logfile to '/var/log/kolab/pykolab.log' (from the default values for CLI options)
2012-10-02 12:59:48,230 pykolab.conf DEBUG [6082]: Setting options from configuration file
2012-10-02 12:59:48,230 pykolab.conf DEBUG [6082]: Reading configuration file /etc/kolab/kolab.conf
2012-10-02 12:59:48,232 pykolab.conf DEBUG [6082]: Setting config_file to '/etc/kolab/kolab.conf' (from CLI, verified)
2012-10-02 12:59:48,232 pykolab.conf DEBUG [6082]: Setting loglevel to 'CRITICAL' (from CLI, not checked)
2012-10-02 12:59:48,233 pykolab.conf DEBUG [6082]: Setting answer_yes to False (from CLI, not checked)
2012-10-02 12:59:48,233 pykolab.conf DEBUG [6082]: Setting quiet to False (from CLI, not checked)
2012-10-02 12:59:48,233 pykolab.conf DEBUG [6082]: Setting fqdn to 'kolab.<MYDOMAIN>.org' (from CLI, not checked)
2012-10-02 12:59:48,233 pykolab.conf DEBUG [6082]: Setting anonymous to False (from CLI, not checked)
2012-10-02 12:59:48,233 pykolab.conf DEBUG [6082]: Setting debuglevel to 9 (from CLI, verified)
2012-10-02 12:59:48,233 pykolab.conf DEBUG [6082]: Setting timezone to 'Asia/<MYPLACE>' (from CLI, not checked)
2012-10-02 12:59:48,234 pykolab.conf DEBUG [6082]: Setting logfile to '/var/log/kolab/pykolab.log' (from CLI, not checked)
Stopping MySQL database server: mysqld.
Starting MySQL database server: mysqld ..
Checking for tables which need an upgrade, are corrupt or were
not closed cleanly..
update-rc.d: using dependency based boot sequencing
2012-10-02 13:00:00,241 pykolab.setup WARNING Could not find the Kolab schema file
2012-10-02 13:00:00,242 pykolab.conf DEBUG [6082]: Setting kolab_default_locale to 'en_US' (from defaults)
2012-10-02 13:00:00,243 pykolab.conf DEBUG [6082]: Setting mail_attributes to ['mail', 'alias'] (from defaults)
2012-10-02 13:00:00,243 pykolab.conf DEBUG [6082]: Setting mailserver_attribute to 'mailhost' (from defaults)
2012-10-02 13:00:00,243 pykolab.conf DEBUG [6082]: Setting loglevel to 50 (from defaults)
2012-10-02 13:00:00,243 pykolab.conf DEBUG [6082]: Setting imap_virtual_domains to 'userid' (from defaults)
2012-10-02 13:00:00,243 pykolab.conf DEBUG [6082]: Setting cyrus_annotations_retry_interval to 1 (from defaults)
2012-10-02 13:00:00,243 pykolab.conf DEBUG [6082]: Setting ldap_unique_attribute to 'nsuniqueid' (from defaults)
2012-10-02 13:00:00,244 pykolab.conf DEBUG [6082]: Setting address_search_attrs to ['mail', 'alias'] (from defaults)
2012-10-02 13:00:00,244 pykolab.conf DEBUG [6082]: Setting config_file to '/etc/kolab/kolab.conf' (from the default values for CLI options)
2012-10-02 13:00:00,244 pykolab.conf DEBUG [6082]: Setting loglevel to 'CRITICAL' (from the default values for CLI options)
2012-10-02 13:00:00,244 pykolab.conf DEBUG [6082]: Setting answer_yes to False (from the default values for CLI options)
2012-10-02 13:00:00,244 pykolab.conf DEBUG [6082]: Setting quiet to False (from the default values for CLI options)
2012-10-02 13:00:00,244 pykolab.conf DEBUG [6082]: Setting fqdn to 'kolab.<MYDOMAIN>.org' (from the default values for CLI options)
2012-10-02 13:00:00,245 pykolab.conf DEBUG [6082]: Setting anonymous to False (from the default values for CLI options)
2012-10-02 13:00:00,245 pykolab.conf DEBUG [6082]: Setting debuglevel to 0 (from the default values for CLI options)
2012-10-02 13:00:00,245 pykolab.conf DEBUG [6082]: Setting timezone to None (from the default values for CLI options)
2012-10-02 13:00:00,245 pykolab.conf DEBUG [6082]: Setting logfile to '/var/log/kolab/pykolab.log' (from the default values for CLI options)
2012-10-02 13:00:00,245 pykolab.conf DEBUG [6082]: Setting options from configuration file
2012-10-02 13:00:00,245 pykolab.conf DEBUG [6082]: Reading configuration file /etc/kolab/kolab.conf
2012-10-02 13:00:00,248 pykolab.conf DEBUG [6082]: Setting config_file to '/etc/kolab/kolab.conf' (from CLI, verified)
2012-10-02 13:00:00,248 pykolab.conf DEBUG [6082]: Setting loglevel to 'CRITICAL' (from CLI, not checked)
2012-10-02 13:00:00,248 pykolab.conf DEBUG [6082]: Setting answer_yes to False (from CLI, not checked)
2012-10-02 13:00:00,248 pykolab.conf DEBUG [6082]: Setting quiet to False (from CLI, not checked)
2012-10-02 13:00:00,248 pykolab.conf DEBUG [6082]: Setting fqdn to 'kolab.<MYDOMAIN>.org' (from CLI, not checked)
2012-10-02 13:00:00,248 pykolab.conf DEBUG [6082]: Setting anonymous to False (from CLI, not checked)
2012-10-02 13:00:00,249 pykolab.conf DEBUG [6082]: Setting debuglevel to 9 (from CLI, verified)
2012-10-02 13:00:00,249 pykolab.conf DEBUG [6082]: Setting timezone to 'Asia/<MYPLACE>' (from CLI, not checked)
2012-10-02 13:00:00,249 pykolab.conf DEBUG [6082]: Setting logfile to '/var/log/kolab/pykolab.log' (from CLI, not checked)
2012-10-02 13:00:01,135 pykolab.setup DEBUG [6082]: Setting key 'Date/date.timezone' to 'Asia/<MYPLACE>'
2012-10-02 13:00:01,156 pykolab.conf DEBUG [6082]: Setting kolab_default_locale to 'en_US' (from defaults)
2012-10-02 13:00:01,157 pykolab.conf DEBUG [6082]: Setting mail_attributes to ['mail', 'alias'] (from defaults)
2012-10-02 13:00:01,157 pykolab.conf DEBUG [6082]: Setting mailserver_attribute to 'mailhost' (from defaults)
2012-10-02 13:00:01,157 pykolab.conf DEBUG [6082]: Setting loglevel to 50 (from defaults)
2012-10-02 13:00:01,157 pykolab.conf DEBUG [6082]: Setting imap_virtual_domains to 'userid' (from defaults)
2012-10-02 13:00:01,157 pykolab.conf DEBUG [6082]: Setting cyrus_annotations_retry_interval to 1 (from defaults)
2012-10-02 13:00:01,157 pykolab.conf DEBUG [6082]: Setting ldap_unique_attribute to 'nsuniqueid' (from defaults)
2012-10-02 13:00:01,157 pykolab.conf DEBUG [6082]: Setting address_search_attrs to ['mail', 'alias'] (from defaults)
2012-10-02 13:00:01,158 pykolab.conf DEBUG [6082]: Setting config_file to '/etc/kolab/kolab.conf' (from the default values for CLI options)
2012-10-02 13:00:01,158 pykolab.conf DEBUG [6082]: Setting loglevel to 'CRITICAL' (from the default values for CLI options)
2012-10-02 13:00:01,158 pykolab.conf DEBUG [6082]: Setting answer_yes to False (from the default values for CLI options)
2012-10-02 13:00:01,158 pykolab.conf DEBUG [6082]: Setting quiet to False (from the default values for CLI options)
2012-10-02 13:00:01,158 pykolab.conf DEBUG [6082]: Setting fqdn to 'kolab.<MYDOMAIN>.org' (from the default values for CLI options)
2012-10-02 13:00:01,158 pykolab.conf DEBUG [6082]: Setting anonymous to False (from the default values for CLI options)
2012-10-02 13:00:01,159 pykolab.conf DEBUG [6082]: Setting debuglevel to 0 (from the default values for CLI options)
2012-10-02 13:00:01,159 pykolab.conf DEBUG [6082]: Setting timezone to None (from the default values for CLI options)
2012-10-02 13:00:01,159 pykolab.conf DEBUG [6082]: Setting logfile to '/var/log/kolab/pykolab.log' (from the default values for CLI options)
2012-10-02 13:00:01,159 pykolab.conf DEBUG [6082]: Setting options from configuration file
2012-10-02 13:00:01,159 pykolab.conf DEBUG [6082]: Reading configuration file /etc/kolab/kolab.conf
2012-10-02 13:00:01,161 pykolab.conf DEBUG [6082]: Setting config_file to '/etc/kolab/kolab.conf' (from CLI, verified)
2012-10-02 13:00:01,162 pykolab.conf DEBUG [6082]: Setting loglevel to 'CRITICAL' (from CLI, not checked)
2012-10-02 13:00:01,162 pykolab.conf DEBUG [6082]: Setting answer_yes to False (from CLI, not checked)
2012-10-02 13:00:01,162 pykolab.conf DEBUG [6082]: Setting quiet to False (from CLI, not checked)
2012-10-02 13:00:01,162 pykolab.conf DEBUG [6082]: Setting fqdn to 'kolab.<MYDOMAIN>.org' (from CLI, not checked)
2012-10-02 13:00:01,162 pykolab.conf DEBUG [6082]: Setting anonymous to False (from CLI, not checked)
2012-10-02 13:00:01,162 pykolab.conf DEBUG [6082]: Setting debuglevel to 9 (from CLI, verified)
2012-10-02 13:00:01,163 pykolab.conf DEBUG [6082]: Setting timezone to 'Asia/<MYPLACE>' (from CLI, not checked)
2012-10-02 13:00:01,163 pykolab.conf DEBUG [6082]: Setting logfile to '/var/log/kolab/pykolab.log' (from CLI, not checked)
2012-10-02 13:00:03,943 pykolab.setup DEBUG [6082]: Using template file '/usr/share/kolab/templates/roundcubemail/acl.inc.php.tpl'
2012-10-02 13:00:03,949 pykolab.setup DEBUG [6082]: Successfully compiled template '/usr/share/kolab/templates/roundcubemail/acl.inc.php.tpl', writing out to 'acl.inc.php'
2012-10-02 13:00:03,966 pykolab.setup DEBUG [6082]: Using template file '/usr/share/kolab/templates/roundcubemail/calendar.inc.php.tpl'
2012-10-02 13:00:03,975 pykolab.setup DEBUG [6082]: Successfully compiled template '/usr/share/kolab/templates/roundcubemail/calendar.inc.php.tpl', writing out to 'calendar.inc.php'
2012-10-02 13:00:03,975 pykolab.setup DEBUG [6082]: Using template file '/usr/share/kolab/templates/roundcubemail/db.inc.php.tpl'
2012-10-02 13:00:03,981 pykolab.setup DEBUG [6082]: Successfully compiled template '/usr/share/kolab/templates/roundcubemail/db.inc.php.tpl', writing out to 'db.inc.php'
2012-10-02 13:00:03,982 pykolab.setup DEBUG [6082]: Using template file '/usr/share/kolab/templates/roundcubemail/kolab_auth.inc.php.tpl'
2012-10-02 13:00:03,995 pykolab.setup DEBUG [6082]: Successfully compiled template '/usr/share/kolab/templates/roundcubemail/kolab_auth.inc.php.tpl', writing out to 'kolab_auth.inc.php'
2012-10-02 13:00:03,996 pykolab.setup DEBUG [6082]: Using template file '/usr/share/kolab/templates/roundcubemail/kolab_folders.inc.php.tpl'
2012-10-02 13:00:04,001 pykolab.setup DEBUG [6082]: Successfully compiled template '/usr/share/kolab/templates/roundcubemail/kolab_folders.inc.php.tpl', writing out to 'kolab_folders.inc.php'
2012-10-02 13:00:04,001 pykolab.setup DEBUG [6082]: Using template file '/usr/share/kolab/templates/roundcubemail/kolab.inc.php.tpl'
2012-10-02 13:00:04,004 pykolab.setup DEBUG [6082]: Successfully compiled template '/usr/share/kolab/templates/roundcubemail/kolab.inc.php.tpl', writing out to 'kolab.inc.php'
2012-10-02 13:00:04,005 pykolab.setup DEBUG [6082]: Using template file '/usr/share/kolab/templates/roundcubemail/main.inc.php.tpl'
2012-10-02 13:00:04,048 pykolab.setup DEBUG [6082]: Successfully compiled template '/usr/share/kolab/templates/roundcubemail/main.inc.php.tpl', writing out to 'main.inc.php'
2012-10-02 13:00:04,049 pykolab.setup DEBUG [6082]: Using template file '/usr/share/kolab/templates/roundcubemail/managesieve.inc.php.tpl'
2012-10-02 13:00:04,053 pykolab.setup DEBUG [6082]: Successfully compiled template '/usr/share/kolab/templates/roundcubemail/managesieve.inc.php.tpl', writing out to 'managesieve.inc.php'
2012-10-02 13:00:04,054 pykolab.setup DEBUG [6082]: Using template file '/usr/share/kolab/templates/roundcubemail/owncloud.inc.php.tpl'
2012-10-02 13:00:04,057 pykolab.setup DEBUG [6082]: Successfully compiled template '/usr/share/kolab/templates/roundcubemail/owncloud.inc.php.tpl', writing out to 'owncloud.inc.php'
2012-10-02 13:00:04,057 pykolab.setup DEBUG [6082]: Using template file '/usr/share/kolab/templates/roundcubemail/password.inc.php.tpl'
2012-10-02 13:00:04,083 pykolab.setup DEBUG [6082]: Successfully compiled template '/usr/share/kolab/templates/roundcubemail/password.inc.php.tpl', writing out to 'password.inc.php'
2012-10-02 13:00:04,084 pykolab.setup DEBUG [6082]: Using template file '/usr/share/kolab/templates/roundcubemail/recipient_to_contact.inc.php.tpl'
2012-10-02 13:00:04,086 pykolab.setup DEBUG [6082]: Successfully compiled template '/usr/share/kolab/templates/roundcubemail/recipient_to_contact.inc.php.tpl', writing out to 'recipient_to_contact.inc.php'
2012-10-02 13:00:04,087 pykolab.setup DEBUG [6082]: Using template file '/usr/share/kolab/templates/roundcubemail/terms.html.tpl'
2012-10-02 13:00:04,089 pykolab.setup DEBUG [6082]: Successfully compiled template '/usr/share/kolab/templates/roundcubemail/terms.html.tpl', writing out to 'terms.html'
2012-10-02 13:00:04,090 pykolab.setup DEBUG [6082]: Using template file '/usr/share/kolab/templates/roundcubemail/terms.inc.php.tpl'
2012-10-02 13:00:04,094 pykolab.setup DEBUG [6082]: Successfully compiled template '/usr/share/kolab/templates/roundcubemail/terms.inc.php.tpl', writing out to 'terms.inc.php'
Restarting web server: apache2httpd (pid 5959) already running
.
update-rc.d: using dependency based boot sequencing
2012-10-02 13:00:06,627 pykolab.conf DEBUG [6082]: Setting kolab_default_locale to 'en_US' (from defaults)
2012-10-02 13:00:06,628 pykolab.conf DEBUG [6082]: Setting mail_attributes to ['mail', 'alias'] (from defaults)
2012-10-02 13:00:06,628 pykolab.conf DEBUG [6082]: Setting mailserver_attribute to 'mailhost' (from defaults)
2012-10-02 13:00:06,629 pykolab.conf DEBUG [6082]: Setting loglevel to 50 (from defaults)
2012-10-02 13:00:06,629 pykolab.conf DEBUG [6082]: Setting imap_virtual_domains to 'userid' (from defaults)
2012-10-02 13:00:06,630 pykolab.conf DEBUG [6082]: Setting cyrus_annotations_retry_interval to 1 (from defaults)
2012-10-02 13:00:06,630 pykolab.conf DEBUG [6082]: Setting ldap_unique_attribute to 'nsuniqueid' (from defaults)
2012-10-02 13:00:06,631 pykolab.conf DEBUG [6082]: Setting address_search_attrs to ['mail', 'alias'] (from defaults)
2012-10-02 13:00:06,632 pykolab.conf DEBUG [6082]: Setting config_file to '/etc/kolab/kolab.conf' (from the default values for CLI options)
2012-10-02 13:00:06,632 pykolab.conf DEBUG [6082]: Setting loglevel to 'CRITICAL' (from the default values for CLI options)
2012-10-02 13:00:06,633 pykolab.conf DEBUG [6082]: Setting answer_yes to False (from the default values for CLI options)
2012-10-02 13:00:06,633 pykolab.conf DEBUG [6082]: Setting quiet to False (from the default values for CLI options)
2012-10-02 13:00:06,634 pykolab.conf DEBUG [6082]: Setting fqdn to 'kolab.<MYDOMAIN>.org' (from the default values for CLI options)
2012-10-02 13:00:06,634 pykolab.conf DEBUG [6082]: Setting anonymous to False (from the default values for CLI options)
2012-10-02 13:00:06,635 pykolab.conf DEBUG [6082]: Setting debuglevel to 0 (from the default values for CLI options)
2012-10-02 13:00:06,635 pykolab.conf DEBUG [6082]: Setting timezone to None (from the default values for CLI options)
2012-10-02 13:00:06,636 pykolab.conf DEBUG [6082]: Setting logfile to '/var/log/kolab/pykolab.log' (from the default values for CLI options)
2012-10-02 13:00:06,636 pykolab.conf DEBUG [6082]: Setting options from configuration file
2012-10-02 13:00:06,637 pykolab.conf DEBUG [6082]: Reading configuration file /etc/kolab/kolab.conf
2012-10-02 13:00:06,645 pykolab.conf DEBUG [6082]: Setting config_file to '/etc/kolab/kolab.conf' (from CLI, verified)
2012-10-02 13:00:06,645 pykolab.conf DEBUG [6082]: Setting loglevel to 'CRITICAL' (from CLI, not checked)
2012-10-02 13:00:06,646 pykolab.conf DEBUG [6082]: Setting answer_yes to False (from CLI, not checked)
2012-10-02 13:00:06,646 pykolab.conf DEBUG [6082]: Setting quiet to False (from CLI, not checked)
2012-10-02 13:00:06,646 pykolab.conf DEBUG [6082]: Setting fqdn to 'kolab.<MYDOMAIN>.org' (from CLI, not checked)
2012-10-02 13:00:06,647 pykolab.conf DEBUG [6082]: Setting anonymous to False (from CLI, not checked)
2012-10-02 13:00:06,647 pykolab.conf DEBUG [6082]: Setting debuglevel to 9 (from CLI, verified)
2012-10-02 13:00:06,647 pykolab.conf DEBUG [6082]: Setting timezone to 'Asia/<MYPLACE>' (from CLI, not checked)
2012-10-02 13:00:06,647 pykolab.conf DEBUG [6082]: Setting logfile to '/var/log/kolab/pykolab.log' (from CLI, not checked)
Restarting web server: apache2.
update-rc.d: using dependency based boot sequencing
2012-10-02 13:00:08,945 pykolab.conf DEBUG [6082]: Setting kolab_default_locale to 'en_US' (from defaults)
2012-10-02 13:00:08,946 pykolab.conf DEBUG [6082]: Setting mail_attributes to ['mail', 'alias'] (from defaults)
2012-10-02 13:00:08,947 pykolab.conf DEBUG [6082]: Setting mailserver_attribute to 'mailhost' (from defaults)
2012-10-02 13:00:08,947 pykolab.conf DEBUG [6082]: Setting loglevel to 50 (from defaults)
2012-10-02 13:00:08,948 pykolab.conf DEBUG [6082]: Setting imap_virtual_domains to 'userid' (from defaults)
2012-10-02 13:00:08,948 pykolab.conf DEBUG [6082]: Setting cyrus_annotations_retry_interval to 1 (from defaults)
2012-10-02 13:00:08,949 pykolab.conf DEBUG [6082]: Setting ldap_unique_attribute to 'nsuniqueid' (from defaults)
2012-10-02 13:00:08,949 pykolab.conf DEBUG [6082]: Setting address_search_attrs to ['mail', 'alias'] (from defaults)
2012-10-02 13:00:08,950 pykolab.conf DEBUG [6082]: Setting config_file to '/etc/kolab/kolab.conf' (from the default values for CLI options)
2012-10-02 13:00:08,950 pykolab.conf DEBUG [6082]: Setting loglevel to 'CRITICAL' (from the default values for CLI options)
2012-10-02 13:00:08,951 pykolab.conf DEBUG [6082]: Setting answer_yes to False (from the default values for CLI options)
2012-10-02 13:00:08,951 pykolab.conf DEBUG [6082]: Setting quiet to False (from the default values for CLI options)
2012-10-02 13:00:08,952 pykolab.conf DEBUG [6082]: Setting fqdn to 'kolab.<MYDOMAIN>.org' (from the default values for CLI options)
2012-10-02 13:00:08,952 pykolab.conf DEBUG [6082]: Setting anonymous to False (from the default values for CLI options)
2012-10-02 13:00:08,953 pykolab.conf DEBUG [6082]: Setting debuglevel to 0 (from the default values for CLI options)
2012-10-02 13:00:08,953 pykolab.conf DEBUG [6082]: Setting timezone to None (from the default values for CLI options)
2012-10-02 13:00:08,954 pykolab.conf DEBUG [6082]: Setting logfile to '/var/log/kolab/pykolab.log' (from the default values for CLI options)
2012-10-02 13:00:08,954 pykolab.conf DEBUG [6082]: Setting options from configuration file
2012-10-02 13:00:08,955 pykolab.conf DEBUG [6082]: Reading configuration file /etc/kolab/kolab.conf
2012-10-02 13:00:08,963 pykolab.conf DEBUG [6082]: Setting config_file to '/etc/kolab/kolab.conf' (from CLI, verified)
2012-10-02 13:00:08,963 pykolab.conf DEBUG [6082]: Setting loglevel to 'CRITICAL' (from CLI, not checked)
2012-10-02 13:00:08,964 pykolab.conf DEBUG [6082]: Setting answer_yes to False (from CLI, not checked)
2012-10-02 13:00:08,964 pykolab.conf DEBUG [6082]: Setting quiet to False (from CLI, not checked)
2012-10-02 13:00:08,965 pykolab.conf DEBUG [6082]: Setting fqdn to 'kolab.<MYDOMAIN>.org' (from CLI, not checked)
2012-10-02 13:00:08,965 pykolab.conf DEBUG [6082]: Setting anonymous to False (from CLI, not checked)
2012-10-02 13:00:08,966 pykolab.conf DEBUG [6082]: Setting debuglevel to 9 (from CLI, verified)
2012-10-02 13:00:08,966 pykolab.conf DEBUG [6082]: Setting timezone to 'Asia/<MYPLACE>' (from CLI, not checked)
2012-10-02 13:00:08,966 pykolab.conf DEBUG [6082]: Setting logfile to '/var/log/kolab/pykolab.log' (from CLI, not checked)
2012-10-02 13:00:08,966 pykolab.setup ERROR Z-Push is not installed on this system
2012-10-02 13:00:08,967 pykolab.conf DEBUG [6082]: Setting kolab_default_locale to 'en_US' (from defaults)
2012-10-02 13:00:08,967 pykolab.conf DEBUG [6082]: Setting mail_attributes to ['mail', 'alias'] (from defaults)
2012-10-02 13:00:08,967 pykolab.conf DEBUG [6082]: Setting mailserver_attribute to 'mailhost' (from defaults)
2012-10-02 13:00:08,968 pykolab.conf DEBUG [6082]: Setting loglevel to 50 (from defaults)
2012-10-02 13:00:08,968 pykolab.conf DEBUG [6082]: Setting imap_virtual_domains to 'userid' (from defaults)
2012-10-02 13:00:08,968 pykolab.conf DEBUG [6082]: Setting cyrus_annotations_retry_interval to 1 (from defaults)
2012-10-02 13:00:08,968 pykolab.conf DEBUG [6082]: Setting ldap_unique_attribute to 'nsuniqueid' (from defaults)
2012-10-02 13:00:08,968 pykolab.conf DEBUG [6082]: Setting address_search_attrs to ['mail', 'alias'] (from defaults)
2012-10-02 13:00:08,968 pykolab.conf DEBUG [6082]: Setting config_file to '/etc/kolab/kolab.conf' (from the default values for CLI options)
2012-10-02 13:00:08,968 pykolab.conf DEBUG [6082]: Setting loglevel to 'CRITICAL' (from the default values for CLI options)
2012-10-02 13:00:08,969 pykolab.conf DEBUG [6082]: Setting answer_yes to False (from the default values for CLI options)
2012-10-02 13:00:08,969 pykolab.conf DEBUG [6082]: Setting quiet to False (from the default values for CLI options)
2012-10-02 13:00:08,969 pykolab.conf DEBUG [6082]: Setting fqdn to 'kolab.<MYDOMAIN>.org' (from the default values for CLI options)
2012-10-02 13:00:08,969 pykolab.conf DEBUG [6082]: Setting anonymous to False (from the default values for CLI options)
2012-10-02 13:00:08,969 pykolab.conf DEBUG [6082]: Setting debuglevel to 0 (from the default values for CLI options)
2012-10-02 13:00:08,969 pykolab.conf DEBUG [6082]: Setting timezone to None (from the default values for CLI options)
2012-10-02 13:00:08,970 pykolab.conf DEBUG [6082]: Setting logfile to '/var/log/kolab/pykolab.log' (from the default values for CLI options)
2012-10-02 13:00:08,970 pykolab.conf DEBUG [6082]: Setting options from configuration file
2012-10-02 13:00:08,970 pykolab.conf DEBUG [6082]: Reading configuration file /etc/kolab/kolab.conf
2012-10-02 13:00:08,972 pykolab.conf DEBUG [6082]: Setting config_file to '/etc/kolab/kolab.conf' (from CLI, verified)
2012-10-02 13:00:08,972 pykolab.conf DEBUG [6082]: Setting loglevel to 'CRITICAL' (from CLI, not checked)
2012-10-02 13:00:08,972 pykolab.conf DEBUG [6082]: Setting answer_yes to False (from CLI, not checked)
2012-10-02 13:00:08,973 pykolab.conf DEBUG [6082]: Setting quiet to False (from CLI, not checked)
2012-10-02 13:00:08,973 pykolab.conf DEBUG [6082]: Setting fqdn to 'kolab.<MYDOMAIN>.org' (from CLI, not checked)
2012-10-02 13:00:08,973 pykolab.conf DEBUG [6082]: Setting anonymous to False (from CLI, not checked)
2012-10-02 13:00:08,973 pykolab.conf DEBUG [6082]: Setting debuglevel to 9 (from CLI, verified)
2012-10-02 13:00:08,973 pykolab.conf DEBUG [6082]: Setting timezone to 'Asia/<MYPLACE>' (from CLI, not checked)
2012-10-02 13:00:08,973 pykolab.conf DEBUG [6082]: Setting logfile to '/var/log/kolab/pykolab.log' (from CLI, not checked)
2012-10-02 13:00:08,974 pykolab.setup ERROR Free/Busy is not installed on this system
2012-10-02 13:00:08,974 pykolab.conf DEBUG [6082]: Setting kolab_default_locale to 'en_US' (from defaults)
2012-10-02 13:00:08,974 pykolab.conf DEBUG [6082]: Setting mail_attributes to ['mail', 'alias'] (from defaults)
2012-10-02 13:00:08,974 pykolab.conf DEBUG [6082]: Setting mailserver_attribute to 'mailhost' (from defaults)
2012-10-02 13:00:08,975 pykolab.conf DEBUG [6082]: Setting loglevel to 50 (from defaults)
2012-10-02 13:00:08,975 pykolab.conf DEBUG [6082]: Setting imap_virtual_domains to 'userid' (from defaults)
2012-10-02 13:00:08,975 pykolab.conf DEBUG [6082]: Setting cyrus_annotations_retry_interval to 1 (from defaults)
2012-10-02 13:00:08,975 pykolab.conf DEBUG [6082]: Setting ldap_unique_attribute to 'nsuniqueid' (from defaults)
2012-10-02 13:00:08,975 pykolab.conf DEBUG [6082]: Setting address_search_attrs to ['mail', 'alias'] (from defaults)
2012-10-02 13:00:08,975 pykolab.conf DEBUG [6082]: Setting config_file to '/etc/kolab/kolab.conf' (from the default values for CLI options)
2012-10-02 13:00:08,976 pykolab.conf DEBUG [6082]: Setting loglevel to 'CRITICAL' (from the default values for CLI options)
2012-10-02 13:00:08,976 pykolab.conf DEBUG [6082]: Setting answer_yes to False (from the default values for CLI options)
2012-10-02 13:00:08,976 pykolab.conf DEBUG [6082]: Setting quiet to False (from the default values for CLI options)
2012-10-02 13:00:08,976 pykolab.conf DEBUG [6082]: Setting fqdn to 'kolab.<MYDOMAIN>.org' (from the default values for CLI options)
2012-10-02 13:00:08,976 pykolab.conf DEBUG [6082]: Setting anonymous to False (from the default values for CLI options)
2012-10-02 13:00:08,976 pykolab.conf DEBUG [6082]: Setting debuglevel to 0 (from the default values for CLI options)
2012-10-02 13:00:08,976 pykolab.conf DEBUG [6082]: Setting timezone to None (from the default values for CLI options)
2012-10-02 13:00:08,977 pykolab.conf DEBUG [6082]: Setting logfile to '/var/log/kolab/pykolab.log' (from the default values for CLI options)
2012-10-02 13:00:08,977 pykolab.conf DEBUG [6082]: Setting options from configuration file
2012-10-02 13:00:08,977 pykolab.conf DEBUG [6082]: Reading configuration file /etc/kolab/kolab.conf
2012-10-02 13:00:08,979 pykolab.conf DEBUG [6082]: Setting config_file to '/etc/kolab/kolab.conf' (from CLI, verified)
2012-10-02 13:00:08,979 pykolab.conf DEBUG [6082]: Setting loglevel to 'CRITICAL' (from CLI, not checked)
2012-10-02 13:00:08,979 pykolab.conf DEBUG [6082]: Setting answer_yes to False (from CLI, not checked)
2012-10-02 13:00:08,980 pykolab.conf DEBUG [6082]: Setting quiet to False (from CLI, not checked)
2012-10-02 13:00:08,980 pykolab.conf DEBUG [6082]: Setting fqdn to 'kolab.<MYDOMAIN>.org' (from CLI, not checked)
2012-10-02 13:00:08,980 pykolab.conf DEBUG [6082]: Setting anonymous to False (from CLI, not checked)
2012-10-02 13:00:08,980 pykolab.conf DEBUG [6082]: Setting debuglevel to 9 (from CLI, verified)
2012-10-02 13:00:08,980 pykolab.conf DEBUG [6082]: Setting timezone to 'Asia/<MYPLACE>' (from CLI, not checked)
2012-10-02 13:00:08,980 pykolab.conf DEBUG [6082]: Setting logfile to '/var/log/kolab/pykolab.log' (from CLI, not checked)
Stopping : .
Waiting for complete shutdown...
update-rc.d: using dependency based boot sequencing
update-rc.d: using dependency based boot sequencing
2012-10-02 13:00:09,440 pykolab.conf DEBUG [6082]: Setting kolab_default_locale to 'en_US' (from defaults)
2012-10-02 13:00:09,440 pykolab.conf DEBUG [6082]: Setting mail_attributes to ['mail', 'alias'] (from defaults)
2012-10-02 13:00:09,441 pykolab.conf DEBUG [6082]: Setting mailserver_attribute to 'mailhost' (from defaults)
2012-10-02 13:00:09,442 pykolab.conf DEBUG [6082]: Setting loglevel to 50 (from defaults)
2012-10-02 13:00:09,442 pykolab.conf DEBUG [6082]: Setting imap_virtual_domains to 'userid' (from defaults)
2012-10-02 13:00:09,443 pykolab.conf DEBUG [6082]: Setting cyrus_annotations_retry_interval to 1 (from defaults)
2012-10-02 13:00:09,443 pykolab.conf DEBUG [6082]: Setting ldap_unique_attribute to 'nsuniqueid' (from defaults)
2012-10-02 13:00:09,444 pykolab.conf DEBUG [6082]: Setting address_search_attrs to ['mail', 'alias'] (from defaults)
2012-10-02 13:00:09,444 pykolab.conf DEBUG [6082]: Setting config_file to '/etc/kolab/kolab.conf' (from the default values for CLI options)
2012-10-02 13:00:09,445 pykolab.conf DEBUG [6082]: Setting loglevel to 'CRITICAL' (from the default values for CLI options)
2012-10-02 13:00:09,445 pykolab.conf DEBUG [6082]: Setting answer_yes to False (from the default values for CLI options)
2012-10-02 13:00:09,446 pykolab.conf DEBUG [6082]: Setting quiet to False (from the default values for CLI options)
2012-10-02 13:00:09,447 pykolab.conf DEBUG [6082]: Setting fqdn to 'kolab.<MYDOMAIN>.org' (from the default values for CLI options)
2012-10-02 13:00:09,447 pykolab.conf DEBUG [6082]: Setting anonymous to False (from the default values for CLI options)
2012-10-02 13:00:09,448 pykolab.conf DEBUG [6082]: Setting debuglevel to 0 (from the default values for CLI options)
2012-10-02 13:00:09,448 pykolab.conf DEBUG [6082]: Setting timezone to None (from the default values for CLI options)
2012-10-02 13:00:09,449 pykolab.conf DEBUG [6082]: Setting logfile to '/var/log/kolab/pykolab.log' (from the default values for CLI options)
2012-10-02 13:00:09,449 pykolab.conf DEBUG [6082]: Setting options from configuration file
2012-10-02 13:00:09,450 pykolab.conf DEBUG [6082]: Reading configuration file /etc/kolab/kolab.conf
2012-10-02 13:00:09,455 pykolab.conf DEBUG [6082]: Setting config_file to '/etc/kolab/kolab.conf' (from CLI, verified)
2012-10-02 13:00:09,455 pykolab.conf DEBUG [6082]: Setting loglevel to 'CRITICAL' (from CLI, not checked)
2012-10-02 13:00:09,455 pykolab.conf DEBUG [6082]: Setting answer_yes to False (from CLI, not checked)
2012-10-02 13:00:09,456 pykolab.conf DEBUG [6082]: Setting quiet to False (from CLI, not checked)
2012-10-02 13:00:09,456 pykolab.conf DEBUG [6082]: Setting fqdn to 'kolab.<MYDOMAIN>.org' (from CLI, not checked)
2012-10-02 13:00:09,456 pykolab.conf DEBUG [6082]: Setting anonymous to False (from CLI, not checked)
2012-10-02 13:00:09,456 pykolab.conf DEBUG [6082]: Setting debuglevel to 9 (from CLI, verified)
2012-10-02 13:00:09,456 pykolab.conf DEBUG [6082]: Setting timezone to 'Asia/<MYPLACE>' (from CLI, not checked)
2012-10-02 13:00:09,456 pykolab.conf DEBUG [6082]: Setting logfile to '/var/log/kolab/pykolab.log' (from CLI, not checked)
update-rc.d: using dependency based boot sequencing