davical/davical-config.php

Thu, 04 Oct 2012 20:24:28 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 04 Oct 2012 20:24:28 +0200
changeset 712
bf4f2bc90467
permissions
-rw-r--r--

Update to new vendor version and correct context handling in voicemail.
Context correction is needed to enable leaving a voicemail at the
VoicemailMain prompt (press 5) when not specifying a 'default' context
in the voicemail configuration.

     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