debug_email /** * If you want to debug you have to set to 1 one of this variable * and then you can look at the error log of PHP for example : * $c->dbg["ALL"] = 1; * and then tail -f /var/log/apache2/error_log (or wherever PHP errors are logged). * * in the code a line like this: * dbg_error_log( "Login", "blabla %s blalba %s",first_string, second_string ); * will produce in apache error log and if $c->dbg['Login'] ==1 : "blabla first_string blalba second_string" * using format rules as for printf and related functions. */ // $c->dbg["ALL"] = 1; // $c->dbg["component"] = 1; // $c->dbg['caldav'] = 1; // $c->dbg['querystring'] = 1; // $c->dbg['icalendar'] = 1; // $c->dbg['ics'] = 1; // $c->dbg['Login'] = 1; // $c->dbg['options'] = 1; // $c->dbg['get'] = 1; // $c->dbg['put'] = 1; // $c->dbg['propfind'] = 1; // $c->dbg['report'] = 1; // $c->dbg['user'] = 1; // $c->dbg['vevent'] = 1; // $c->dbg['rrule'] = 1; /** * default is 'rscds' used to prefix debugging messages but will only need to change * if you are running multiple RSCDS servers logging into the same place. */ // $c->sysabbr /** * As yet we only support quite a limited range of options. When we see clients looking * for more than this we will work to support them further. So we can see clients trying * to use such methods there is a configuration option to override and allow lying about * what is available. * ex : $c->override_allowed_methods = "PROPPATCH,OPTIONS, GET, HEAD, PUT, DELETE, PROPFIND, MKCOL, MKCALENDAR, LOCK, UNLOCK, REPORT" * Don't muck with this unless you are trying to write code to support a new option! */ // $c->override_allowed_methods = "PROPPATCH, OPTIONS, GET, HEAD, PUT, DELETE, PROPFIND, MKCOL, MKCALENDAR, LOCK, UNLOCK, REPORT" ?>