From 4555108baa63f0f14238f2f6a04a48b8f032d5bb Mon Sep 17 00:00:00 2001 From: "Jeroen van Meeuwen (Ergo Project)" Date: Fri, 22 Jul 2011 12:59:11 -0400 Subject: [PATCH] Use the freebusy configuration specified in /etc/roundcubemail/kolab.inc.php --- plugins/kolab_core/rcube_kolab.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/kolab_core/rcube_kolab.php b/plugins/kolab_core/rcube_kolab.php index 5a6d5cc3..3650f7b9 100644 --- a/plugins/kolab_core/rcube_kolab.php +++ b/plugins/kolab_core/rcube_kolab.php @@ -72,9 +72,11 @@ class rcube_kolab // Re-set LDAP/IMAP host config $ldap = array('server' => 'ldap://' . $_SESSION['imap_host'] . ':389'); $imap = array('server' => $_SESSION['imap_host'], 'port' => $_SESSION['imap_port']); + $freebusy = array('server' => $_SESSION['imap_host']); $conf['kolab']['ldap'] = array_merge($ldap, (array)$conf['kolab']['ldap']); $conf['kolab']['imap'] = array_merge($imap, (array)$conf['kolab']['imap']); + $conf['kolab']['freebusy'] = array_merge($freebusy, (array)$conf['kolab']['freebusy']); self::$config = &$conf; // pass the current IMAP authentication credentials to the Horde auth system