Fri, 13 Apr 2012 18:48:23 +0200
Correct various structure and architecture problems in code including:
use functions from ISO C stdio requires cstdio header,
include sockio header only in platforms where it's present,
touch random number seeder logic on X86-64 platforms as well as IA-32,
and hopefully use all 64 bits of register as it would seem that more
like 'asm("rdtsc" : "=a" (lowtick), "=d" (hitick));' is needed instead.
1 <?php
2 ##
3 ## davical.php -- DAViCal server configuration
4 ##
6 $c->system_name = "DAViCal CalDAV Server";
7 $c->domain_name = "calendar.example.com";
8 $c->admin_email = 'hostmaster@example.com';
10 $c->pg_connect[] = "dbname=davical user=davical password=davical";
12 $c->home_calendar_name = 'home';
13 $c->hide_TODO = true;
14 $c->readonly_webdav_collections = true;
15 $c->enable_row_linking = true;
16 $c->collections_always_exist = true;
17 $c->default_relationships = array();
18 $c->default_locale = 'en_US.UTF-8';
19 $c->allow_get_email_visibility = false;