Thu, 09 Aug 2012 00:41:14 +0200
Introduce a lot of changes to correct source and build logic including:
Correct URLs, reorder existing patch hunks, update vendor version and
patch accordingly, integrate optional SQLite storage, modernize package
(remove boilerplate RPM logic), correct preprocessor definitions as
NIS+was removed from Solaris 11, use parallel make, improve configuration
spacing and whitespace, and remove now uneeded postfix-script(1) and
post-install(1) relocation.
michael@290 | 1 | <?php |
michael@290 | 2 | ## |
michael@290 | 3 | ## davical.php -- DAViCal server configuration |
michael@290 | 4 | ## |
michael@290 | 5 | |
michael@290 | 6 | $c->system_name = "DAViCal CalDAV Server"; |
michael@290 | 7 | $c->domain_name = "calendar.example.com"; |
michael@290 | 8 | $c->admin_email = 'hostmaster@example.com'; |
michael@290 | 9 | |
michael@290 | 10 | $c->pg_connect[] = "dbname=davical user=davical password=davical"; |
michael@290 | 11 | |
michael@290 | 12 | $c->home_calendar_name = 'home'; |
michael@290 | 13 | $c->hide_TODO = true; |
michael@290 | 14 | $c->readonly_webdav_collections = true; |
michael@290 | 15 | $c->enable_row_linking = true; |
michael@290 | 16 | $c->collections_always_exist = true; |
michael@290 | 17 | $c->default_relationships = array(); |
michael@290 | 18 | $c->default_locale = 'en_US.UTF-8'; |
michael@290 | 19 | $c->allow_get_email_visibility = false; |
michael@290 | 20 |