documented latest Apple Mac or iPhone autodetection findings for iCal and/or contact app

This commit is contained in:
Ralf Becker 2010-10-21 16:07:36 +00:00
parent ca4f237dc4
commit 99b6661856

View File

@ -1,4 +1,4 @@
# EGroupware CalDav or CardDAV support # EGroupware CalDav or CardDAV support for Apple apps (incl. iPhone)
# #
# $Id$ # $Id$
# #
@ -12,8 +12,22 @@
# will archive the same thing, as it redirects PROPFIND or OPTION # will archive the same thing, as it redirects PROPFIND or OPTION
# requests to groupdav.php/ (many have such a redirect already in place). # requests to groupdav.php/ (many have such a redirect already in place).
# #
# An other alternativ is to copy the PROPFIND/OPTIONS redirect from # iCal app does NOT allow multiple redirects, therefore it must be redirected
# the top of EGroupware's index.php into your index.php in the docroot. # directly to groupdav.php/ eg. by the following index.php in the docroot:
#
# <?php
# if ($_SERVER['REQUEST_METHOD'] == 'PROPFIND' || $_SERVER['REQUEST_METHOD'] == 'OPTIONS')
# {
# header("Location: /egroupware/groupdav.php/\n\n");
# }
# else
# {
# header("Location: /egroupware/\n\n");
# }
# exit;
#
# An other alternativ is to copy the above PROPFIND/OPTIONS redirect
# into your index.php in the docroot.
# #
# Please note: # Please note:
# - your Apache web server needs to be setup to read .htaccess files and # - your Apache web server needs to be setup to read .htaccess files and