Follow instruction on INSTALL of project.

Edit file config.php, my CALDAV section is:

// ******************************
// BackendCalDAV settings
// ******************************
// %u is replaced by the username
// Using HTTPS URL is recommended
define('CALDAV_SERVER', 'https://MYSERVERHOSTNAME');
define('CALDAV_PORT', '443');
define('CALDAV_PATH', '/SOGo/dav/%u/Calendar/');
define('CALDAV_PERSONAL', 'personal');
define('CALDAV_URL', 'https://MYSERVERHOSTNAME/SOGo/dav/%u/Calendar/');
// Will ignore any change made on the mobile (true|false)
define('CALDAV_READONLY', false);


Edit backend/caldav.php, and replace row (in Logon function):

$this->_caldav = new CalDAVClient(CALDAV_SERVER . ":" . CALDAV_PORT .
$this->_caldav_path, $username, $password);

with:
$url = str_replace('%u', $username, CALDAV_URL);
$this->_caldav = new CalDAVClient($url, $username, $password);


bye bye



2013/4/17 Andy Tuinman <[email protected]>

> Can you please tell me the steps to do this i would love exchange and
> calendar to work. I don't care about contacts
>
> Thank you
> Op 17 apr. 2013 10:53 schreef "Fabio Onorini" <[email protected]> het
> volgende:
>
>> I don'know if this is correctly mailing list for this issus.
>>
>> On my sogo+openchange server I'm trying  PHP-push2 project.
>>
>> After some changes in configuration file, the service start correctly and
>> I can Add Exchange account on my devices.
>>
>> Mail and calendar apps are work correctly, but I can't use the
>> addressbook.
>>
>> After some changes on backend carddav file, on IPad and IPhone can use
>> also contacts, but on Android (2.3.6 and 4.1) and Windows phone devices
>> doesn't works.
>>
>> With carddav app on android I can correctly sync my contacts, but I
>> wouldn't use it.
>>
>> Can someone help me?
>> Have you my same problems?
>>
>> --
>> -----------------------
>> Fabio Onorini
>>
>


-- 
-----------------------
Fabio Onorini
-- 
[email protected]
https://inverse.ca/sogo/lists

Reply via email to