rt 4.2.13 ticket#13852
[freeside.git] / rt / etc / RT_SiteConfig.pm
1 use utf8;
2
3 # Any configuration directives you include  here will override
4 # RT's default configuration file, RT_Config.pm
5 #
6 # To include a directive here, just copy the equivalent statement
7 # from RT_Config.pm and change the value. We've included a single
8 # sample value below.
9 #
10 # If this file includes non-ASCII characters, it must be encoded in
11 # UTF-8.
12 #
13 # This file is actually a perl module, so you can include valid
14 # perl code, as well.
15 #
16 # The converse is also true, if this file isn't valid perl, you're
17 # going to run into trouble. To check your SiteConfig file, use
18 # this command:
19 #
20 #   perl -c /path/to/your/etc/RT_SiteConfig.pm
21
22 #Set( $rtname, 'example.com');
23
24 # These settings should have been inserted by the initial Freeside install.
25 # Sometimes you may want to change domain, timezone, or freeside::URL later,
26 # everything else should probably stay untouched.
27
28 Set($rtname, '%%%RT_DOMAIN%%%');
29 Set($Organization, '%%%RT_DOMAIN%%%');
30
31 Set($Timezone, '%%%RT_TIMEZONE%%%');
32
33 Set($WebRemoteUserAuth, 1);
34 Set($WebFallbackToInternal, 1); #no
35 Set($WebRemoteUserAutocreate, 1);
36
37 $RT::URI::freeside::IntegrationType = 'Internal';
38 $RT::URI::freeside::URL = '%%%FREESIDE_URL%%%';
39
40 $RT::URI::freeside::URL =~ m(^(https?://[^/]+)(/.*)?$)i;
41 Set($WebBaseURL, $1);
42 Set($WebPath, "$2/rt");
43
44 Set($DatabaseHost   , '');
45
46 # These settings are user-editable.
47
48 Set($UsernameFormat, 'verbose'); #back to concise to hide email addresses
49
50 #uncomment to use
51 #Set($DefaultSummaryRows, 10);
52
53 Set($MessageBoxWidth, 80);
54 Set($MessageBoxRichTextHeight, 368);
55
56 #redirects to ticket display on quick create
57 #Set($DisplayTicketAfterQuickCreate, 1);
58
59 #Set(@Plugins,(qw(Extension::QuickDelete RT::FM)));
60
61 1;