<?php
// DB access credentials:
define('FT_DB_HOST', 'localhost');
define('FT_DB_NAME', 'forwardtrack');
define('FT_DB_USER', 'ft');
define('FT_DB_PASS', 'ft');
define('FT_DB_DEBUG_LEVEL', 0);
define('FT_MAIL_TYPE', 'mail');
define('FT_MAIL_FROM', 'info@my-forwardtrack.org');
define('FT_ERROR_RETURN_EMAIL', 'errors@my-forwardtrack.org');
// dont fake the From: in invitations. can lead to spam problems...
// 1 == do not fake it.
// 0 == fake it.
define('FT_INVITE_HONEST_FROM', 0);
// once they have done the unsubscribe form, never send them anything again
define('FT_OPT_OUT_FINAL', 0);
// If you want to track more impact-metrics than simply the # of users 'registered'
// read and edit 'metrics.ini' in this directory,
// and change the define() for FT_CUSTOM_INI_FILE
// note: if you want FT to automatically create the right SQL schema to support
// your metrics, you must make these changes _before_ running the install functionality.
// see ./metrics.ini and ./docs/metrics.html for more information
// define('FT_CUSTOM_INI_FILE', dirname(__FILE__) . '/metrics.ini');
define('FT_CUSTOM_INI_FILE', '');
// aggregate all metrics for map data, or just the 'count'
define('FT_MAP_ALL_METRICS', '0');
// optional HTTP-level authentication for the administrative section of the web application.
// username, password
define('FT_ADMIN_HTTPAUTH_NAME', '');
define('FT_ADMIN_HTTPAUTH_PASS', '');
// debugging?
define('FT_DEBUG_LEVEL', 0);
// class names for application objects:
define('FT_APP_SITE_APP_CLASS', 'FT_App_SiteApp');
define('FT_APP_CAMPAIGN_APP_CLASS', 'FT_App_CampaignApp');
define('FT_APP_ADMIN_APP_CLASS', 'FT_App_AdminApp');
define('FT_VIEW_CLASS','FT_View');
define('FT_APP_CAMPAIGN_CLASS', 'FT_App_Campaign');
define('FT_APP_PERSON_CLASS', 'FT_App_Person');
define('FT_DUMP_BLOCK_SIZE', 1000);
?>