public
Description: Tracks and maps the diffusion of email forwards, political calls-to-action, and online petitions. It can trace email forwards, map the impact of blogs, and facilitate web-based sign-ups and social networking
Homepage: http://forwardtrack.eyebeamresearch.org
Clone URL: git://github.com/jamiew/forwardtrack.git
forwardtrack / config.inc.php
100644 58 lines (41 sloc) 1.844 kb
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?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);
?>