import rt 3.8.11
[freeside.git] / rt / etc / RT_Config.pm.in
1
2 package RT;
3
4 =head1 NAME
5
6 RT::Config
7
8 =for testing
9
10 use RT::Config;
11
12 =cut
13
14 =head1 WARNING
15
16 NEVER EDIT RT_Config.pm.
17
18 Instead, copy any sections you want to change to F<RT_SiteConfig.pm> and edit them there.
19
20 =cut
21
22 =head1 Base Configuration
23
24 =over 4
25
26 =item C<$rtname>
27
28 C<$rtname> is the string that RT will look for in mail messages to
29 figure out what ticket a new piece of mail belongs to.
30
31 Your domain name is recommended, so as not to pollute the namespace.
32 once you start using a given tag, you should probably never change it.
33 (otherwise, mail for existing tickets won't get put in the right place)
34
35 =cut
36
37 Set($rtname , "example.com");
38
39
40 =item C<$EmailSubjectTagRegex>
41
42 This regexp controls what subject tags RT recognizes as its own.
43 If you're not dealing with historical C<$rtname> values, you'll likely
44 never have to enable this feature.
45
46 Be VERY CAREFUL with it. Note that it overrides C<$rtname> for subject
47 token matching and that you should use only "non-capturing" parenthesis
48 grouping. For example:
49
50 C<Set($EmailSubjectTagRegex, qr/(?:example.com|example.org)/i );>
51
52 and NOT
53
54 C<Set($EmailSubjectTagRegex, qr/(example.com|example.org)/i );>
55
56 This setting would make RT behave exactly as it does without the 
57 setting enabled.
58
59 =cut
60
61 #Set($EmailSubjectTagRegex, qr/\Q$rtname\E/i );
62
63
64
65 =item C<$Organization>
66
67 You should set this to your organization's DNS domain. For example,
68 I<fsck.com> or I<asylum.arkham.ma.us>. It's used by the linking interface to
69 guarantee that ticket URIs are unique and easy to construct.
70
71 =cut
72
73 Set($Organization , "example.com");
74
75 =item C<$MinimumPasswordLength>
76
77 C<$MinimumPasswordLength> defines the minimum length for user
78 passwords. Setting it to 0 disables this check.
79
80 =cut
81
82 Set($MinimumPasswordLength , "5");
83
84 =item C<$Timezone>
85
86 C<$Timezone> is used to convert times entered by users into GMT and back again
87 It should be set to a timezone recognized by your local unix box.
88
89 =cut
90
91 Set($Timezone , 'US/Eastern');
92
93 =back
94
95 =head1 Database Configuration
96
97 =over 4
98
99 =item C<$DatabaseType>
100
101 Database driver being used; case matters.
102
103 Valid types are "mysql", "Oracle" and "Pg"
104
105 =cut
106
107 Set($DatabaseType , '@DB_TYPE@');
108
109 =item C<$DatabaseHost>, C<$DatabaseRTHost>
110
111 The domain name of your database server.
112
113 If you're running mysql and it's on localhost,
114 leave it blank for enhanced performance
115
116 =cut
117
118 Set($DatabaseHost   , '@DB_HOST@');
119 Set($DatabaseRTHost , '@DB_RT_HOST@');
120
121 =item C<$DatabasePort>
122
123 The port that your database server is running on.  Ignored unless it's
124 a positive integer. It's usually safe to leave this blank
125
126 =cut
127
128 Set($DatabasePort , '@DB_PORT@');
129
130 =item C<$DatabaseUser>
131
132 The name of the database user (inside the database)
133
134 =cut
135
136 Set($DatabaseUser , '@DB_RT_USER@');
137
138 =item C<$DatabasePassword>
139
140 Password the C<$DatabaseUser> should use to access the database
141
142 =cut
143
144 Set($DatabasePassword , '@DB_RT_PASS@');
145
146 =item C<$DatabaseName>
147
148 The name of the RT's database on your database server. For Oracle
149 it's SID, DB objects are created in L<$DatabaseUser>'s schema.
150
151 =cut
152
153 Set($DatabaseName , '@DB_DATABASE@');
154
155 =item C<$DatabaseRequireSSL>
156
157 If you're using Postgres and have compiled in SSL support,
158 set C<$DatabaseRequireSSL> to 1 to turn on SSL communication
159
160 =cut
161
162 Set($DatabaseRequireSSL , undef);
163
164 =item C<$UseSQLForACLChecks>
165
166 In RT for ages ACL are checked after search what in some situtations
167 result in empty search pages and wrong count of tickets.
168
169 Set C<$UseSQLForACLChecks> to 1 to use SQL and get rid of these problems.
170
171 However, this option is beta. In some cases it result in performance
172 improvements, but some setups can not handle it.
173
174 =cut
175
176 Set($UseSQLForACLChecks, undef);
177
178 =item C<$TicketsItemMapSize>
179
180 In RT at display page of a ticket and there is the current search,
181 then links for first, next, previous and last ticket are shown in
182 the menu.
183
184 To build full map RT has to fetch full result set out of DB what can
185 eat lots of resourses. Using this option it's possible to limit number
186 of tickets fetched.
187
188 Set C<$TicketsItemMapSize> to number of tickets you want RT to look
189 at to build the map. If full result set is bigger than that number
190 then there would be no 'last' link in the menu.
191
192 Set this to zero to return back to old behaviour.
193
194 =cut
195
196 Set($TicketsItemMapSize, 1000);
197
198 =back
199
200 =head1 Incoming Mail Gateway Configuration
201
202 =over 4
203
204 =item C<$OwnerEmail>
205
206 C<$OwnerEmail> is the address of a human who manages RT. RT will send
207 errors generated by the mail gateway to this address.  This address
208 should _not_ be an address that's managed by your RT instance.
209
210 =cut
211
212 Set($OwnerEmail , 'root');
213
214 =item C<$LoopsToRTOwner>
215
216 If C<$LoopsToRTOwner> is defined, RT will send mail that it believes
217 might be a loop to C<$OwnerEmail>
218
219 =cut
220
221 Set($LoopsToRTOwner , 1);
222
223 =item C<$StoreLoops>
224
225 If C<$StoreLoops> is defined, RT will record messages that it believes
226 to be part of mail loops.
227
228 As it does this, it will try to be careful not to send mail to the
229 sender of these messages
230
231 =cut
232
233 Set($StoreLoops , undef);
234
235 =item C<$MaxAttachmentSize>
236
237 C<$MaxAttachmentSize> sets the maximum size (in bytes) of attachments stored
238 in the database.
239
240 For mysql and oracle, we set this size at 10 megabytes.
241 If you're running a postgres version earlier than 7.1, you will need
242 to drop this to 8192. (8k)
243
244 =cut
245
246
247 Set($MaxAttachmentSize , 10000000);
248
249 =item C<$TruncateLongAttachments>
250
251 C<$TruncateLongAttachments>: if this is set to a non-undef value,
252 RT will truncate attachments longer than C<$MaxAttachmentSize>.
253
254 =cut
255
256 Set($TruncateLongAttachments , undef);
257
258 =item C<$DropLongAttachments>
259
260 C<$DropLongAttachments>: if this is set to a non-undef value,
261 RT will silently drop attachments longer than C<MaxAttachmentSize>.
262
263 =cut
264
265 Set($DropLongAttachments , undef);
266
267 =item C<$ParseNewMessageForTicketCcs>
268
269 If C<$ParseNewMessageForTicketCcs> is true, RT will attempt to divine
270 Ticket 'Cc' watchers from the To and Cc lines of incoming messages
271 Be forewarned that if you have _any_ addresses which forward mail to
272 RT automatically and you enable this option without modifying
273 C<$RTAddressRegexp> below, you will get yourself into a heap of trouble.
274
275 =cut
276
277 Set($ParseNewMessageForTicketCcs , undef);
278
279 =item C<$RTAddressRegexp> 
280
281 C<$RTAddressRegexp> is used to make sure RT doesn't add itself as a ticket CC if
282 the setting above is enabled.  It is important that you set this to a 
283 regular expression that matches all addresses used by your RT.  This lets RT
284 avoid sending mail to itself.  It will also hide RT addresses from the list of 
285 "One-time Cc" and Bcc lists on ticket reply.
286
287 If you have a number of addresses configured in your RT database already, you
288 can generate a naive first pass regexp by using
289
290     perl etc/upgrade/generate-rtaddressregexp
291
292 =cut
293
294 Set($RTAddressRegexp , undef);
295
296 =item C<$CanonicalizeEmailAddressMatch>, C<$CanonicalizeEmailAddressReplace>
297
298 RT provides functionality which allows the system to rewrite
299 incoming email addresses.  In its simplest form,
300 you can substitute the value in $<CanonicalizeEmailAddressReplace>
301 for the value in $<CanonicalizeEmailAddressMatch>
302 (These values are passed to the $<CanonicalizeEmailAddress> subroutine in
303  F<RT/User.pm>)
304
305 By default, that routine performs a C<s/$Match/$Replace/gi> on any address
306 passed to it.
307
308 =cut
309
310 #Set($CanonicalizeEmailAddressMatch , '@subdomain\.example\.com$');
311 #Set($CanonicalizeEmailAddressReplace , '@example.com');
312
313 =item C<$CanonicalizeEmailAddressMatch>
314
315 Set this to true and the create new user page will use the values that you
316 enter in the form but use the function CanonicalizeUserInfo in
317 F<RT/User_Local.pm>
318
319 =cut
320
321 Set($CanonicalizeOnCreate, 0);
322
323 =item C<$ValidateUserEmailAddresses>
324
325 If C<$ValidateUserEmailAddresses> is true, RT will refuse to create users with
326 an invalid email address (as specified in RFC 2822) or with an email address
327 made of multiple email adresses.
328
329 =cut
330
331 Set($ValidateUserEmailAddresses, undef);
332
333 =item C<@MailPlugins>
334
335 C<@MailPlugins> is a list of auth plugins for L<RT::Interface::Email>
336 to use; see L<rt-mailgate>
337
338 =cut
339
340 =item C<$UnsafeEmailCommands>
341
342 C<$UnsafeEmailCommands>, if set to true, enables 'take' and 'resolve'
343 as possible actions via the mail gateway.  As its name implies, this
344 is very unsafe, as it allows email with a forged sender to possibly
345 resolve arbitrary tickets!
346
347 =cut
348
349 =item C<$ExtractSubjectTagMatch>, C<$ExtractSubjectTagNoMatch>
350
351 The default "extract remote tracking tags" scrip settings; these
352 detect when your RT is talking to another RT, and adjusts the
353 subject accordingly.
354
355 =cut
356
357 Set($ExtractSubjectTagMatch, qr/\[.+? #\d+\]/);
358 Set($ExtractSubjectTagNoMatch, ( ${RT::EmailSubjectTagRegex}
359        ? qr/\[(?:${RT::EmailSubjectTagRegex}) #\d+\]/
360        : qr/\[\Q$RT::rtname\E #\d+\]/));
361
362 =back
363
364 =head1 Outgoing Mail Configuration
365
366 =over 4
367
368 =item C<$MailCommand>
369
370 C<$MailCommand> defines which method RT will use to try to send mail.
371 We know that 'sendmailpipe' works fairly well.  If 'sendmailpipe'
372 doesn't work well for you, try 'sendmail'.  Other options are 'smtp'
373 or 'qmail'.
374
375 Note that you should remove the '-t' from C<$SendmailArguments>
376 if you use 'sendmail' rather than 'sendmailpipe'
377
378 For testing purposes, or to simply disable sending mail out into the world, you
379 can set C<$MailCommand> to 'testfile' which writes all mail to a temporary
380 file.  RT will log the location of the temporary file so you can extract mail
381 from it afterwards.
382
383 =cut
384
385 Set($MailCommand , 'sendmailpipe');
386
387 =item C<$SetOutgoingMailFrom>
388
389 C<$SetOutgoingMailFrom> tells RT to set the sender envelope with the correspond
390 mail address of the ticket's queue.
391
392 Warning: If you use this setting, bounced mails will appear to be incoming
393 mail to the system, thus creating new tickets.
394
395 =cut
396
397 Set($SetOutgoingMailFrom, 0);
398
399 =item C<$OverrideOutgoingMailFrom>
400
401 C<$OverrideOutgoingMailFrom> is used for overwriting the Correspond
402 address of the queue as it is handed to sendmail -f. This helps force
403 the From_ header away from www-data or other email addresses that show
404 up in the "Sent by" line in Outlook.
405
406 The option is a hash reference of queue name to email address.
407
408 If there is no ticket involved, then the value of the C<Default> key will be
409 used.
410
411 =cut
412
413 Set($OverrideOutgoingMailFrom, {
414 #    'Default' => 'admin@rt.example.com',
415 #    'General' => 'general@rt.example.com',
416 });
417
418 =back
419
420 =item C<$DefaultMailPrecedence>
421
422 C<$DefaultMailPrecedence> is used to control the default
423 Precedence level of outgoing mail where none is specified.
424 By default it is C<bulk>, but if you only send mail to
425 your staff, you may wish to change it.
426
427 Note that you can set the precedence of individual templates
428 by including an explicit Precedence header.
429
430 If you set this value to C<undef> then we do not set a default
431 Precedence header to outgoing mail. However, if there already is a
432 Precedence header it will be preserved.
433
434 =cut
435
436 Set($DefaultMailPrecedence, 'bulk');
437
438 =back
439
440 =item C<$DefaultErrorMailPrecedence>
441
442 C<$DefaultErrorMailPrecedence> is used to control the default
443 Precedence level of outgoing mail that indicates some kind of
444 error condition. By default it is C<bulk>, but if you only send
445 mail to your staff, you may wish to change it.
446
447 If you set this value to C<undef> then we do not add a Precedence
448 header to error mail.
449
450 =cut
451
452 Set($DefaultErrorMailPrecedence, 'bulk');
453
454 =back
455
456 =item C<$UseOriginatorHeader>
457
458 C<$UseOriginatorHeader> is used to control the insertion of an
459 RT-Originator Header in every outgoing mail, containing the
460 mail address of the transaction creator.
461
462 =cut
463
464 Set($UseOriginatorHeader, 1);
465
466 =back
467
468 =head1 Sendmail Configuration
469
470 These options only take effect if C<$MailCommand> is 'sendmail' or
471 'sendmailpipe'
472
473 =over 4
474
475 =item C<$SendmailArguments> 
476
477 C<$SendmailArguments> defines what flags to pass to C<$SendmailPath>
478 If you picked 'sendmailpipe', you MUST add a -t flag to C<$SendmailArguments>
479 These options are good for most sendmail wrappers and workalikes
480
481 These arguments are good for sendmail brand sendmail 8 and newer
482 C<Set($SendmailArguments,"-oi -t -ODeliveryMode=b -OErrorMode=m");>
483
484 =cut
485
486 Set($SendmailArguments , "-oi -t");
487
488
489 =item C<$SendmailBounceArguments>
490
491 C<$SendmailBounceArguments> defines what flags to pass to C<$Sendmail>
492 assuming RT needs to send an error (ie. bounce).
493
494 =cut
495
496 Set($SendmailBounceArguments , '-f "<>"');
497
498 =item C<$SendmailPath>
499
500 If you selected 'sendmailpipe' above, you MUST specify the path to
501 your sendmail binary in C<$SendmailPath>.
502
503 =cut
504
505 Set($SendmailPath , "/usr/sbin/sendmail");
506
507
508 =back
509
510 =head1 SMTP Configuration
511
512 These options only take effect if C<$MailCommand> is 'smtp'
513
514 =over 4
515
516 =item C<$SMTPServer>
517
518 C<$SMTPServer> should be set to the hostname of the SMTP server to use
519
520 =cut
521
522 Set($SMTPServer, undef);
523
524 =item C<$SMTPFrom>
525
526 C<$SMTPFrom> should be set to the 'From' address to use, if not the
527 email's 'From'
528
529 =cut
530
531 Set($SMTPFrom, undef);
532
533 =item C<$SMTPDebug> 
534
535 C<$SMTPDebug> should be set to true to debug SMTP mail sending
536
537 =cut
538
539 Set($SMTPDebug, 0);
540
541 =back
542
543 =head1 Other Mailer Configuration
544
545 =over 4
546
547 =item C<@MailParams>
548
549 C<@MailParams> defines a list of options passed to $MailCommand if it
550 is not 'sendmailpipe', 'sendmail', or 'smtp'
551
552 =cut
553
554 Set(@MailParams, ());
555
556 =item C<$CorrespondAddress>, C<$CommentAddress>
557
558 RT is designed such that any mail which already has a ticket-id associated
559 with it will get to the right place automatically.
560
561 C<$CorrespondAddress> and C<$CommentAddress> are the default addresses
562 that will be listed in From: and Reply-To: headers of correspondence
563 and comment mail tracked by RT, unless overridden by a queue-specific
564 address.
565
566 =cut
567
568 Set($CorrespondAddress , '');
569
570 Set($CommentAddress , '');
571
572 =item C<$DashboardAddress>
573
574 The email address from which RT will send dashboards. If none is set, then
575 C<$OwnerEmail> will be used.
576
577 =cut
578
579 Set($DashboardAddress, '');
580
581 =item C<$UseFriendlyFromLine>
582
583 By default, RT sets the outgoing mail's "From:" header to
584 "SenderName via RT".  Setting C<$UseFriendlyFromLine> to 0 disables it.
585
586 =cut
587
588 Set($UseFriendlyFromLine, 1);
589
590 =item C<$FriendlyFromLineFormat>
591
592 C<sprintf()> format of the friendly 'From:' header; its arguments
593 are SenderName and SenderEmailAddress.
594
595 =cut
596
597 Set($FriendlyFromLineFormat, "\"%s via RT\" <%s>");
598
599 =item C<$UseFriendlyToLine>
600
601 RT can optionally set a "Friendly" 'To:' header when sending messages to
602 Ccs or AdminCcs (rather than having a blank 'To:' header.
603
604 This feature DOES NOT WORK WITH SENDMAIL[tm] BRAND SENDMAIL
605 If you are using sendmail, rather than postfix, qmail, exim or some other MTA,
606 you _must_ disable this option.
607
608 =cut
609
610 Set($UseFriendlyToLine, 0);
611
612 =item C<$FriendlyToLineFormat>
613
614 C<sprintf()> format of the friendly 'To:' header; its arguments
615 are WatcherType and TicketId.
616
617 =cut
618
619 Set($FriendlyToLineFormat, "\"%s of ". RT->Config->Get('rtname') ." Ticket #%s\":;");
620
621 =item C<$NotifyActor>
622
623 By default, RT doesn't notify the person who performs an update, as they
624 already know what they've done. If you'd like to change this behaviour,
625 Set C<$NotifyActor> to 1
626
627 =cut
628
629 Set($NotifyActor, 0);
630
631 =item C<$RecordOutgoingEmail>
632
633 By default, RT records each message it sends out to its own internal database.
634 To change this behavior, set C<$RecordOutgoingEmail> to 0 
635
636 =cut
637
638 Set($RecordOutgoingEmail, 1);
639
640 =item C<$VERPPrefix>, C<$VERPPrefix>
641
642 VERP support (http://cr.yp.to/proto/verp.txt)
643
644 uncomment the following two directives to generate envelope senders
645 of the form C<${VERPPrefix}${originaladdress}@${VERPDomain}>
646 (i.e. rt-jesse=fsck.com@rt.example.com ).
647
648 This currently only works with sendmail and sendmailppie.
649
650 =cut
651
652 # Set($VERPPrefix, 'rt-');
653 # Set($VERPDomain, $RT::Organization);
654
655
656 =item C<$ForwardFromUser>
657
658 By default, RT forwards a message using queue's address and adds RT's tag into
659 subject of the outgoing message, so recipients' replies go into RT as correspondents.
660
661 To change this behavior, set C<$ForwardFromUser> to true value and RT will use
662 address of the current user and leave subject without RT's tag.
663
664 =cut
665
666 Set($ForwardFromUser, 0);
667
668 =item C<$ShowBccHeader>
669
670 By default RT hides from the web UI information about blind copies user sent on
671 reply or comment.
672
673 To change this set the following option to true value.
674
675 =cut
676
677 Set($ShowBccHeader, 0);
678
679 =item C<$DashboardSubject>
680
681 Lets you set the subject of dashboards. Arguments are the frequency (Daily,
682 Weekly, Monthly) of the dashboard and the dashboard's name. [_1] for the name
683 of the dashboard.
684
685 =cut
686
687 Set($DashboardSubject, '%s Dashboard: %s');
688
689 =back
690
691 =head1 GnuPG Configuration
692
693 A full description of the (somewhat extensive) GnuPG integration can be found 
694 by running the command `perldoc L<RT::Crypt::GnuPG>`  (or `perldoc
695         lib/RT/Crypt/GnuPG.pm` from your RT install directory).
696
697 =over 4
698
699 =item C<%GnuPG>
700
701 Set C<OutgoingMessagesFormat> to 'inline' to use inline encryption and
702 signatures instead of 'RFC' (GPG/MIME: RFC3156 and RFC1847) format.
703
704 If you want to allow people to encrypt attachments inside the DB then
705 set C<AllowEncryptDataInDB> to true
706
707 Set C<RejectOnMissingPrivateKey> to false if you don't want to reject
708 emails encrypted for key RT doesn't have and can not decrypt.
709
710 Set C<RejectOnBadData> to false if you don't want to reject letters
711 with incorrect GnuPG data.
712
713 =cut
714
715 Set( %GnuPG,
716     Enable => @RT_GPG@,
717     OutgoingMessagesFormat => 'RFC', # Inline
718     AllowEncryptDataInDB   => 0,
719
720     RejectOnMissingPrivateKey => 1,
721     RejectOnBadData           => 1,
722 );
723
724 =item C<%GnuPGOptions>
725
726 Options of GnuPG program.
727
728 If you override this in your RT_SiteConfig, you should be sure
729 to include a homedir setting.
730
731 NOTE that options with '-' character MUST be quoted.
732
733 =cut
734
735 Set(%GnuPGOptions,
736     homedir => '@RT_VAR_PATH@/data/gpg',
737
738 # URL of a keyserver
739 #    keyserver => 'hkp://subkeys.pgp.net',
740
741 # enables the automatic retrieving of keys when encrypting
742 #    'auto-key-locate' => 'keyserver',
743
744 # enables the automatic retrieving of keys when verifying signatures
745 #    'auto-key-retrieve' => undef,
746 );
747
748
749 =back
750
751 =head1 Logging Configuration
752
753 The default is to log anything except debugging
754 information to syslog.  Check the L<Log::Dispatch> POD for
755 information about how to get things by syslog, mail or anything
756 else, get debugging info in the log, etc.
757
758 It might generally make sense to send error and higher by email to
759 some administrator.  If you do this, be careful that this email
760 isn't sent to this RT instance.  Mail loops will generate a critical
761 log message.
762
763 =over 4
764
765 =item C<$LogToSyslog>, C<$LogToScreen>
766
767 The minimum level error that will be logged to the specific device.
768 From lowest to highest priority, the levels are:
769  debug info notice warning error critical alert emergency
770
771 =cut
772
773 Set($LogToSyslog    , 'info');
774 Set($LogToScreen    , 'info');
775
776 =item C<$LogToFile>, C<$LogDir>, C<$LogToFileNamed>
777
778 Logging to a standalone file is also possible, but note that the
779 file should needs to both exist and be writable by all direct users
780 of the RT API.  This generally include the web server, whoever
781 rt-crontool runs as.  Note that as rt-mailgate and the RT CLI go
782 through the webserver, so their users do not need to have write
783 permissions to this file. If you expect to have multiple users of
784 the direct API, Best Practical recommends using syslog instead of
785 direct file logging.
786
787 =cut
788
789 Set($LogToFile      , undef);
790 Set($LogDir, '@RT_LOG_PATH@');
791 Set($LogToFileNamed , "rt.log");    #log to rt.log
792
793 =item C<$LogStackTraces>
794
795 If set to a log level then logging will include stack traces for
796 messages with level equal to or greater than specified.
797
798 NOTICE: Stack traces include parameters supplied to functions or
799 methods. It is possible for stack trace logging to reveal sensitive
800 information such as passwords or ticket content in your logs.
801
802 =cut
803
804 Set($LogStackTraces, '');
805
806 =item C<@LogToSyslogConf>
807
808 On Solaris or UnixWare, set to ( socket => 'inet' ).  Options here
809 override any other options RT passes to L<Log::Dispatch::Syslog>.
810 Other interesting flags include facility and logopt.  (See the
811 L<Log::Dispatch::Syslog> documentation for more information.)  (Maybe
812 ident too, if you have multiple RT installations.)
813
814 =cut
815
816 Set(@LogToSyslogConf, ());
817
818 =item C<$StatementLog>,
819
820 RT has rudimentary SQL statement logging support if you have
821 DBIx-SearchBuilder 1.31_1 or higher; simply set C<$StatementLog> to be
822 the level that you wish SQL statements to be logged at.
823
824 =cut
825
826 Set($StatementLog, undef);
827
828 =back
829
830 =head1 Web Interface Configuration
831
832 =over 4
833
834 =item C<$WebDefaultStylesheet>
835
836 This determines the default stylesheet the RT web interface will use.
837 RT ships with several themes by default:
838
839   web2            The totally new, default layout for RT 3.8
840   3.5-default     RT 3.5 and 3.6 original layout
841   3.4-compat      A 3.4 compatibility stylesheet to make RT look
842                   (mostly) like 3.4
843
844 This value actually specifies a directory in F<share/html/NoAuth/css/>
845 from which RT will try to load the file main.css (which should
846 @import any other files the stylesheet needs).  This allows you to
847 easily and cleanly create your own stylesheets to apply to RT.  This
848 option can be overridden by users in their preferences.
849
850 =cut
851
852 Set($WebDefaultStylesheet, 'web2');
853
854 =item C<$UsernameFormat>
855
856 This determines how user info is displayed. 'concise' will show one of 
857 either NickName, RealName, Name or EmailAddress, depending on what exists 
858 and whether the user is privileged or not. 'verbose' will show RealName and
859 EmailAddress.
860
861 =cut
862
863 Set($UsernameFormat, 'concise');
864
865 =item C<$WebDomain>
866
867 Domain name of the RT server, eg 'www.example.com'. It should not contain
868 anything else, but server name.
869
870 =cut
871
872 Set( $WebDomain, 'localhost' );
873
874 =item C<$WebPort>
875
876 If we're running as a superuser, run on port 80
877 Otherwise, pick a high port for this user.
878
879 443 is default port for https protocol.
880
881 =cut
882
883 Set($WebPort, 80);# + ($< * 7274) % 32766 + ($< && 1024));
884
885 =item C<$WebPath>
886
887 If you're putting the web ui somewhere other than at the root of
888 your server, you should set C<$WebPath> to the path you'll be 
889 serving RT at.
890
891 C<$WebPath> requires a leading / but no trailing /, or it can be blank.
892
893 In most cases, you should leave C<$WebPath> set to '' (an empty value).
894
895 =cut
896
897 Set($WebPath, "");
898
899 =item C<$WebBaseURL>, C<$WebURL>
900
901 Usually you don't want to set these options. The only obviouse reason is
902 RT accessible via https protocol on non standard port, eg
903 'https://rt.example.com:9999'. In all other cases these options are computed
904 using C<$WebDomain>, C<$WebPort> and C<$WebPath>.
905
906 C<$WebBaseURL> is the scheme, server and port (eg 'http://rt.example.com')
907 for constructing urls to the web UI. C<$WebBaseURL> doesn't need a trailing /.
908
909 C<$WebURL> is the C<$WebBaseURL>, C<$WebPath> and trailing /, for example:
910 'http://www.example.com/rt/'.
911
912 =cut
913
914 my $port = RT->Config->Get('WebPort');
915 Set($WebBaseURL,
916     ($port == 443? 'https': 'http') .'://'
917     . RT->Config->Get('WebDomain')
918     . ($port != 80 && $port != 443? ":$port" : '')
919 );
920
921 Set($WebURL, RT->Config->Get('WebBaseURL') . RT->Config->Get('WebPath') . "/");
922
923 =item C<$WebImagesURL>
924
925 C<$WebImagesURL> points to the base URL where RT can find its images.
926 Define the directory name to be used for images in rt web
927 documents.
928
929 =cut
930
931 Set($WebImagesURL, RT->Config->Get('WebPath') . "/NoAuth/images/");
932
933 =item C<$LogoURL>
934
935 C<$LogoURL> points to the URL of the RT logo displayed in the web UI
936
937 =cut
938
939 Set($LogoURL, RT->Config->Get('WebImagesURL') . "bplogo.gif");
940
941 =item C<$LogoLinkURL>
942
943 C<$LogoLinkURL> is the URL that the RT logo hyperlinks to.
944
945 =cut
946
947 Set($LogoLinkURL, "http://bestpractical.com");
948
949 =item C<$LogoAltText>
950
951 C<$LogoAltText> is a string of text for the alt-text of the logo. It
952 will be passed through C<loc> for localization.
953
954 =cut
955
956 Set($LogoAltText, "Best Practical Solutions, LLC corporate logo");
957
958 =item C<$LogoImageHeight>
959
960 C<$LogoImageHeight> is the value of the C<height> attribute of the logo
961 C<img> tag.
962
963 =cut
964
965 Set($LogoImageHeight, 33);
966
967 =item C<$LogoImageWidth>
968
969 C<$LogoImageWidth> is the value of the C<width> attribute of the logo
970 C<img> tag.
971
972 =cut
973
974 Set($LogoImageWidth, 177);
975
976 =item C<$WebNoAuthRegex>
977
978 What portion of RT's URL space should not require authentication.
979
980 This is mostly for extension and doesn't mean RT will work without
981 login if you change it.
982
983 =cut
984
985 Set($WebNoAuthRegex, qr{^ (?:/+NoAuth/ | /+REST/\d+\.\d+/NoAuth/) }x );
986
987 =item C<$SelfServiceRegex>
988
989 What portion of RT's URLspace should be accessible to Unprivileged users
990 This does not override the redirect from F</Ticket/Display.html> to
991 F</SelfService/Display.html> when Unprivileged users attempt to access
992 ticked displays
993
994 =cut
995
996 Set($SelfServiceRegex, qr!^(?:/+SelfService/)!x );
997
998 =item C<$MessageBoxWidth>, C<$MessageBoxHeight>
999
1000 For message boxes, set the entry box width, height and what type of
1001 wrapping to use.  These options can be overridden by users in their
1002 preferences.
1003
1004 Default width: 72, height: 15
1005
1006 These settings only apply to the non-RichText message box.
1007 See below for Rich Text settings.
1008
1009 =cut
1010
1011 Set($MessageBoxWidth, 72);
1012 Set($MessageBoxHeight, 15);
1013
1014 =item C<$MessageBoxWrap>
1015
1016 Default wrapping: "HARD"  (choices "SOFT", "HARD")
1017
1018 Wrapping is disabled when using MessageBoxRichText because
1019 of a bad interaction between IE and wrapping with the Rich
1020 Text Editor.
1021
1022 =cut
1023
1024 Set($MessageBoxWrap, "HARD");
1025
1026 =item C<$MessageBoxRichText>
1027
1028 Should "rich text" editing be enabled? This option lets your users send html email messages from the web interface.
1029
1030 =cut
1031
1032 Set($MessageBoxRichText, 1);
1033
1034 =item C<$MessageBoxRichTextHeight>
1035
1036 Height of RichText javascript enabled editing boxes (in pixels)
1037
1038 =cut
1039
1040 Set($MessageBoxRichTextHeight, 200);
1041
1042 =item C<$MessageBoxIncludeSignature>
1043
1044 Should your user's signatures (from their Preferences page) be included in Comments and Replies
1045
1046 =cut
1047
1048 Set($MessageBoxIncludeSignature, 1);
1049
1050 =item C<$MessageBoxIncludeSignatureOnComment>
1051
1052 Should your user's signatures (from their Preferences page) be included in Comments. Setting this to false overrides C<$MessageBoxIncludeSignature>.
1053
1054 =cut
1055
1056 Set($MessageBoxIncludeSignatureOnComment, 1);
1057
1058 =item C<$WikiImplicitLinks>
1059
1060 Support implicit links in WikiText custom fields?  A true value
1061 causes InterCapped or ALLCAPS words in WikiText fields to
1062 automatically become links to searches for those words.  If used on
1063 RTFM articles, it links to the RTFM article with that name.
1064
1065 =cut
1066
1067 Set($WikiImplicitLinks, 0);
1068
1069 =item C<$TrustHTMLAttachments>
1070
1071 if C<TrustHTMLAttachments> is not defined, we will display them
1072 as text. This prevents malicious HTML and javascript from being
1073 sent in a request (although there is probably more to it than that)
1074
1075 =cut
1076
1077 Set($TrustHTMLAttachments, undef);
1078
1079 =item C<$AlwaysDownloadAttachments>
1080
1081 Always download attachments, regardless of content type. If set,
1082 this overrides C<TrustHTMLAttachments>.
1083
1084 =cut
1085
1086 Set($AlwaysDownloadAttachments, undef);
1087
1088 =item C<$AttachmentUnits>
1089
1090 Controls the units (kilobytes or bytes) that attachment sizes use
1091 for display. The default is to display kilobytes if the attachment
1092 is larger than 1024 bytes, bytes otherwise. If you set
1093 C<$AttachmentUnits> to C<'k'> then attachment sizes will always be
1094 displayed in kilobytes. If set to C<'b'>, then sizes will be bytes.
1095
1096 =cut
1097
1098 Set($AttachmentUnits, undef);
1099
1100 =item C<$EditCustomFieldsSingleColumn>
1101
1102 When displaying a list of Ticket Custom Fields for editing, RT defaults
1103 to a 2 column list.  If you set this to 1, it will instead display the
1104 Custom Fields in a single column.
1105
1106 =cut
1107
1108 Set($EditCustomFieldsSingleColumn, 0);
1109
1110 =item C<$RedistributeAutoGeneratedMessages>
1111
1112 Should RT redistribute correspondence that it identifies as
1113 machine generated? A true value will do so; setting this to '0'
1114 will cause no such messages to be redistributed.
1115 You can also use 'privileged' (the default), which will redistribute
1116 only to privileged users. This helps to protect against malformed
1117 bounces and loops caused by autocreated requestors with bogus addresses.
1118
1119 =cut
1120
1121 Set($RedistributeAutoGeneratedMessages, 'privileged');
1122
1123 =item C<$PreferRichText>
1124
1125 If C<$PreferRichText> is set to a true value, RT will show HTML/Rich text
1126 messages in preference to their plaintext alternatives. RT "scrubs" the 
1127 html to show only a minimal subset of HTML to avoid possible contamination
1128 by cross-site-scripting attacks.
1129
1130 =cut
1131
1132 Set($PreferRichText, undef);
1133
1134 =item C<$WebExternalAuth>
1135
1136 If C<$WebExternalAuth> is defined, RT will defer to the environment's
1137 REMOTE_USER variable.
1138
1139 =cut
1140
1141 Set($WebExternalAuth, undef);
1142
1143 =item C<$WebExternalAuthContinuous>
1144
1145 If C<$WebExternalAuthContinuous> is defined, RT will check for the
1146 REMOTE_USER on each access.  If you would prefer this to only happen
1147 once (at initial login) set this to a false value.  The default setting
1148 will help ensure that if your external auth system deauthenticates a
1149 user, RT notices as soon as possible.
1150
1151 =cut
1152
1153 Set($WebExternalAuthContinuous, 1);
1154
1155 =item C<$WebFallbackToInternalAuth>
1156
1157 If C<$WebFallbackToInternalAuth> is defined, the user is allowed a chance
1158 of fallback to the login screen, even if REMOTE_USER failed.
1159
1160 =cut
1161
1162 Set($WebFallbackToInternalAuth , undef);
1163
1164 =item C<$WebExternalGecos>
1165
1166 C<$WebExternalGecos> means to match 'gecos' field as the user identity);
1167 useful with mod_auth_pwcheck and IIS Integrated Windows logon.
1168
1169 =cut
1170
1171 Set($WebExternalGecos , undef);
1172
1173 =item C<$WebExternalAuto>
1174
1175 C<$WebExternalAuto> will create users under the same name as REMOTE_USER
1176 upon login, if it's missing in the Users table.
1177
1178 =cut
1179
1180 Set($WebExternalAuto , undef);
1181
1182 =item C<$AutoCreate>
1183
1184 If C<$WebExternalAuto> is true, C<$AutoCreate> will be passed to User's
1185 Create method.  Use it to set defaults, such as creating 
1186 Unprivileged users with C<{ Privileged => 0 }>
1187 ( Must be a hashref of arguments )
1188
1189 =cut
1190
1191 Set($AutoCreate, undef);
1192
1193 =item C<$WebSessionClass>
1194
1195 C<$WebSessionClass> is the class you wish to use for managing Sessions.
1196 It defaults to use your SQL database, but if you are using MySQL 3.x and
1197 plans to use non-ascii Queue names, uncomment and add this line to
1198 F<RT_SiteConfig.pm> will prevent session corruption.
1199
1200 =cut
1201
1202 # Set($WebSessionClass , 'Apache::Session::File');
1203
1204 =item C<$AutoLogoff>
1205
1206 By default, RT's user sessions persist until a user closes his or her 
1207 browser. With the C<$AutoLogoff> option you can setup session lifetime in 
1208 minutes. A user will be logged out if he or she doesn't send any requests 
1209 to RT for the defined time.
1210
1211 =cut
1212
1213 Set($AutoLogoff, 0);
1214
1215 =item C<$LogoutRefresh>
1216
1217 The number of seconds to wait after logout before sending the user to the
1218 login page. By default, 1 second, though you may want to increase this if
1219 you display additional information on the logout page.
1220
1221 =cut
1222
1223 Set($LogoutRefresh, 1);
1224
1225 =item C<$WebSecureCookies>
1226
1227 By default, RT's session cookie isn't marked as "secure" Some web browsers 
1228 will treat secure cookies more carefully than non-secure ones, being careful
1229 not to write them to disk, only send them over an SSL secured connection 
1230 and so on. To enable this behaviour, set C<$WebSecureCookies> to a true value. 
1231 NOTE: You probably don't want to turn this on _unless_ users are only connecting
1232 via SSL encrypted HTTP connections.
1233
1234 =cut
1235
1236 Set($WebSecureCookies, 0);
1237
1238 =item C<$WebHttpOnlyCookies>
1239
1240 Default RT's session cookie to not being directly accessible to
1241 javascript.  The content is still sent during regular and AJAX requests,
1242 and other cookies are unaffected, but the session-id is less
1243 programmatically accessible to javascript.  Turning this off should only
1244 be necessary in situations with odd client-side authentication
1245 requirements.
1246
1247 =cut
1248
1249 Set($WebHttpOnlyCookies, 1);
1250
1251 =item C<$WebFlushDbCacheEveryRequest>
1252
1253 By default, RT clears its database cache after every page view.
1254 This ensures that you've always got the most current information 
1255 when working in a multi-process (mod_perl or FastCGI) Environment
1256 Setting C<$WebFlushDbCacheEveryRequest> to '0' will turn this off,
1257 which will speed RT up a bit, at the expense of a tiny bit of data 
1258 accuracy.
1259
1260 =cut
1261
1262 Set($WebFlushDbCacheEveryRequest, '1');
1263
1264
1265 =item C<$MaxInlineBody>
1266
1267 C<$MaxInlineBody> is the maximum attachment size that we want to see
1268 inline when viewing a transaction.  RT will inline any text if value
1269 is undefined or 0.  This option can be overridden by users in their
1270 preferences.
1271
1272 =cut
1273
1274 Set($MaxInlineBody, 12000);
1275
1276 =item C<$DefaultSummaryRows>
1277
1278 C<$DefaultSummaryRows> is default number of rows displayed in for search
1279 results on the frontpage.
1280
1281 =cut
1282
1283 Set($DefaultSummaryRows, 10);
1284
1285 =item C<$HomePageRefreshInterval>
1286
1287 C<$HomePageRefreshInterval> is default number of seconds to refresh the RT
1288 home page. Choose from [0, 120, 300, 600, 1200, 3600, 7200].
1289
1290 =cut
1291
1292 Set($HomePageRefreshInterval, 0);
1293
1294 =item C<$SearchResultsRefreshInterval>
1295
1296 C<$SearchResultsRefreshInterval> is default number of seconds to refresh
1297 search results in RT. Choose from [0, 120, 300, 600, 1200, 3600, 7200].
1298
1299 =cut
1300
1301 Set($SearchResultsRefreshInterval, 0);
1302
1303 =item C<$ResolveDefaultUpdateType>
1304
1305 Set the default Update Type when clicking the Resolve link in the Ticket
1306 links tab.
1307
1308   Comment            Comments (Not sent to requestors)
1309   Respond            Reply to requestors
1310
1311 =cut
1312
1313 Set($ResolveDefaultUpdateType, 'Comment');
1314
1315 =item C<$SuppressAutoOpenOnUpdate>
1316
1317 When users click Comment or Reply on a new ticket in the web UI, the default
1318 status for the ticket gets set to 'open' if the status is currently 'new'.
1319 Setting this option to 1 will suppress that behavior and leave the default
1320 status as 'new'. This option can be overridden by users in their preferences.
1321
1322 =cut
1323
1324 Set($SuppressAutoOpenOnUpdate, 0);
1325
1326 =item C<$OldestTransactionsFirst>
1327
1328 By default, RT shows newest transactions at the bottom of the ticket
1329 history page, if you want see them at the top set this to '0'.  This
1330 option can be overridden by users in their preferences.
1331
1332 =cut
1333
1334 Set($OldestTransactionsFirst, '1');
1335
1336 =item C<$ShowTransactionImages>
1337
1338 By default, RT shows images attached to incoming (and outgoing) ticket updates
1339 inline. Set this variable to 0 if you'd like to disable that behaviour
1340
1341 =cut
1342
1343 Set($ShowTransactionImages, 1);
1344
1345 =item C<$PlainTextPre>
1346
1347 Normally plaintext attachments are displayed as HTML with line
1348 breaks preserved.  This causes space- and tab-based formatting not
1349 to be displayed correctly.  By setting $PlainTextPre they'll be
1350 displayed using <pre> instead so such formatting works, but they'll
1351 use a monospaced font, no matter what the value of C<$PlainTextMono> is.
1352
1353 =cut
1354
1355 Set($PlainTextPre, 0);
1356
1357
1358 =item C<$PlainTextMono> 
1359 To display plaintext attachments,
1360 Set C<$PlainTextMono> to 1 to use monospaced font and preserve
1361 formatting, but unlike PlainTextPre, the text will wrap to fit into the
1362 UI.
1363
1364 =cut
1365
1366 Set($PlainTextMono, 0);
1367
1368 =item C<$ShowUnreadMessageNotifications>
1369
1370 By default, RT will prompt users when there are new, unread messages on
1371 tickets they are viewing.
1372
1373 Set C<$ShowUnreadMessageNotifications> to a false value to disable this feature.
1374
1375 =cut
1376
1377 Set($ShowUnreadMessageNotifications, 1);
1378
1379
1380 =item C<$HomepageComponents>
1381
1382 C<$HomepageComponents> is an arrayref of allowed components on a user's
1383 customized homepage ("RT at a glance").
1384
1385 =cut
1386
1387 Set($HomepageComponents, [qw(QuickCreate Quicksearch MyAdminQueues MySupportQueues MyReminders RefreshHomepage Dashboards)]);
1388
1389 =item C<@MasonParameters>
1390
1391 C<@MasonParameters> is the list of parameters for the constructor of
1392 HTML::Mason's Apache or CGI Handler.  This is normally only useful
1393 for debugging, eg. profiling individual components with:
1394
1395     use MasonX::Profiler; # available on CPAN
1396     Set(@MasonParameters, (preamble => 'my $p = MasonX::Profiler->new($m, $r);'));
1397
1398 =cut
1399
1400 Set(@MasonParameters, ());
1401
1402 =item C<$DefaultSearchResultFormat>
1403
1404 C<$DefaultSearchResultFormat> is the default format for RT search results
1405
1406 =cut
1407
1408 Set ($DefaultSearchResultFormat, qq{
1409    '<B><A HREF="__WebPath__/Ticket/Display.html?id=__id__">__id__</a></B>/TITLE:#',
1410    '<B><A HREF="__WebPath__/Ticket/Display.html?id=__id__">__Subject__</a></B>/TITLE:Subject',
1411    Status,
1412    QueueName, 
1413    OwnerName, 
1414    Priority, 
1415    '__NEWLINE__',
1416    '', 
1417    '<small>__Requestors__</small>',
1418    '<small>__CreatedRelative__</small>',
1419    '<small>__ToldRelative__</small>',
1420    '<small>__LastUpdatedRelative__</small>',
1421    '<small>__TimeLeft__</small>'});
1422
1423 =item C<$DefaultSelfServiceSearchResultFormat>
1424
1425 C<$DefaultSelfServiceSearchResultFormat> is the default format of searches displayed in the 
1426 SelfService interface.
1427
1428 =cut
1429
1430 Set($DefaultSelfServiceSearchResultFormat, qq{
1431    '<B><A HREF="__WebPath__/SelfService/Display.html?id=__id__">__id__</a></B>/TITLE:#',
1432    '<B><A HREF="__WebPath__/SelfService/Display.html?id=__id__">__Subject__</a></B>/TITLE:Subject',
1433    Status,
1434    Requestors,
1435    OwnerName});
1436
1437 =item C<%AdminSearchResultFormat>
1438
1439 In admin interface format strings similar to tickets search result
1440 formats are used. Use C<%AdminSearchResultFormat> to define format
1441 strings per RT class.
1442
1443 =cut
1444
1445 Set(%AdminSearchResultFormat,
1446     Queues =>
1447         q{'<a href="__WebPath__/Admin/Queues/Modify.html?id=__id__">__id__</a>/TITLE:#'}
1448         .q{,'<a href="__WebPath__/Admin/Queues/Modify.html?id=__id__">__Name__</a>/TITLE:Name'}
1449         .q{,__Description__,__Address__,__Priority__,__DefaultDueIn__,__Disabled__},
1450
1451     Groups =>
1452         q{'<a href="__WebPath__/Admin/Groups/Modify.html?id=__id__">__id__</a>/TITLE:#'}
1453         .q{,'<a href="__WebPath__/Admin/Groups/Modify.html?id=__id__">__Name__</a>/TITLE:Name'}
1454         .q{,'__Description__'},
1455
1456     Users =>
1457         q{'<a href="__WebPath__/Admin/Users/Modify.html?id=__id__">__id__</a>/TITLE:#'}
1458         .q{,'<a href="__WebPath__/Admin/Users/Modify.html?id=__id__">__Name__</a>/TITLE:Name'}
1459         .q{,__RealName__, __EmailAddress__},
1460
1461     CustomFields =>
1462         q{'<a href="__WebPath__/Admin/CustomFields/Modify.html?id=__id__">__id__</a>/TITLE:#'}
1463         .q{,'<a href="__WebPath__/Admin/CustomFields/Modify.html?id=__id__">__Name__</a>/TITLE:Name'}
1464         .q{,__AppliedTo__, __FriendlyType__, __FriendlyPattern__},
1465
1466     Scrips => 
1467         q{'<a href="__WebPath__/__WebRequestPathDir__/Scrip.html?id=__id__&Queue=__QueueId__">__id__</a>/TITLE:#'}
1468         .q{,'<a href="__WebPath__/__WebRequestPathDir__/Scrip.html?id=__id__&Queue=__QueueId__">__Description__</a>/TITLE:Description'}
1469         .q{,__Stage__, __Condition__, __Action__, __Template__},
1470
1471     Templates =>
1472         q{'<a href="__WebPath__/__WebRequestPathDir__/Template.html?Queue=__QueueId__&Template=__id__">__id__</a>/TITLE:#'}
1473         .q{,'<a href="__WebPath__/__WebRequestPathDir__/Template.html?Queue=__QueueId__&Template=__id__">__Name__</a>/TITLE:Name'}
1474         .q{,'__Description__'},
1475 );
1476
1477 =item C<$SuppressInlineTextFiles>
1478
1479 If C<$SuppressInlineTextFiles> is set to a true value, then uploaded
1480 text files (text-type attachments with file names) are prevented
1481 from being displayed in-line when viewing a ticket's history.
1482
1483 =cut
1484
1485 Set($SuppressInlineTextFiles, undef);
1486
1487 =item C<$DontSearchFileAttachments>
1488
1489 If C<$DontSearchFileAttachments> is set to a true value, then uploaded
1490 files (attachments with file names) are not searched during full-content
1491 ticket searches.
1492
1493 =cut
1494
1495 Set($DontSearchFileAttachments, undef);
1496
1497 =item C<%ChartFont>
1498
1499 The L<GD> module (which RT uses for graphs) ships with a builtin font 
1500 that doesn't have full Unicode support. You can use a given TrueType font 
1501 for a specific language by setting %ChartFont to (language =E<gt> the 
1502 absolute path of a font) pairs. Your GD library must have support for
1503 TrueType fonts to use this option. If there is no entry for a language 
1504 in the hash then font with 'others' key is used.
1505
1506 RT comes with two TrueType fonts covering most available languages.
1507
1508 =cut
1509
1510 Set(
1511     %ChartFont,
1512     'zh-cn'  => "$RT::BasePath/share/fonts/DroidSansFallback.ttf",
1513     'zh-tw'  => "$RT::BasePath/share/fonts/DroidSansFallback.ttf",
1514     'ja'     => "$RT::BasePath/share/fonts/DroidSansFallback.ttf",
1515     'others' => "$RT::BasePath/share/fonts/DroidSans.ttf",
1516 );
1517
1518 =item C<$ChartsTimezonesInDB>
1519
1520 RT stores dates using the UTC timezone in the DB, so charts grouped
1521 by dates and time are not representative. Set C<$ChartsTimezonesInDB>
1522 to a true value to enable timezone conversions using your DB's
1523 capabilities. You may need to do some work on the DB side to use this
1524 feature, read more in F<docs/timezones_in_charts.pod>.
1525
1526 At this time, this feature only applies to MySQL and PostgreSQL.
1527
1528 =cut
1529
1530 Set( $ChartsTimezonesInDB, 0 );
1531
1532 =item C<@Active_MakeClicky>
1533
1534 MakeClicky detects various formats of data in headers and email
1535 messages, and extends them with supporting links.  By default, RT
1536 provides two formats:
1537
1538 * 'httpurl': detects http:// and https:// URLs and adds '[Open URL]'
1539   link after the URL.
1540
1541 * 'httpurl_overwrite': also detects URLs as 'httpurl' format, but
1542   replace URL with link and *adds spaces* into text if it's longer
1543   then 30 chars. This allow browser to wrap long URLs and avoid
1544   horizontal scrolling.
1545
1546 See F<share/html/Elements/MakeClicky> for documentation on how to add your own.
1547
1548 =cut
1549
1550 Set(@Active_MakeClicky, qw());
1551
1552 =item C<$DefaultQueue>
1553
1554 Use this to select the default queue name that will be used for creating new
1555 tickets. You may use either the queue's name or its ID. This only affects the
1556 queue selection boxes on the web interface.
1557
1558 =cut
1559
1560 #Set($DefaultQueue, 'General');
1561
1562 =item C<$DefaultTimeUnitsToHours>
1563
1564 Use this to set the default units for time entry to hours instead of minutes.
1565
1566 =cut
1567
1568 Set($DefaultTimeUnitsToHours, 0);
1569
1570 =back
1571
1572 =head1 L<Net::Server> (rt-server) Configuration
1573
1574 =over 4
1575
1576 =item C<$StandaloneMinServers>, C<$StandaloneMaxServers>
1577
1578 The absolute minimum and maximum number of servers that will be created to
1579 handle requests. Having multiple servers means that serving a slow page will
1580 affect other users less.
1581
1582 =cut
1583
1584 Set($StandaloneMinServers, 1);
1585 Set($StandaloneMaxServers, 1);
1586
1587 =item C<$StandaloneMinSpareServers>, C<$StandaloneMaxSpareServers>
1588
1589 These next two options can be used to scale up and down the number of servers
1590 to adjust to load. These two options will respect the C<$StandaloneMinServers
1591 > and C<$StandaloneMaxServers options>.
1592
1593 =cut
1594
1595 Set($StandaloneMinSpareServers, 0);
1596 Set($StandaloneMaxSpareServers, 0);
1597
1598 =item C<$StandaloneMaxRequests>
1599
1600 This sets the absolute maximum number of requests a single server will serve.
1601 Setting this would be useful if, for example, memory usage slowly crawls up
1602 every hit.
1603
1604 =cut
1605
1606 #Set($StandaloneMaxRequests, 50);
1607
1608 =item C<%NetServerOptions>
1609
1610 C<%NetServerOptions> is a hash of additional options to use for
1611 L<Net::Server/DEFAULT ARGUMENTS>. For example, you could set
1612 reverse_lookups to get the hostnames for all users with:
1613
1614 C<Set(%NetServerOptions, (reverse_lookups => 1));>
1615
1616 =cut
1617
1618 Set(%NetServerOptions, ());
1619
1620 =back
1621
1622
1623 =head1 UTF-8 Configuration
1624
1625 =over 4
1626
1627 =item C<@LexiconLanguages>
1628
1629 An array that contains languages supported by RT's internationalization
1630 interface.  Defaults to all *.po lexicons; setting it to C<qw(en ja)> will make
1631 RT bilingual instead of multilingual, but will save some memory.
1632
1633 =cut
1634
1635 Set(@LexiconLanguages, qw(*));
1636
1637 =item C<@EmailInputEncodings>
1638
1639 An array that contains default encodings used to guess which charset
1640 an attachment uses if not specified.  Must be recognized by
1641 L<Encode::Guess>.
1642
1643 =cut
1644
1645 Set(@EmailInputEncodings, qw(utf-8 iso-8859-1 us-ascii));
1646
1647 =item C<$EmailOutputEncoding>
1648
1649 The charset for localized email.  Must be recognized by Encode.
1650
1651 =cut
1652
1653 Set($EmailOutputEncoding, 'utf-8');
1654
1655
1656 =back
1657
1658 =head1 Date Handling Configuration
1659
1660 =over 4
1661
1662 =item C<$DateTimeFormat>
1663
1664 You can choose date and time format.  See "Output formatters"
1665 section in perldoc F<lib/RT/Date.pm> for more options.  This option can
1666 be overridden by users in their preferences.
1667 Some examples:
1668
1669 C<Set($DateTimeFormat, 'LocalizedDateTime');>
1670 C<Set($DateTimeFormat, { Format => 'ISO', Seconds => 0 });>
1671 C<Set($DateTimeFormat, 'RFC2822');>
1672 C<Set($DateTimeFormat, { Format => 'RFC2822', Seconds => 0, DayOfWeek => 0 });>
1673
1674 =cut
1675
1676 Set($DateTimeFormat, 'DefaultFormat');
1677
1678 # Next two options are for Time::ParseDate
1679
1680 =item C<$DateDayBeforeMonth>
1681
1682 Set this to 1 if your local date convention looks like "dd/mm/yy" instead of
1683 "mm/dd/yy". Used only for parsing, not for displaying dates.
1684
1685 =cut
1686
1687 Set($DateDayBeforeMonth , 1);
1688
1689 =item C<$AmbiguousDayInPast>, C<$AmbiguousDayInFuture>
1690
1691 Should an unspecified day or year in a date refer to a future or a
1692 past value? For example, should a date of "Tuesday" default to mean
1693 the date for next Tuesday or last Tuesday? Should the date "March 1"
1694 default to the date for next March or last March?
1695
1696 Set $<AmbiguousDayInPast> for the last date, or $<$AmbiguousDayInFuture> for the
1697 next date.
1698
1699 The default is usually good.
1700
1701 =cut
1702
1703 Set($AmbiguousDayInPast, 0);
1704 Set($AmbiguousDayInFuture, 0);
1705
1706 =back
1707
1708 =head1 Approval Configuration
1709
1710 Configuration for the approval system
1711
1712 =over 4
1713
1714 =item C<$ApprovalRejectionNotes>
1715
1716 Should rejection notes be sent to the requestors?  The default is true.
1717
1718 =cut
1719
1720 Set($ApprovalRejectionNotes, 1);
1721
1722
1723 =back
1724
1725 =head1 Miscellaneous Configuration
1726
1727 =over 4
1728
1729 =item C<@ActiveStatus>, C<@InactiveStatus>
1730
1731 You can define new statuses and even reorder existing statuses here.
1732 WARNING. DO NOT DELETE ANY OF THE DEFAULT STATUSES. If you do, RT
1733 will break horribly. The statuses you add must be no longer than
1734 10 characters.
1735
1736 =cut
1737
1738 Set(@ActiveStatus, qw(new open stalled));
1739 Set(@InactiveStatus, qw(resolved rejected deleted));
1740
1741 =item C<$LinkTransactionsRun1Scrip>
1742
1743 RT-3.4 backward compatibility setting. Add/Delete Link used to record one
1744 transaction and run one scrip. Set this value to 1 if you want
1745 only one of the link transactions to have scrips run.
1746
1747 =cut
1748
1749 Set($LinkTransactionsRun1Scrip, 0);
1750
1751 =item C<$StrictLinkACL>
1752
1753 When this feature is enabled a user needs I<ModifyTicket> rights on both
1754 tickets to link them together, otherwise he can have rights on either of
1755 them.
1756
1757 =cut
1758
1759 Set($StrictLinkACL, 1);
1760
1761 =item C<$PreviewScripMessages>
1762
1763 Set C<$PreviewScripMessages> to 1 if the scrips preview on the ticket
1764 reply page should include the content of the messages to be sent.
1765
1766 =cut
1767
1768 Set($PreviewScripMessages, 0);
1769
1770 =item C<$UseTransactionBatch>
1771
1772 Set C<$UseTransactionBatch> to 1 to execute transactions in batches,
1773 such that a resolve and comment (for example) would happen
1774 simultaneously, instead of as two transactions, unaware of each
1775 others' existence.
1776
1777 =cut
1778
1779 Set($UseTransactionBatch, 1);
1780
1781 =item C<@CustomFieldValuesSources>
1782
1783 Set C<@CustomFieldValuesSources> to a list of class names which extend
1784 L<RT::CustomFieldValues::External>.  This can be used to pull lists of
1785 custom field values from external sources at runtime.
1786
1787 =cut
1788
1789 Set(@CustomFieldValuesSources, ());
1790
1791 =item C<$CanonicalizeRedirectURLs>
1792
1793 Set C<$CanonicalizeRedirectURLs> to 1 to use $C<WebURL> when redirecting rather
1794 than the one we get from C<%ENV>.
1795
1796 If you use RT behind a reverse proxy, you almost certainly want to
1797 enable this option.
1798
1799 =cut
1800
1801 Set($CanonicalizeRedirectURLs, 0);
1802 =item C<$EnableReminders>
1803
1804 Hide links/portlets related to Reminders by setting this to 0
1805
1806 =cut
1807
1808 Set($EnableReminders,1);
1809
1810
1811 =item C<@Plugins>
1812
1813 Set C<@Plugins> to a list of external RT plugins that should be enabled (those
1814 plugins have to be previously downloaded and installed).
1815 Example:
1816
1817 C<Set(@Plugins, (qw(Extension::QuickDelete RT::FM)));>
1818
1819 =cut
1820
1821 Set(@Plugins, ());
1822
1823 =back
1824
1825 =head1 Development Configuration
1826
1827 =over 4
1828
1829 =item C<$DevelMode>
1830
1831 RT comes with a "Development mode" setting. 
1832 This setting, as a convenience for developers, turns on 
1833 all sorts of development options that you most likely don't want in 
1834 production:
1835
1836 * Turns off Mason's 'static_source' directive. By default, you can't 
1837   edit RT's web ui components on the fly and have RT magically pick up
1838   your changes. (It's a big performance hit)
1839
1840  * More to come
1841
1842 =cut
1843
1844 Set($DevelMode, '@RT_DEVEL_MODE@');
1845
1846
1847 =back
1848
1849 =head1 Deprecated Options
1850
1851 =over 4
1852
1853 =item C<$AlwaysUseBase64>
1854
1855 Encode blobs as base64 in DB (?)
1856
1857 =item C<$TicketBaseURI>
1858
1859 Base URI to tickets in this system; used when loading (?)
1860
1861 =item C<$UseCodeTickets>
1862
1863 This option is exists for backwards compatibility.  Don't use it.
1864
1865 =back
1866
1867 =cut
1868
1869 1;