Difference between revisions of "RT Config"

From Request Tracker Wiki
Jump to navigation Jump to search
(Added the most important config settings)
(Adding categories)
Line 15: Line 15:
* Set($OwnerEmail, 'admin');
* Set($OwnerEmail, 'admin');
* Set($MaxAttachmentSize, 10_000_000);  # 10M
* Set($MaxAttachmentSize, 10_000_000);  # 10M
[[Category:Configuration]]

Revision as of 12:11, 5 January 2015

The most important config settings:

  • Set( $rtname, 'example.com');
  • Set($Organization, "example.com");
  • #Set($CorrespondAddress, '');
  • #Set($CommentAddress, '');
  • Set($WebDomain, "tickets.example.com");
  • #Set($Timezone, "US/Eastern"); # See http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
  • Set($DatabaseType, "Pg"); #mysql | Oracle | Pg
  • Set($DatabaseHost,   "localhost");
  • Set($DatabaseRTHost, "localhost");
  • Set($DatabaseUser, "rt_user");
  • Set($DatabasePassword, "my_password");
  • Set($DatabaseName, "rt");
  • # Set($EmailSubjectTagRegex, qr/\Q$rtname\E/i );
  • Set($OwnerEmail, 'admin');
  • Set($MaxAttachmentSize, 10_000_000);  # 10M