Projects
Kolab:16:TestingLinked
pykolab
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 17
View file
pykolab.spec
Changed
@@ -29,7 +29,7 @@ Summary: Kolab Groupware Solution Name: pykolab -Version: 0.8.5 +Version: 0.8.6 Release: 1%{?dist} License: GPLv3+ Group: Applications/System @@ -580,6 +580,9 @@ %attr(0700,%{kolab_user},%{kolab_group}) %dir %{_var}/spool/pykolab/wallace %changelog +* Fri Nov 18 2016 Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> - 0.8.6-1 +- Release of version 0.8.6 + * Thu Oct 06 2016 Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> - 0.8.5-1 - Release of version 0.8.5
View file
debian.changelog
Changed
@@ -1,3 +1,9 @@ +pykolab (0.8.6-0~kolab1) unstable; urgency=low + + * Upstream release of version 0.8.6 + + -- Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> Fri, 18 Nov 2016 01:49:00 +0100 + pykolab (0.8.5-0~kolab1) unstable; urgency=low * Upstream release of version 0.8.5
View file
pykolab-0.8.5.tar.gz/bin/kolab_smtp_access_policy.py -> pykolab-0.8.6.tar.gz/bin/kolab_smtp_access_policy.py
Changed
@@ -1076,16 +1076,18 @@ if self.verify_authenticity() == False: reject(_("Unverifiable sender.")) - self.sasl_user_uses_alias = self.verify_alias() + if not self.sasl_user == None: + self.sasl_user_uses_alias = self.verify_alias() - if not self.sasl_user_uses_alias: - log.debug(_("Sender is not using an alias"), level=8) - self.sasl_user_is_delegate = self.verify_delegate() + if not self.sasl_user_uses_alias: + log.debug(_("Sender is not using an alias"), level=8) + self.sasl_user_is_delegate = self.verify_delegate() # If the authenticated user is using delegate functionality, apply the # recipient policy attribute for the envelope sender. if self.sasl_user_is_delegate == False and \ - self.sasl_user_uses_alias == False: + self.sasl_user_uses_alias == False and \ + not conf.allow_unauthenticated: reject(_("Sender uses unauthorized envelope sender address"))
View file
pykolab-0.8.5.tar.gz/configure.ac -> pykolab-0.8.6.tar.gz/configure.ac
Changed
@@ -1,4 +1,4 @@ -AC_INIT(pykolab, 0.8.5) +AC_INIT(pykolab, 0.8.6) AC_SUBST(RELEASE, 1) AC_CONFIG_SRCDIR(pykolab/constants.py.in)
View file
pykolab-0.8.5.tar.gz/pykolab/cli/cmd_delete_mailbox_acl.py -> pykolab-0.8.6.tar.gz/pykolab/cli/cmd_delete_mailbox_acl.py
Changed
@@ -60,10 +60,10 @@ print >> sys.stderr, _("No such folder %r") % (folder) else: - folders = imap.lm(folder) + folders = imap.list_folders(folder) for folder in folders: try: imap.set_acl(folder, identifier, '') except: # Mailbox no longer exists? - pass \ No newline at end of file + pass
View file
pykolab-0.8.5.tar.gz/pykolab/setup/setup_mta.py -> pykolab-0.8.6.tar.gz/pykolab/setup/setup_mta.py
Changed
@@ -480,11 +480,22 @@ amavisservice = 'amavisd.service' clamavservice = 'clamd@amavisd.service' + if os.path.isfile('/usr/lib/systemd/system/amavis.service'): amavisservice = 'amavis.service' + + if os.path.isfile('/lib/systemd/system/amavis.service'): + amavisservice = 'amavis.service' + if os.path.isfile('/usr/lib/systemd/system/clamd.service'): clamavservice = 'clamd.service' + if os.path.isfile('/lib/systemd/system/clamd.service'): + clamavservice = 'clamd.service' + + if os.path.isfile('/lib/systemd/system/clamav-daemon.service'): + clamavservice = 'clamav-daemon.service' + if os.path.isfile('/bin/systemctl'): subprocess.call('systemctl', 'restart', 'postfix.service') subprocess.call('systemctl', 'restart', amavisservice)
View file
pykolab-0.8.5.tar.gz/pykolab/setup/setup_roundcube.py -> pykolab-0.8.6.tar.gz/pykolab/setup/setup_roundcube.py
Changed
@@ -288,9 +288,13 @@ pass httpservice = 'httpd.service' + if os.path.isfile('/usr/lib/systemd/system/apache2.service'): httpservice = 'apache2.service' + if os.path.isdir('/lib/systemd/system/apache2.service.d'): + httpservice = 'apache2.service' + if os.path.isfile('/bin/systemctl'): subprocess.call('/bin/systemctl', 'restart', httpservice) elif os.path.isfile('/sbin/service'):
View file
pykolab-0.8.5.tar.gz/pykolab/setup/setup_syncroton.py -> pykolab-0.8.6.tar.gz/pykolab/setup/setup_syncroton.py
Changed
@@ -87,9 +87,13 @@ time.sleep(2) httpservice = 'httpd.service' + if os.path.isfile('/usr/lib/systemd/system/apache2.service'): httpservice = 'apache2.service' + if os.path.isdir('/lib/systemd/system/apache2.service.d'): + httpservice = 'apache2.service' + if os.path.isfile('/bin/systemctl'): subprocess.call('/bin/systemctl', 'restart', httpservice) elif os.path.isfile('/sbin/service'):
View file
pykolab.dsc
Changed
@@ -2,7 +2,7 @@ Source: pykolab Binary: pykolab, kolab-cli, kolab-conf, kolab-saslauthd, kolab-server, kolab-telemetry, kolab-xml, wallace Architecture: all -Version: 0.8.5-0~kolab1 +Version: 0.8.6-0~kolab1 Maintainer: Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> Uploaders: Paul Klos <kolab@klos2day.nl> Homepage: http://www.kolab.org @@ -40,5 +40,5 @@ pykolab deb python optional wallace deb python optional Files: - 00000000000000000000000000000000 0 pykolab-0.8.5.tar.gz + 00000000000000000000000000000000 0 pykolab-0.8.6.tar.gz 00000000000000000000000000000000 0 debian.tar.gz
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
.