diff options
author | Richard Bos <richard@radoeka.nl> | 2008-08-14 19:17:42 (GMT) |
---|---|---|
committer | Richard Bos <richard@radoeka.nl> | 2008-08-14 19:17:42 (GMT) |
commit | babd6a6d986f227a40bb0f658935215086309745 (patch) | |
tree | 5609e7cd0db5b9790376ceadf679d92016cac935 | |
parent | 20848d28406a6eae62f8cd3bf2683f4be5b315bb (diff) | |
download | perl-Kolab-babd6a6d986f227a40bb0f658935215086309745.tar.gz |
add syncrepl support, see kolab/issue1755
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | lib/Kolab.pm | 1 |
2 files changed, 5 insertions, 0 deletions
@@ -1,3 +1,7 @@ +2008-08-14 Richard Bos <richard@radoeka.nl> + + * lib/Kolab.pm: add syncrepl support, see kolab/issue1755 + 2008-07-17 Richard Bos <richard@radoeka.nl> * lib/Kolab/LDAP/Backend/syncrepl.pm: add kolab/issue1755 diff --git a/lib/Kolab.pm b/lib/Kolab.pm index efd6a1a..e6e7868 100644 --- a/lib/Kolab.pm +++ b/lib/Kolab.pm @@ -273,6 +273,7 @@ sub reloadConfig # fds: Fedora Directory Server # ad: Microsoft Active Directory $config{'directory_mode'} = 'slurpd' if (!exists $config{'directory_mode'}); + $config{'directory_replication_mode_is_syncrepl'} = 'TRUE' if ($config{'directory_mode'} eq 'syncrepl'); # `conn_refresh_period' specifies how many minutes to wait before forceably # tearing down the change listener connection, re-syncing, and re-connecting. |