File: regression-conf.php.example

package info (click to toggle)
davical 1.1.12-2.3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,020 kB
  • sloc: php: 19,361; sql: 4,514; perl: 3,524; sh: 554; javascript: 162; makefile: 85
file content (26 lines) | stat: -rw-r--r-- 822 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
  $c->pg_connect[] = 'dbname=regression user=davical_app';

  // use strict result ordering for regression testing only
  $c->strict_result_ordering = true;
  // PUT: 405 Method Not Allowed
  $c->readonly_webdav_collections = false;
  // fix ETag differences (CRLF) in 0218-Moz-REPORT and later
  $c->hide_alarm = true;
  // some freebusy queries will be 404 otherwise
  $c->public_freebusy_url = true;
  // helps with 1035-GET-mashup
  $c->get_includes_subcollections = true;
  // helps with 1036-REPORT-sync-initial-bound
  $c->hide_TODO = false;

  // for ischedule suite; also needs DKIM set up?
  $c->enable_scheduling = true;

  // enable for debugging, as needed
  //$c->dbg['ALL'] = 1;

  // if testing memcache
  //memcache $c->memcache_servers[] = '127.0.0.1,11211';
  //memcache $c->auth_cache = true;
?>