<?php
$max_comment_length = 512; /* need to adjust the column type in the database
for lengths greater than 1024 */
// control different debugging options
$debug = array(
'retrieval' => false,
'submission' => false,
'ajax' => false,
'requests' => false,
'sql' => false,
'javascript' => false,
'old-debug' => false);
$postgresql_8_strings = true;
$set_envelope_header = true;
// number of priority classes for course attenders
$attender_priorities = 1;
// url where the public interface will be reachable
$public_address = "http://courseman.sf.net";
// address to appear in the from header of mails from the system
$affirmation_reply_address = "hide@address.com";
// username of the database user
$database_user = "www-data";
// name of the database
$database = "www-data";
$allow_multiple_registrations = false;
$client_side_input_checking = true;
$server_side_input_checking = true;
$course_term = 'period 1';
$course_begin_year = 2008;
$impressum_link = '';
$language = 'en';
// earliest time for registrations to be allowed
$registration_begin_time = strtotime("01 January 2007");
// latest time for registrations to be allowed
$registration_end_time = strtotime("01 January 2009");
?>