mirror of
https://gitlab.com/davical-project/davical.git
synced 2026-03-01 06:03:46 +00:00
the structure of it. Major hacking on PROPFIND so that we can now work with Mulberry. Join todo & event tables into calendar_item table because having them separate was getting very silly. Remove XMLElement.php which is now in the standard libraries.
15 lines
409 B
PHP
15 lines
409 B
PHP
<?php
|
|
// $c->domainname = "mycaldav.andrew";
|
|
// $c->sysabbr = 'rscds';
|
|
// $c->admin_email = 'andrew@catalyst.net.nz';
|
|
// $c->system_name = "Really Simple CalDAV Store";
|
|
// $c->collections_always_exist = false;
|
|
|
|
$c->pg_connect[] = 'dbname=caldav port=5433 user=general';
|
|
$c->pg_connect[] = 'dbname=caldav port=5432 user=general';
|
|
|
|
$c->dbg['ALL'] = 1;
|
|
|
|
$c->collections_always_exist = false;
|
|
|
|
?>
|