Appendix E. Configuration File Reference
All of the configuration directives you can use in your etc/RT_SiteConfig.pm file are listed in this appendix.
Remember, never edit RT_Config.pm. Instead, add to RT_SiteConfig.pm and edit there.
Base Configuration
-
$rtname $rtnameis the string that RT looks for in-mail messages to figure out to which ticket a new piece of mail belongs.Your domain name is recommended, so as not to pollute the namespace. Once you start using a given tag, you should probably never change it—otherwise, mail for existing tickets won’t get put in the right place.
Set($rtname, "example.com");
-
$EmailSubjectTagRegex This regexp controls what subject tags RT recognizes as its own. Be very careful with it. Note that it overrides
$rtname.If you’re not dealing with historical
$rtnamevalues, you’ll likely never have to enable this feature:Set($EmailSubjectTagRegex, qr/\Q$rtname\E/);
-
$Organization You should set this to your organization’s DNS domain, for example, fsck.com or asylum.arkham.ma.us. The linking interface uses it to guarantee that ticket URIs are unique and easy to construct.
Set($Organization, "example.com");
-
$MinimumPasswordLength $MinimumPasswordLengthdefines the minimum length for user passwords. Setting it to 0 disables this check.Set($MinimumPasswordLength, "5");
-
$Timezone $Timezoneis used to convert times entered by users into GMT and back again. It should be set to standard Unix timezone.Set($Timezone, 'US/Eastern');
Database Configuration ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access