add $RT::MyTicketsLength patch from spiritone, part of merging RT changes (#1661)
[freeside.git] / rt / etc / RT_SiteConfig.pm
1 # Any configuration directives you include  here will override 
2 # RT's default configuration file, RT_Config.pm
3 #
4 # To include a directive here, just copy the equivalent statement
5 # from RT_Config.pm and change the value. We've included a single
6 # sample value below.
7 #
8 # This file is actually a perl module, so you can include valid
9 # perl code, as well.
10 #
11 # The converse is also true, if this file isn't valid perl, you're
12 # going to run into trouble. To check your SiteConfig file, use
13 # this comamnd:
14 #
15 #   perl -c /path/to/your/etc/RT_SiteConfig.pm
16
17 #Set( $rtname, 'example.com');
18
19 $RT::rtname = '%%%RT_DOMAIN%%%';
20 $RT::Organization = '%%%RT_DOMAIN%%%';
21
22 $RT::Timezone = '%%%RT_TIMEZONE%%%';
23
24 $RT::WebBaseURL = '';
25 $RT::WebPath = '/freeside/rt';
26
27 $RT::WebExternalAuth = 1;
28 $RT::WebFallbackToInternal = 1; #no
29 $RT::WebExternalAuto = 1;
30
31 $RT::MyTicketsLength = 10;
32
33 $RT::URI::freeside::IntegrationType = 'Internal';
34 $RT::URI::freeside::URL = '%%%FREESIDE_URL%%%';
35
36 Set($DatabaseHost   , '');
37
38 #perl 5.8.0 - 5.8.2 experiment
39 #@EmailInputEncodings = qw(iso-8859-1 us-ascii utf-8); # unless (@EmailInputEncodings);
40 #Set($EmailOutputEncoding , 'iso-8859-1');
41
42 1;