root/coldbox/trunk/samples/applications/helloworld/config/coldbox.xml.cfm @ 862

Revision 862, 1.7 kB (checked in by lmajano, 6 years ago)

Ticket #199
Messagebox finalized

Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<Config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3        xsi:noNamespaceSchemaLocation="http://www.coldboxframework.com/schema/config_2.1.0.xsd">
4        <Settings>
5                <Setting name="AppName"                                 value="Hello World"/>
6                <Setting name="DebugMode"                               value="true" />
7                <Setting name="DebugPassword"                   value="Coldbox"/>
8                <Setting name="EventName"                                       value="event"/>
9                <Setting name="EnableDumpVar"                   value="true" />
10                <Setting name="EnableColdfusionLogging" value="false" />
11                <Setting name="EnableColdboxLogging"    value="false" />
12                <Setting name="ColdboxLogsLocation"             value="" />
13                <Setting name="DefaultEvent"                    value="ehGeneral.dspHello"/>
14                <Setting name="RequestStartHandler"     value=""/>
15                <Setting name="RequestEndHandler"               value=""/>
16                <Setting name="OwnerEmail"                              value="myemail@email.com" />
17                <Setting name="EnableBugReports"                value="true"/>
18                <Setting name="UDFLibraryFile"                  value="" />
19                <Setting name="CustomErrorTemplate"     value=""/>
20                <Setting name="ExceptionHandler"                value=""/>
21                <Setting name="MessageboxStyleOverride"         value=""/>
22                <Setting name="HandlersIndexAutoReload" value="false"/>
23                <Setting name="ConfigAutoReload"                value="false"/>         
24        </Settings>
25
26        <YourSettings />
27
28        <!--Optional,if blank it will use the CFMX administrator settings.-->
29        <MailServerSettings>
30                <MailServer></MailServer>
31                <MailUsername></MailUsername>
32                <MailPassword></MailPassword>
33        </MailServerSettings>
34
35        <BugTracerReports>
36                <!--<BugEmail>cfcoldbox@gmail.com</BugEmail>-->
37        </BugTracerReports>
38
39        <DevEnvironments>
40                <url>lmajano</url>
41                <url>dev</url>
42        </DevEnvironments>
43
44        <WebServices />
45
46        <Layouts>
47                <DefaultLayout>Layout.Main.cfm</DefaultLayout>
48        </Layouts>
49
50        <i18N />
51       
52        <Datasources>
53               
54        </Datasources>
55       
56</Config>
Note: See TracBrowser for help on using the browser.