We truncated the diff of some files because they were too big.
If you want to see the full diff for every file, click here.
Overview
Request 2683 (accepted)
Release of version 0.4.3
- Created by vanmeeuwen about 5 years ago
- In state accepted
iRony.spec
Changed
x
1
2
%global _ap_sysconfdir %{_sysconfdir}/%{httpd_name}
3
4
Name: iRony
5
-Version: 0.4.2
6
-Release: 4%{?dist}
7
+Version: 0.4.3
8
+Release: 1%{?dist}
9
Summary: DAV for Kolab Groupware
10
11
Group: Applications/Internet
12
13
Source1: iRony.conf
14
Source2: iRony.logrotate
15
16
-Patch0001: 0001-Avoid-refering-to-kolab_auth-if-it-isn-t-actually-th.patch
17
-Patch0002: 0001-Support-shortlogins-via-the-username_domain-configur.patch
18
-
19
BuildArch: noarch
20
21
Requires: chwala >= 0.5.2
22
23
%prep
24
%setup -q
25
26
-%patch0001 -p1
27
-%patch0002 -p1
28
-
29
%build
30
rm -rvf vendor/sabre
31
32
33
%attr(0770,%{httpd_user},%{httpd_group}) %{_localstatedir}/log/%{name}
34
35
%changelog
36
+* Thu Jan 16 2020 Jeroen van Meeuwen <vanmeeuwen@kolabsys.com> - 0.4.3-1
37
+- Release of version 0.4.3
38
+
39
* Tue Apr 23 2019 Christian Mollekopf (Kolab Systems) <mollekopf@kolabsys.com> - 0.4.2-4
40
- Support shortlogins via the username_domain configuration option
41
42
0001-Avoid-refering-to-kolab_auth-if-it-isn-t-actually-th.patch
Deleted
29
1
2
-From ea645099ea398310270218c32ef9b6d068fb58fa Mon Sep 17 00:00:00 2001
3
-From: "Jeroen van Meeuwen (Kolab Systems)" <vanmeeuwen@kolabsys.com>
4
-Date: Thu, 11 Apr 2019 12:47:47 +0200
5
-Subject: [PATCH] Avoid refering to kolab_auth if it isn't actually there
6
-
7
----
8
- lib/Kolab/DAV/Auth/HTTPBasic.php | 4 +++-
9
- 1 file changed, 3 insertions(+), 1 deletion(-)
10
-
11
-diff --git a/lib/Kolab/DAV/Auth/HTTPBasic.php b/lib/Kolab/DAV/Auth/HTTPBasic.php
12
-index 4ba5ddf..616c752 100644
13
---- a/lib/Kolab/DAV/Auth/HTTPBasic.php
14
-+++ b/lib/Kolab/DAV/Auth/HTTPBasic.php
15
-@@ -101,7 +101,9 @@ class HTTPBasic extends DAV\Auth\Backend\AbstractBasic
16
- $error_str = rcube::get_instance()->get_storage()->get_error_str();
17
- }
18
-
19
-- \kolab_auth::log_login_error($auth['user'], $error_str ?: $error);
20
-+ if (class_exists('kolab_auth')) {
21
-+ \kolab_auth::log_login_error($auth['user'], $error_str ?: $error);
22
-+ }
23
-
24
- // IMAP server failure... send 503 error
25
- if ($error == rcube_imap_generic::ERROR_BAD) {
26
---
27
-2.20.1
28
-
29
0001-Support-shortlogins-via-the-username_domain-configur.patch
Deleted
55
1
2
-From 51ba8a44fbe920b901b1cdd07777dfe3a45b80db Mon Sep 17 00:00:00 2001
3
-From: Christian Mollekopf <mollekopf@kolabsys.com>
4
-Date: Wed, 17 Apr 2019 11:48:36 +0200
5
-Subject: [PATCH] Support shortlogins via the username_domain configuration
6
- option.
7
-
8
-Summary: Same logic as roundcubemail/program/lib/Roundcube/rcube_imap.php
9
-
10
-Differential Revision: https://git.kolab.org/D755
11
----
12
- lib/Kolab/DAV/Auth/HTTPBasic.php | 19 +++++++++++++++++++
13
- 1 file changed, 19 insertions(+)
14
-
15
-diff --git a/lib/Kolab/DAV/Auth/HTTPBasic.php b/lib/Kolab/DAV/Auth/HTTPBasic.php
16
-index 616c752..687c4a5 100644
17
---- a/lib/Kolab/DAV/Auth/HTTPBasic.php
18
-+++ b/lib/Kolab/DAV/Auth/HTTPBasic.php
19
-@@ -175,6 +175,7 @@ class HTTPBasic extends DAV\Auth\Backend\AbstractBasic
20
- $storage = $rcube->get_storage();
21
- $login_lc = $rcube->config->get('login_lc');
22
- $default_port = $rcube->config->get('default_port', 143);
23
-+ $username_domain = $rcube->config->get('username_domain');
24
-
25
- // parse $host
26
- $a_host = parse_url($host);
27
-@@ -193,6 +194,24 @@ class HTTPBasic extends DAV\Auth\Backend\AbstractBasic
28
- $port = $default_port;
29
- }
30
-
31
-+ // Check if we need to add/force domain to username
32
-+ if (!empty($username_domain)) {
33
-+ $domain = is_array($username_domain) ? $username_domain[$host] : $username_domain;
34
-+
35
-+ if ($domain = rcube_utils::parse_host((string)$domain, $host)) {
36
-+ $pos = strpos($username, '@');
37
-+
38
-+ // force configured domains
39
-+ if ($pos !== false && $rcube->config->get('username_domain_forced')) {
40
-+ $username = substr($username, 0, $pos) . '@' . $domain;
41
-+ }
42
-+ // just add domain if not specified
43
-+ else if ($pos === false) {
44
-+ $username .= '@' . $domain;
45
-+ }
46
-+ }
47
-+ }
48
-+
49
- // Convert username to lowercase. If storage backend
50
- // is case-insensitive we need to store always the same username
51
- if ($login_lc) {
52
---
53
-2.20.1
54
-
55
debian.changelog
Changed
11
1
2
+irony (0.4.3-1~kolab1) unstable; urgency=low
3
+
4
+ * Release of version 0.4.3
5
+
6
+ -- Jeroen van Meeuwen <vanmeeuwen@kolabsys.com> Thu, 16 Jan 2020 12:12:13 +0100
7
+
8
irony (0.4.2-1~kolab6) unstable; urgency=low
9
10
* Support shortlogins via the username_domain configuration option.
11
debian.series
Changed
5
1
2
add-sabre21-path-for-debian.patch -p1
3
-0001-Avoid-refering-to-kolab_auth-if-it-isn-t-actually-th.patch -p1
4
-0001-Support-shortlogins-via-the-username_domain-configur.patch -p1
5
iRony-0.4.2.tar.gz -> iRony-0.4.3.tar.gz
Changed
iRony.dsc
Changed
17
1
2
Source: irony
3
Binary: irony
4
Architecture: all
5
-Version: 0.4.2-1~kolab6
6
+Version: 0.4.3-1~kolab1
7
Maintainer: Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com>
8
Uploaders: Paul Klos <kolab@klos2day.nl>
9
Homepage: http://www.kolab.org/
10
11
Package-List:
12
iRony deb admin extra
13
Files:
14
- 00000000000000000000000000000000 0 iRony-0.4.2.tar.gz
15
+ 00000000000000000000000000000000 0 iRony-0.4.3.tar.gz
16
00000000000000000000000000000000 0 debian.tar.gz
17
Refresh
Refresh
Login required, please
login
in order to comment
Request History
vanmeeuwen created request about 5 years ago
Release of version 0.4.3
vanmeeuwen accepted review about 5 years ago
Accept
vanmeeuwen accepted review about 5 years ago
Accept
vanmeeuwen approved review about 5 years ago
Accept
vanmeeuwen accepted request about 5 years ago
Accept