Projects
Kolab:16:TestingLinked
pykolab-python3
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 8
View file
cyrus-imapd.conf-cert-paths.patch
Changed
@@ -1,20 +1,24 @@ diff -ur pykolab-0.8.6.orig/share/templates/guam.sys.config.tpl pykolab-0.8.6/share/templates/guam.sys.config.tpl --- pykolab-0.8.6.orig/share/templates/guam.sys.config.tpl 2016-11-18 12:24:34.000000000 +0100 +++ pykolab-0.8.6/share/templates/guam.sys.config.tpl 2016-11-18 13:35:14.350503922 +0100 -@@ -26,7 +26,7 @@ +@@ -26,9 +26,7 @@ }, { tls_config, -- { certfile, "/etc/pki/cyrus-imapd/cyrus-imapd.pem" } +- { certfile, "/etc/pki/cyrus-imapd/cyrus-imapd.pem" }, +- { cacertfile, "/etc/pki/cyrus-imapd/cyrus-imapd-ca.pem" }, +- { keyfile, "/etc/pki/cyrus-imapd/cyrus-imapd-key.pem" } + { certfile, "/etc/ssl/private/cyrus-imapd.pem" } } -@@ -43,7 +43,7 @@ +@@ -43,9 +43,7 @@ }, { tls_config, -- { certfile, "/etc/pki/cyrus-imapd/cyrus-imapd.pem" } +- { certfile, "/etc/pki/cyrus-imapd/cyrus-imapd.pem" }, +- { cacertfile, "/etc/pki/cyrus-imapd/cyrus-imapd-ca.pem" }, +- { keyfile, "/etc/pki/cyrus-imapd/cyrus-imapd-key.pem" } + { certfile, "/etc/ssl/private/cyrus-imapd.pem" } }
View file
debian.changelog
Changed
@@ -1,4 +1,4 @@ -pykolab (0.9.0-0~kolab3) unstable; urgency=low +pykolab (0.9.0-0~kolab4) unstable; urgency=low * Release of version 0.9.0
View file
debian.control
Changed
@@ -45,6 +45,7 @@ python3-pymysql, python3-six, python3-sqlalchemy, + ${python3:Depends}, ${misc:Depends}, ${shlibs:Depends}, ${ucs:Depends} @@ -57,6 +58,7 @@ python3, python3-augeas, python3-cheetah, + ${python3:Depends}, ${misc:Depends}, ${ucs:Depends} Description: Command-line utilities for Kolab @@ -64,7 +66,13 @@ Package: kolab-conf Architecture: all -Depends: pykolab (= ${binary:Version}), kolab-ldap, ${python3:Depends}, python3, ${misc:Depends}, python3-augeas, python3-cheetah +Depends: pykolab (= ${binary:Version}), + kolab-ldap, + python3, + ${python3:Depends}, + ${misc:Depends}, + python3-augeas, + python3-cheetah Description: Configuration management for Kolab This package includes configuration management utilities for Kolab Groupware @@ -74,6 +82,7 @@ Depends: lsb-base (>= 3.0-6), pykolab (= ${binary:Version}), python3, + ${python3:Depends}, sasl2-bin, ${misc:Depends} Description: SASL Authentication Daemon for Kolab @@ -81,14 +90,14 @@ Package: kolab-server Architecture: all -Depends: pykolab (= ${binary:Version}), python3, ${misc:Depends}, lsb-base (>= 3.0-6) +Depends: pykolab (= ${binary:Version}), python3, ${python3:Depends}, ${misc:Depends}, lsb-base (>= 3.0-6) Description: Kolab Groupware Server Server daemon synchronizing the mutations between various Kolab Groupware components. Package: kolab-telemetry Architecture: all -Depends: kolab-cli (= ${binary:Version}), python3, ${misc:Depends} +Depends: kolab-cli (= ${binary:Version}), python3, ${python3:Depends}, ${misc:Depends} Description: Kolab Telemetry Logging Capabilities Cyrus IMAP Telemetry logging handling capabilities for Kolab Groupware @@ -98,6 +107,7 @@ python3, python3-kolabformat, ${misc:Depends}, + ${python3:Depends}, python3-icalendar, python3-tzlocal Description: Kolab XML format wrapper for pykolab @@ -109,6 +119,7 @@ kolab-xml (= ${binary:Version}), python3-gnupg, python3, + ${python3:Depends}, ${misc:Depends}, lsb-base (>= 3.0-6), python3-dateutil,
View file
debian.rules
Changed
@@ -10,11 +10,14 @@ export DH_VERBOSE=1 %: - dh $@ --with python3 --with autotools-dev --with autoreconf + dh $@ --with python3 --without python2 --with autotools-dev --with autoreconf override_dh_auto_test: dh_auto_test || echo “ignoring test failure” +override_dh_python3: + dh_python3 --shebang=/usr/bin/python3 + override_dh_install: #dh_install --list-missing if -x "$$(which univention-install-config-registry 2>/dev/null)" ; then \
View file
pykolab-0.9.0.tar.gz/bin/kolab_parse_telemetry.py
Changed
@@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python3 # # Copyright 2010-2013 Kolab Systems AG (http://www.kolabsys.com) #
View file
pykolab-0.9.0.tar.gz/bin/kolab_smtp_access_policy.py
Changed
@@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python3 # # Copyright 2010-2013 Kolab Systems AG (http://www.kolabsys.com) #
View file
pykolab-0.9.0.tar.gz/conf/kolab.conf
Changed
@@ -410,7 +410,7 @@ ; The URI to use to connect to IMAP. Note that pykolab itself can detect whether ; or not Cyrus IMAP is deployed in a Murder topology, and should be able to ; connect to individual backends as well. -uri = imaps://localhost:993 +uri = imaps://localhost:9993 ; The login username to use for global administration. admin_login = cyrus-admin ; The corresponding password.
View file
pykolab-0.9.0.tar.gz/ext/python/Tools/freeze/freeze.py
Changed
@@ -1,4 +1,4 @@ -#! /usr/bin/env python +#! /usr/bin/env python3 """Freeze a Python script into a binary.
View file
pykolab-0.9.0.tar.gz/kolab-cli.py
Changed
@@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python3 # # Copyright 2010-2013 Kolab Systems AG (http://www.kolabsys.com) #
View file
pykolab-0.9.0.tar.gz/pykolab/auth/ldap/syncrepl.py
Changed
@@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python3 try: import anydbm
View file
pykolab-0.9.0.tar.gz/pykolab/setup/setup_imap.py
Changed
@@ -61,7 +61,7 @@ partition_default = "/var/spool/cyrus/mail/" imapd_settings = { - "ldap_servers": conf.get('ldap', 'ldap_uri'), + "ldap_uri": conf.get('ldap', 'ldap_uri'), "ldap_base": conf.get('ldap', 'base_dn'), "ldap_bind_dn": conf.get('ldap', 'service_bind_dn'), "ldap_password": conf.get('ldap', 'service_bind_pw'),
View file
pykolab-0.9.0.tar.gz/pykolab/telemetry.py
Changed
@@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python3 # # Copyright 2010-2013 Kolab Systems AG (http://www.kolabsys.com) #
View file
pykolab-0.9.0.tar.gz/saslauthd.py
Changed
@@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python3 # # Copyright 2010-2013 Kolab Systems AG (http://www.kolabsys.com) #
View file
pykolab-0.9.0.tar.gz/setup-kolab.py
Changed
@@ -1,4 +1,4 @@ -#!/usr/bin/python -u +#!/usr/bin/python3 -u # -*- coding: utf-8 -*- # # Copyright 2010-2013 Kolab Systems AG (http://www.kolabsys.com)
View file
pykolab-0.9.0.tar.gz/share/templates/guam.sys.config.tpl
Changed
@@ -26,7 +26,9 @@ }, { tls_config, - { certfile, "/etc/pki/cyrus-imapd/cyrus-imapd.pem" } + { certfile, "/etc/pki/cyrus-imapd/cyrus-imapd.pem" }, + { cacertfile, "/etc/pki/cyrus-imapd/cyrus-imapd-ca.pem" }, + { keyfile, "/etc/pki/cyrus-imapd/cyrus-imapd-key.pem" } } @@ -43,7 +45,9 @@ }, { tls_config, - { certfile, "/etc/pki/cyrus-imapd/cyrus-imapd.pem" } + { certfile, "/etc/pki/cyrus-imapd/cyrus-imapd.pem" }, + { cacertfile, "/etc/pki/cyrus-imapd/cyrus-imapd-ca.pem" }, + { keyfile, "/etc/pki/cyrus-imapd/cyrus-imapd-key.pem" } }
View file
pykolab-0.9.0.tar.gz/share/templates/imapd.conf.tpl
Changed
@@ -14,7 +14,7 @@ auth_mech: pts pts_module: ldap ptloader_sock: /var/lib/imap/socket/ptsock -ldap_servers: $ldap_servers +ldap_uri: $ldap_uri ldap_sasl: 0 ldap_base: $ldap_base ldap_bind_dn: $ldap_bind_dn @@ -33,7 +33,7 @@ unixhierarchysep: 1 virtdomains: userid annotation_definitions: /etc/imapd.annotations.conf -sieve_extensions: fileinto reject envelope body vacation imapflags notify include regex subaddress relational copy date index +sieve_extensions: fileinto reject envelope body vacation imap4flags notify include regex subaddress relational copy date index allowallsubscribe: 0 allowusermoves: 1 altnamespace: 1
View file
pykolab-0.9.0.tar.gz/share/templates/roundcubemail/config.inc.php.tpl
Changed
@@ -13,8 +13,8 @@ \$config'mail_domain' = ''; // IMAP Server Settings - \$config'default_host' = 'tls://localhost'; - \$config'default_port' = 143; + \$config'default_host' = 'ssl://localhost'; + \$config'default_port' = 9993; \$config'imap_delimiter' = '/'; \$config'imap_force_lsub' = true;
View file
pykolab-0.9.0.tar.gz/ucs/kolab_sieve.py
Changed
@@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python3 # # Copyright 2010-2013 Kolab Systems AG (http://www.kolabsys.com) #
View file
pykolab-0.9.0.tar.gz/ucs/listener.py
Changed
@@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python3 # # Copyright 2010-2013 Kolab Systems AG (http://www.kolabsys.com) #
View file
pykolab-0.9.0.tar.gz/wallace.py
Changed
@@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python3 # # Copyright 2010-2013 Kolab Systems AG (http://www.kolabsys.com) #
View file
pykolab.dsc
Changed
@@ -2,7 +2,8 @@ Source: pykolab Binary: pykolab, kolab-cli, kolab-conf, kolab-saslauthd, kolab-server, kolab-telemetry, kolab-xml, wallace Architecture: all -Version: 0.9.0-0~kolab3 +Version: 0.9.0-0~kolab4 +DEBTRANSFORM-RELEASE: 1 Maintainer: Jeroen van Meeuwen <vanmeeuwen@kolabsys.com> Uploaders: Paul Klos <kolab@klos2day.nl> Homepage: http://www.kolab.org
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.