blob: 01c2b32a9cc6d25208c809a885e87a1a64b4f291 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
// Server base URL
$pluginconfig['base_url']=(empty($_SERVER['HTTPS']) ? 'http' : 'https').'://my.server.com:8080';
// Default values are usually OK
// for Davical:
$pluginconfig['request']='/caldav.php'; // change only if your Davical is not installed into server root directory
// for Lion server:
//$pluginconfig['request']='/principals/users';
$pluginconfig['timeout']=30;
?>
|