X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=rt%2Fetc%2FRT_Config.pm;h=5386a8e051b29e8b20506d3a13d74d15fe670214;hp=2b3f4f9fe1df8f9737ca15f9e4c3b85d11b572b4;hb=289340780927b5bac2c7604d7317c3063c6dd8cc;hpb=945721f48f74d5cfffef7c7cf3a3d6bc2521f5dd diff --git a/rt/etc/RT_Config.pm b/rt/etc/RT_Config.pm index 2b3f4f9fe..5386a8e05 100644 --- a/rt/etc/RT_Config.pm +++ b/rt/etc/RT_Config.pm @@ -47,7 +47,7 @@ Set($Timezone , 'US/Eastern'); # {{{ Database Configuration # Database driver beeing used. Case matters -# Valid types are "mysql" and "Pg" +# Valid types are "mysql", "Oracle" and "Pg" Set($DatabaseType , 'mysql'); @@ -164,9 +164,9 @@ Set($SenderMustExistInExternalDatabase , undef); # and comment mail tracked by RT, unless overridden by a queue-specific # address. -Set($CorrespondAddress , 'RT::CorrespondAddress.not.set'); +Set($CorrespondAddress , 'RT_CorrespondAddressNotSet'); -Set($CommentAddress , 'RT::CommentAddress.not.set'); +Set($CommentAddress , 'RT_CommentAddressNotSet'); #Sendmail Configuration @@ -268,9 +268,6 @@ Set($WebBaseURL , "http://RT::WebBaseURL.not.configured:80"); Set($WebURL , $WebBaseURL . $WebPath . "/"); # $WebImagesURL points to the base URL where RT can find its images. -# If you're running the FastCGI version of the RT web interface, -# you should make RT's WebRT/html/NoAuth/images directory available on -# a static web server and supply that URL as $WebImagesURL. Set($WebImagesURL , $WebURL . "NoAuth/images/"); @@ -278,6 +275,15 @@ Set($WebImagesURL , $WebURL . "NoAuth/images/"); Set($LogoURL , $WebImagesURL . "rt.jpg"); +# For message boxes, set the entry box width and what type of wrapping +# to use. +# +# Default width: 72 +Set($MessageBoxWidth , 72); + +# Default wrapping: "HARD" (choices "SOFT", "HARD") +Set($MessageBoxWrap, "HARD"); + # if TrustHTMLAttachments is not defined, we will display them # as text. This prevents malicious HTML and javascript from being # sent in a request (although there is probably more to it than that) @@ -310,6 +316,25 @@ Set($WebExternalAuto , undef); # Set($WebSessionClass , 'Apache::Session::File'); +# $MaxInlineBody is the maximum attachment size that we want to see +# inline when viewing a transaction. 13456 is a random sane-sounding +# default. + +Set($MaxInlineBody, 13456); + +# $MyTicketsLength is the length of the table on the front page. +# For some people, the default of 10 isn't big enough to get a feel for +# how much work needs to be done before you get some time off. + +Set($MyTicketsLength, 10); + +# @MasonParameters is the list of parameters for the constructor of +# HTML::Mason's Apache or CGI Handler. This is normally only useful +# for debugging, eg. profiling individual components with +# (preamble => 'my $p = MasonX::Profiler->new($m, $r);'); + +@MasonParameters = () unless (@MasonParameters); + # }}} # {{{ RT UTF-8 Settings