Added the $default_stewardship variable and put it to use
[eq/.git] / setup / db_config
1 ################################################################################
2 # This is a perl module included by the perl scripts for this application.
3 # You must modify these values to match your system configuration.
4 # Save the resulting file as "db_config.local" in this setup dir.
5 # This will prevent your settings from being overwritten by future code updates.
6 ################################################################################
7
8 # Database variables/settings/configuration
9 $dbname = "phpgroupware";
10 $dbhost = "192.168.0.4"; # This can be an IP address or name
11 $dbport = 3306;
12 $dbuser = "phpgroupware"; # This may require an additional '\@localhost'
13 $dbpass = "phpgroupware";
14
15 # Set a default area code to add to the phone number if an area code is missing
16 $areacode = "970";
17
18 # Set the default visiting priority (1=highest 30=lowest)
19 $default_visit_pri = 30;
20
21 # Set the default interview priority (1=highest 30=lowest)
22 $default_interview_pri = 30;
23
24 # Set the default stewardship: "High Priest" or "Elder"
25 $default_stewardship = "Elder";
26