1use 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 /usr/local/etc/rt50/RT_SiteConfig.pm
21#
22# You must restart your webserver after making changes to this file.
23#
24
25# You may also split settings into separate files under the etc/RT_SiteConfig.d/
26# directory.  All files ending in ".pm" will be parsed, in alphabetical order,
27# after this file is loaded.
28
29Set( $rtname, 'example.com');
30
31# You must install Plugins on your own, this is only an example
32# of the correct syntax to use when activating them:
33#     Plugin( "RT::Authen::ExternalAuth" );
34
351;
36