You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
658 B
20 lines
658 B
<?php |
|
## |
|
## davical.php -- DAViCal server configuration |
|
## |
|
|
|
$c->system_name = "DAViCal CalDAV Server"; |
|
$c->domain_name = "calendar.example.com"; |
|
$c->admin_email = 'hostmaster@example.com'; |
|
|
|
$c->pg_connect[] = "dbname=davical user=davical password=davical"; |
|
|
|
$c->home_calendar_name = 'home'; |
|
$c->hide_TODO = true; |
|
$c->readonly_webdav_collections = true; |
|
$c->enable_row_linking = true; |
|
$c->collections_always_exist = true; |
|
$c->default_relationships = array(); |
|
$c->default_locale = 'en_US.UTF-8'; |
|
$c->allow_get_email_visibility = false; |
|
|
|
|