2 commits - pykolab/cli share/templates

Jeroen van Meeuwen vanmeeuwen at kolabsys.com
Tue Oct 8 12:34:13 CEST 2013


 pykolab/cli/cmd_sync.py                          |    2 +-
 share/templates/roundcubemail/config.inc.php.tpl |    1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 8f8ab08651e43706a0a1b70f5f2c3bcc18e548c4
Author: Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen at kolabsys.com>
Date:   Tue Oct 8 12:34:01 2013 +0200

    Add kolab_files plugin

diff --git a/share/templates/roundcubemail/config.inc.php.tpl b/share/templates/roundcubemail/config.inc.php.tpl
index 4ec3469..df759e6 100644
--- a/share/templates/roundcubemail/config.inc.php.tpl
+++ b/share/templates/roundcubemail/config.inc.php.tpl
@@ -53,6 +53,7 @@
             'kolab_addressbook',
             'kolab_auth',
             'kolab_config',
+            'kolab_files',
             'kolab_folders',
             'libkolab',
             'libcalendaring',


commit da2304304246df3e0cf5bf17c46ffcb5e81cf7ce
Author: Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen at kolabsys.com>
Date:   Mon Oct 7 14:36:46 2013 +0200

    Use auth.list_domains() result correctly (#2306)

diff --git a/pykolab/cli/cmd_sync.py b/pykolab/cli/cmd_sync.py
index da75a71..184b748 100644
--- a/pykolab/cli/cmd_sync.py
+++ b/pykolab/cli/cmd_sync.py
@@ -47,7 +47,7 @@ def execute(*args, **kw):
 
     all_folders = []
 
-    for primary_domain,secondary_domains in domains:
+    for primary_domain in list(set(domains.values())):
         log.debug(_("Running for domain %s") % (primary_domain), level=8)
         auth.connect(primary_domain)
         start_time = time.time()




More information about the commits mailing list