davical/davical-config.php

Sat, 01 Sep 2012 12:17:10 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 01 Sep 2012 12:17:10 +0200
changeset 653
9d74c60eb90e
permissions
-rw-r--r--

Back out attempt to repair gets(3) redefinition and correct rather by
avoiding detection of gets(3) as a method with no macro, otherwise
leading to definition of HAVE_RAW_DECL_GETS and redefition of gets(3)
in lib/stdio.h(.in) caused by 'a split double-inclusion guard' and
a seemingly multiple '#include_next <stdio.h>' reference. Quatch.

     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;

mercurial