-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to get it to work with SOGO dav backend. #63
Comments
Have you ever been able to get C'Dav to work? Currently facing a similiar issue, for me CardDAV is not working. |
When you enable debug log, you should get the full URL |
php-push-2 log: 07/05/2013 10:55:37 [24477] [ INFO] [marc] [androidc1558876726] BackendCardDAV->Logon('http://localhost:80/SOGo/dav/marc/Contacts/') sogo log: 127.0.0.1 - - [07/May/2013:10:55:37 GMT] "OPTIONS /SOGo/dav/marc/Contacts/ HTTP/1.1" 401 0/0 0.001 - - 0 apache log: 127.0.0.1 - - [07/May/2013:10:55:37 +0200] "OPTIONS /SOGo/dav/marc/Contacts/ HTTP/1.1" 401 197 "-" "CardDAV PHP/0.6" Somehow it seems to drop the Contacts part, when calling. |
Hey, first i want to say a big thank you. This is a great project. Pushing Mail and Calendar is working fine, way better than i ever expected. my config looks like this (for debugging i am trying carddav only): define('BACKEND_PROVIDER', "BackendCardDAV"); define('CARDDAV_SERVER', 'https://mail.myserver.de'); sogo.log shows: z-push.log shows: Any idea? Greets |
Did you got it working? |
I have email sync working ok.
But the caldav carddav is not working:
Here the config.php:
// **********************
// BackendCalDAV settings
// **********************
define('CALDAV_SERVER', 'https://myserver.local');
define('CALDAV_PORT', '443');
define('CALDAV_PATH', '/SOGo/dav/%u/Calendar/');
define('CALDAV_PERSONAL', 'personal'); //Personal CalDAV folder
And the combined backend config.php
'backends' => array(
'i' => array(
'name' => 'BackendIMAP',
'config' => self::$BackendIMAP_config,
),
/* 'z' => array(
'name' => 'BackendZarafa',
'config' => self::$BackendZarafa_config
),
/
'c' => array(
'name' => 'BackendCalDAV',
'config' => self::$BackendCalDAV_config,
),
/
'l' => array(
'name' => 'BackendLDAP',
'config' => self::$BackendLDAP_config,
),
*/
'd' => array(
'name' => 'BackendCardDAV',
'config' => self::$BackendCardDAV_config,
),
),
When I link the account I can enable contacts and calendar, but when I want to enable both in de proper app, it is not listed. I see no warnings in the debug log.
Is the configuration correct?
The text was updated successfully, but these errors were encountered: