Changes of Revision 37

iRony.spec Changed
x
 
1
@@ -37,8 +37,8 @@
2
 %global _ap_sysconfdir %{_sysconfdir}/%{httpd_name}
3
 
4
 Name:           iRony
5
-Version:        0.4.6
6
-Release:       3%{?dist}
7
+Version:        0.4.7
8
+Release:       1%{?dist}
9
 Summary:        DAV for Kolab Groupware
10
 
11
 Group:          Applications/Internet
12
debian.changelog Changed
11
 
1
@@ -1,3 +1,9 @@
2
+irony (0.4.7-1~kolab1) unstable; urgency=low
3
+
4
+  * Disable unauthenticated access
5
+
6
+ -- Christian Mollekopf <mollekopf@apheleia-it.ch>  Sun, 15 Jan 2023 12:12:13 +0100
7
+
8
 irony (0.4.6-7~kolab1) unstable; urgency=low
9
 
10
   * sabre/vobject 4 compatiblity
11
iRony-0.4.6.tar.gz/public_html/index.php -> iRony-0.4.7.tar.gz/public_html/index.php Changed
13
 
1
@@ -151,7 +151,10 @@
2
 
3
 // register some plugins
4
 $server->addPlugin(new \Sabre\DAV\Auth\Plugin($auth_backend, 'KolabDAV'));
5
-$server->addPlugin(new \Sabre\DAVACL\Plugin());
6
+// Unauthenticated access doesn't work for us since we require credentials to get access to the data in the first place.
7
+$aclPlugin = new \Sabre\DAVACL\Plugin();
8
+$aclPlugin->allowUnauthenticatedAccess = false;
9
+$server->addPlugin($aclPlugin);
10
 
11
 if ($services'CALDAV') {
12
     $server->addPlugin(new \Kolab\CalDAV\Plugin());
13
iRony.dsc Changed
17
 
1
@@ -2,7 +2,7 @@
2
 Source: irony
3
 Binary: irony
4
 Architecture: all
5
-Version: 0.4.6-7~kolab1
6
+Version: 0.4.7-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
@@ -15,5 +15,5 @@
11
 Package-List:
12
  iRony deb admin extra
13
 Files:
14
- 00000000000000000000000000000000 0 iRony-0.4.6.tar.gz
15
+ 00000000000000000000000000000000 0 iRony-0.4.7.tar.gz
16
  00000000000000000000000000000000 0 debian.tar.gz
17