mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-01 03:29:35 +01:00
567e952fba
Merge of following commits from Trunk: r32609: * GroupDAV preference for addressbook-home-set (requires to register hooks) r32610: missing groupdav hooks r32611: fixed missing "users" of principal url in calendar-user-address-set r32615: as the pricipal of current user is influenced by GroupDAV prefs, we have to include them in the etag r32619: loop over existing addressbooks, to make sure each ab is only once in addressbook-home-set, even when selected multiple times in the prefs because of symbolic ab like "primary group" r32620: urlencode and decode account_lid in url to cope with group-names with space in it, which stall iPhone OS 4.2 devices r32621: fixed bug: GroupDAV/CardDAV PUT request to /addressbook/ changes owner, also checking now required ACL for moving contacts between addressbooks r32622: returning "403 Forbidden" if addressbook_bo->save() fails, happens when writing new entries in ABs without ADD rights r32623: * iCal on iPhone detects URL now correct reverted calendar-home-set to report only users calendar, as reporting multiple break propfind r32624: we need a real redirect, not just a proxy r32631: fixed working in GroupDAV prefs and translation
29 lines
1.1 KiB
Plaintext
Executable File
29 lines
1.1 KiB
Plaintext
Executable File
# EGroupware CalDav or CardDAV support
|
|
#
|
|
# $Id$
|
|
#
|
|
# This file can be copyied as .htaccess to your document root
|
|
# to support Mac or iPhone clients to autodetec CalDAV and CardDAV
|
|
# (currently Addressbook does NOT allow to specify our groupdav.php
|
|
# URL manually).
|
|
#
|
|
# As alternative an EGroupware install directly in the docroot or
|
|
# an unconditional redirect from the docroot to EGroupware's index.php
|
|
# will archive the same thing, as it redirects PROPFIND or OPTION
|
|
# requests to groupdav.php/ (many have such a redirect already in place).
|
|
#
|
|
# An other alternativ is to copy the PROPFIND/OPTIONS redirect from
|
|
# the top of EGroupware's index.php into your index.php in the docroot.
|
|
#
|
|
# Please note:
|
|
# - your Apache web server needs to be setup to read .htaccess files and
|
|
# allow use of the RewriteEngine directive (AllowOverride FileInfo).
|
|
# - you need to replace /egroupware with your EGroupware URL path eg. /egw
|
|
|
|
RewriteEngine On
|
|
RewriteBase /
|
|
|
|
RewriteRule ^.well-known/(caldav|carddav)$ /egroupware/groupdav.php/ [R]
|
|
RewriteCond %{REQUEST_METHOD} ^(PROPFIND|OPTIONS)$
|
|
RewriteRule ^/$ /egroupware/groupdav.php/ [R]
|