import rt 3.8.9
[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<$WebFlushDbCacheEveryRequest>
1239
1240 By default, RT clears its database cache after every page view.
1241 This ensures that you've always got the most current information 
1242 when working in a multi-process (mod_perl or FastCGI) Environment
1243 Setting C<$WebFlushDbCacheEveryRequest> to '0' will turn this off,
1244 which will speed RT up a bit, at the expense of a tiny bit of data 
1245 accuracy.
1246
1247 =cut
1248
1249 Set($WebFlushDbCacheEveryRequest, '1');
1250
1251
1252 =item C<$MaxInlineBody>
1253
1254 C<$MaxInlineBody> is the maximum attachment size that we want to see
1255 inline when viewing a transaction.  RT will inline any text if value
1256 is undefined or 0.  This option can be overridden by users in their
1257 preferences.
1258
1259 =cut
1260
1261 Set($MaxInlineBody, 12000);
1262
1263 =item C<$DefaultSummaryRows>
1264
1265 C<$DefaultSummaryRows> is default number of rows displayed in for search
1266 results on the frontpage.
1267
1268 =cut
1269
1270 Set($DefaultSummaryRows, 10);
1271
1272 =item C<$HomePageRefreshInterval>
1273
1274 C<$HomePageRefreshInterval> is default number of seconds to refresh the RT
1275 home page. Choose from [0, 120, 300, 600, 1200, 3600, 7200].
1276
1277 =cut
1278
1279 Set($HomePageRefreshInterval, 0);
1280
1281 =item C<$SearchResultsRefreshInterval>
1282
1283 C<$SearchResultsRefreshInterval> is default number of seconds to refresh
1284 search results in RT. Choose from [0, 120, 300, 600, 1200, 3600, 7200].
1285
1286 =cut
1287
1288 Set($SearchResultsRefreshInterval, 0);
1289
1290 =item C<$ResolveDefaultUpdateType>
1291
1292 Set the default Update Type when clicking the Resolve link in the Ticket
1293 links tab.
1294
1295   Comment            Comments (Not sent to requestors)
1296   Respond            Reply to requestors
1297
1298 =cut
1299
1300 Set($ResolveDefaultUpdateType, 'Comment');
1301
1302 =item C<$SuppressAutoOpenOnUpdate>
1303
1304 When users click Comment or Reply on a new ticket in the web UI, the default
1305 status for the ticket gets set to 'open' if the status is currently 'new'.
1306 Setting this option to 1 will suppress that behavior and leave the default
1307 status as 'new'. This option can be overridden by users in their preferences.
1308
1309 =cut
1310
1311 Set($SuppressAutoOpenOnUpdate, 0);
1312
1313 =item C<$OldestTransactionsFirst>
1314
1315 By default, RT shows newest transactions at the bottom of the ticket
1316 history page, if you want see them at the top set this to '0'.  This
1317 option can be overridden by users in their preferences.
1318
1319 =cut
1320
1321 Set($OldestTransactionsFirst, '1');
1322
1323 =item C<$ShowTransactionImages>
1324
1325 By default, RT shows images attached to incoming (and outgoing) ticket updates
1326 inline. Set this variable to 0 if you'd like to disable that behaviour
1327
1328 =cut
1329
1330 Set($ShowTransactionImages, 1);
1331
1332 =item C<$PlainTextPre>
1333
1334 Normally plaintext attachments are displayed as HTML with line
1335 breaks preserved.  This causes space- and tab-based formatting not
1336 to be displayed correctly.  By setting $PlainTextPre they'll be
1337 displayed using <pre> instead so such formatting works, but they'll
1338 use a monospaced font, no matter what the value of C<$PlainTextMono> is.
1339
1340 =cut
1341
1342 Set($PlainTextPre, 0);
1343
1344
1345 =item C<$PlainTextMono> 
1346 To display plaintext attachments,
1347 Set C<$PlainTextMono> to 1 to use monospaced font and preserve
1348 formatting, but unlike PlainTextPre, the text will wrap to fit into the
1349 UI.
1350
1351 =cut
1352
1353 Set($PlainTextMono, 0);
1354
1355 =item C<$ShowUnreadMessageNotifications>
1356
1357 By default, RT will prompt users when there are new, unread messages on
1358 tickets they are viewing.
1359
1360 Set C<$ShowUnreadMessageNotifications> to a false value to disable this feature.
1361
1362 =cut
1363
1364 Set($ShowUnreadMessageNotifications, 1);
1365
1366
1367 =item C<$HomepageComponents>
1368
1369 C<$HomepageComponents> is an arrayref of allowed components on a user's
1370 customized homepage ("RT at a glance").
1371
1372 =cut
1373
1374 Set($HomepageComponents, [qw(QuickCreate Quicksearch MyAdminQueues MySupportQueues MyReminders RefreshHomepage Dashboards)]);
1375
1376 =item C<@MasonParameters>
1377
1378 C<@MasonParameters> is the list of parameters for the constructor of
1379 HTML::Mason's Apache or CGI Handler.  This is normally only useful
1380 for debugging, eg. profiling individual components with:
1381
1382     use MasonX::Profiler; # available on CPAN
1383     Set(@MasonParameters, (preamble => 'my $p = MasonX::Profiler->new($m, $r);'));
1384
1385 =cut
1386
1387 Set(@MasonParameters, ());
1388
1389 =item C<$DefaultSearchResultFormat>
1390
1391 C<$DefaultSearchResultFormat> is the default format for RT search results
1392
1393 =cut
1394
1395 Set ($DefaultSearchResultFormat, qq{
1396    '<B><A HREF="__WebPath__/Ticket/Display.html?id=__id__">__id__</a></B>/TITLE:#',
1397    '<B><A HREF="__WebPath__/Ticket/Display.html?id=__id__">__Subject__</a></B>/TITLE:Subject',
1398    Status,
1399    QueueName, 
1400    OwnerName, 
1401    Priority, 
1402    '__NEWLINE__',
1403    '', 
1404    '<small>__Requestors__</small>',
1405    '<small>__CreatedRelative__</small>',
1406    '<small>__ToldRelative__</small>',
1407    '<small>__LastUpdatedRelative__</small>',
1408    '<small>__TimeLeft__</small>'});
1409
1410 =item C<$DefaultSelfServiceSearchResultFormat>
1411
1412 C<$DefaultSelfServiceSearchResultFormat> is the default format of searches displayed in the 
1413 SelfService interface.
1414
1415 =cut
1416
1417 Set($DefaultSelfServiceSearchResultFormat, qq{
1418    '<B><A HREF="__WebPath__/SelfService/Display.html?id=__id__">__id__</a></B>/TITLE:#',
1419    '<B><A HREF="__WebPath__/SelfService/Display.html?id=__id__">__Subject__</a></B>/TITLE:Subject',
1420    Status,
1421    Requestors,
1422    OwnerName});
1423
1424 =item C<%AdminSearchResultFormat>
1425
1426 In admin interface format strings similar to tickets search result
1427 formats are used. Use C<%AdminSearchResultFormat> to define format
1428 strings per RT class.
1429
1430 =cut
1431
1432 Set(%AdminSearchResultFormat,
1433     Queues =>
1434         q{'<a href="__WebPath__/Admin/Queues/Modify.html?id=__id__">__id__</a>/TITLE:#'}
1435         .q{,'<a href="__WebPath__/Admin/Queues/Modify.html?id=__id__">__Name__</a>/TITLE:Name'}
1436         .q{,__Description__,__Address__,__Priority__,__DefaultDueIn__,__Disabled__},
1437
1438     Groups =>
1439         q{'<a href="__WebPath__/Admin/Groups/Modify.html?id=__id__">__id__</a>/TITLE:#'}
1440         .q{,'<a href="__WebPath__/Admin/Groups/Modify.html?id=__id__">__Name__</a>/TITLE:Name'}
1441         .q{,'__Description__'},
1442
1443     Users =>
1444         q{'<a href="__WebPath__/Admin/Users/Modify.html?id=__id__">__id__</a>/TITLE:#'}
1445         .q{,'<a href="__WebPath__/Admin/Users/Modify.html?id=__id__">__Name__</a>/TITLE:Name'}
1446         .q{,__RealName__, __EmailAddress__},
1447
1448     CustomFields =>
1449         q{'<a href="__WebPath__/Admin/CustomFields/Modify.html?id=__id__">__id__</a>/TITLE:#'}
1450         .q{,'<a href="__WebPath__/Admin/CustomFields/Modify.html?id=__id__">__Name__</a>/TITLE:Name'}
1451         .q{,__AppliedTo__, __FriendlyType__, __FriendlyPattern__},
1452
1453     Scrips => 
1454         q{'<a href="__WebPath__/__WebRequestPathDir__/Scrip.html?id=__id__&Queue=__QueueId__">__id__</a>/TITLE:#'}
1455         .q{,'<a href="__WebPath__/__WebRequestPathDir__/Scrip.html?id=__id__&Queue=__QueueId__">__Description__</a>/TITLE:Description'}
1456         .q{,__Stage__, __Condition__, __Action__, __Template__},
1457
1458     Templates =>
1459         q{'<a href="__WebPath__/__WebRequestPathDir__/Template.html?Queue=__QueueId__&Template=__id__">__id__</a>/TITLE:#'}
1460         .q{,'<a href="__WebPath__/__WebRequestPathDir__/Template.html?Queue=__QueueId__&Template=__id__">__Name__</a>/TITLE:Name'}
1461         .q{,'__Description__'},
1462 );
1463
1464 =item C<$SuppressInlineTextFiles>
1465
1466 If C<$SuppressInlineTextFiles> is set to a true value, then uploaded
1467 text files (text-type attachments with file names) are prevented
1468 from being displayed in-line when viewing a ticket's history.
1469
1470 =cut
1471
1472 Set($SuppressInlineTextFiles, undef);
1473
1474 =item C<$DontSearchFileAttachments>
1475
1476 If C<$DontSearchFileAttachments> is set to a true value, then uploaded
1477 files (attachments with file names) are not searched during full-content
1478 ticket searches.
1479
1480 =cut
1481
1482 Set($DontSearchFileAttachments, undef);
1483
1484 =item C<%ChartFont>
1485
1486 The L<GD> module (which RT uses for graphs) ships with a builtin font 
1487 that doesn't have full Unicode support. You can use a given TrueType font 
1488 for a specific language by setting %ChartFont to (language =E<gt> the 
1489 absolute path of a font) pairs. Your GD library must have support for
1490 TrueType fonts to use this option. If there is no entry for a language 
1491 in the hash then font with 'others' key is used.
1492
1493 RT comes with two TrueType fonts covering most available languages.
1494
1495 =cut
1496
1497 Set(
1498     %ChartFont,
1499     'zh-cn'  => "$RT::BasePath/share/fonts/DroidSansFallback.ttf",
1500     'zh-tw'  => "$RT::BasePath/share/fonts/DroidSansFallback.ttf",
1501     'ja'     => "$RT::BasePath/share/fonts/DroidSansFallback.ttf",
1502     'others' => "$RT::BasePath/share/fonts/DroidSans.ttf",
1503 );
1504
1505 =item C<$ChartsTimezonesInDB>
1506
1507 RT stores dates using the UTC timezone in the DB, so charts grouped
1508 by dates and time are not representative. Set C<$ChartsTimezonesInDB>
1509 to a true value to enable timezone conversions using your DB's
1510 capabilities. You may need to do some work on the DB side to use this
1511 feature, read more in F<docs/timezones_in_charts.pod>.
1512
1513 At this time, this feature only applies to MySQL and PostgreSQL.
1514
1515 =cut
1516
1517 Set( $ChartsTimezonesInDB, 0 );
1518
1519 =item C<@Active_MakeClicky>
1520
1521 MakeClicky detects various formats of data in headers and email
1522 messages, and extends them with supporting links.  By default, RT
1523 provides two formats:
1524
1525 * 'httpurl': detects http:// and https:// URLs and adds '[Open URL]'
1526   link after the URL.
1527
1528 * 'httpurl_overwrite': also detects URLs as 'httpurl' format, but
1529   replace URL with link and *adds spaces* into text if it's longer
1530   then 30 chars. This allow browser to wrap long URLs and avoid
1531   horizontal scrolling.
1532
1533 See F<share/html/Elements/MakeClicky> for documentation on how to add your own.
1534
1535 =cut
1536
1537 Set(@Active_MakeClicky, qw());
1538
1539 =item C<$DefaultQueue>
1540
1541 Use this to select the default queue name that will be used for creating new
1542 tickets. You may use either the queue's name or its ID. This only affects the
1543 queue selection boxes on the web interface.
1544
1545 =cut
1546
1547 #Set($DefaultQueue, 'General');
1548
1549 =item C<$DefaultTimeUnitsToHours>
1550
1551 Use this to set the default units for time entry to hours instead of minutes.
1552
1553 =cut
1554
1555 Set($DefaultTimeUnitsToHours, 0);
1556
1557 =back
1558
1559 =head1 L<Net::Server> (rt-server) Configuration
1560
1561 =over 4
1562
1563 =item C<$StandaloneMinServers>, C<$StandaloneMaxServers>
1564
1565 The absolute minimum and maximum number of servers that will be created to
1566 handle requests. Having multiple servers means that serving a slow page will
1567 affect other users less.
1568
1569 =cut
1570
1571 Set($StandaloneMinServers, 1);
1572 Set($StandaloneMaxServers, 1);
1573
1574 =item C<$StandaloneMinSpareServers>, C<$StandaloneMaxSpareServers>
1575
1576 These next two options can be used to scale up and down the number of servers
1577 to adjust to load. These two options will respect the C<$StandaloneMinServers
1578 > and C<$StandaloneMaxServers options>.
1579
1580 =cut
1581
1582 Set($StandaloneMinSpareServers, 0);
1583 Set($StandaloneMaxSpareServers, 0);
1584
1585 =item C<$StandaloneMaxRequests>
1586
1587 This sets the absolute maximum number of requests a single server will serve.
1588 Setting this would be useful if, for example, memory usage slowly crawls up
1589 every hit.
1590
1591 =cut
1592
1593 #Set($StandaloneMaxRequests, 50);
1594
1595 =item C<%NetServerOptions>
1596
1597 C<%NetServerOptions> is a hash of additional options to use for
1598 L<Net::Server/DEFAULT ARGUMENTS>. For example, you could set
1599 reverse_lookups to get the hostnames for all users with:
1600
1601 C<Set(%NetServerOptions, (reverse_lookups => 1));>
1602
1603 =cut
1604
1605 Set(%NetServerOptions, ());
1606
1607 =back
1608
1609
1610 =head1 UTF-8 Configuration
1611
1612 =over 4
1613
1614 =item C<@LexiconLanguages>
1615
1616 An array that contains languages supported by RT's internationalization
1617 interface.  Defaults to all *.po lexicons; setting it to C<qw(en ja)> will make
1618 RT bilingual instead of multilingual, but will save some memory.
1619
1620 =cut
1621
1622 Set(@LexiconLanguages, qw(*));
1623
1624 =item C<@EmailInputEncodings>
1625
1626 An array that contains default encodings used to guess which charset
1627 an attachment uses if not specified.  Must be recognized by
1628 L<Encode::Guess>.
1629
1630 =cut
1631
1632 Set(@EmailInputEncodings, qw(utf-8 iso-8859-1 us-ascii));
1633
1634 =item C<$EmailOutputEncoding>
1635
1636 The charset for localized email.  Must be recognized by Encode.
1637
1638 =cut
1639
1640 Set($EmailOutputEncoding, 'utf-8');
1641
1642
1643 =back
1644
1645 =head1 Date Handling Configuration
1646
1647 =over 4
1648
1649 =item C<$DateTimeFormat>
1650
1651 You can choose date and time format.  See "Output formatters"
1652 section in perldoc F<lib/RT/Date.pm> for more options.  This option can
1653 be overridden by users in their preferences.
1654 Some examples:
1655
1656 C<Set($DateTimeFormat, 'LocalizedDateTime');>
1657 C<Set($DateTimeFormat, { Format => 'ISO', Seconds => 0 });>
1658 C<Set($DateTimeFormat, 'RFC2822');>
1659 C<Set($DateTimeFormat, { Format => 'RFC2822', Seconds => 0, DayOfWeek => 0 });>
1660
1661 =cut
1662
1663 Set($DateTimeFormat, 'DefaultFormat');
1664
1665 # Next two options are for Time::ParseDate
1666
1667 =item C<$DateDayBeforeMonth>
1668
1669 Set this to 1 if your local date convention looks like "dd/mm/yy" instead of
1670 "mm/dd/yy". Used only for parsing, not for displaying dates.
1671
1672 =cut
1673
1674 Set($DateDayBeforeMonth , 1);
1675
1676 =item C<$AmbiguousDayInPast>, C<$AmbiguousDayInFuture>
1677
1678 Should an unspecified day or year in a date refer to a future or a
1679 past value? For example, should a date of "Tuesday" default to mean
1680 the date for next Tuesday or last Tuesday? Should the date "March 1"
1681 default to the date for next March or last March?
1682
1683 Set $<AmbiguousDayInPast> for the last date, or $<$AmbiguousDayInFuture> for the
1684 next date.
1685
1686 The default is usually good.
1687
1688 =cut
1689
1690 Set($AmbiguousDayInPast, 0);
1691 Set($AmbiguousDayInFuture, 0);
1692
1693 =back
1694
1695 =head1 Approval Configuration
1696
1697 Configuration for the approval system
1698
1699 =over 4
1700
1701 =item C<$ApprovalRejectionNotes>
1702
1703 Should rejection notes be sent to the requestors?  The default is true.
1704
1705 =cut
1706
1707 Set($ApprovalRejectionNotes, 1);
1708
1709
1710 =back
1711
1712 =head1 Miscellaneous Configuration
1713
1714 =over 4
1715
1716 =item C<@ActiveStatus>, C<@InactiveStatus>
1717
1718 You can define new statuses and even reorder existing statuses here.
1719 WARNING. DO NOT DELETE ANY OF THE DEFAULT STATUSES. If you do, RT
1720 will break horribly. The statuses you add must be no longer than
1721 10 characters.
1722
1723 =cut
1724
1725 Set(@ActiveStatus, qw(new open stalled));
1726 Set(@InactiveStatus, qw(resolved rejected deleted));
1727
1728 =item C<$LinkTransactionsRun1Scrip>
1729
1730 RT-3.4 backward compatibility setting. Add/Delete Link used to record one
1731 transaction and run one scrip. Set this value to 1 if you want
1732 only one of the link transactions to have scrips run.
1733
1734 =cut
1735
1736 Set($LinkTransactionsRun1Scrip, 0);
1737
1738 =item C<$StrictLinkACL>
1739
1740 When this feature is enabled a user needs I<ModifyTicket> rights on both
1741 tickets to link them together, otherwise he can have rights on either of
1742 them.
1743
1744 =cut
1745
1746 Set($StrictLinkACL, 1);
1747
1748 =item C<$PreviewScripMessages>
1749
1750 Set C<$PreviewScripMessages> to 1 if the scrips preview on the ticket
1751 reply page should include the content of the messages to be sent.
1752
1753 =cut
1754
1755 Set($PreviewScripMessages, 0);
1756
1757 =item C<$UseTransactionBatch>
1758
1759 Set C<$UseTransactionBatch> to 1 to execute transactions in batches,
1760 such that a resolve and comment (for example) would happen
1761 simultaneously, instead of as two transactions, unaware of each
1762 others' existence.
1763
1764 =cut
1765
1766 Set($UseTransactionBatch, 1);
1767
1768 =item C<@CustomFieldValuesSources>
1769
1770 Set C<@CustomFieldValuesSources> to a list of class names which extend
1771 L<RT::CustomFieldValues::External>.  This can be used to pull lists of
1772 custom field values from external sources at runtime.
1773
1774 =cut
1775
1776 Set(@CustomFieldValuesSources, ());
1777
1778 =item C<$CanonicalizeRedirectURLs>
1779
1780 Set C<$CanonicalizeRedirectURLs> to 1 to use $C<WebURL> when redirecting rather
1781 than the one we get from C<%ENV>.
1782
1783 If you use RT behind a reverse proxy, you almost certainly want to
1784 enable this option.
1785
1786 =cut
1787
1788 Set($CanonicalizeRedirectURLs, 0);
1789 =item C<$EnableReminders>
1790
1791 Hide links/portlets related to Reminders by setting this to 0
1792
1793 =cut
1794
1795 Set($EnableReminders,1);
1796
1797
1798 =item C<@Plugins>
1799
1800 Set C<@Plugins> to a list of external RT plugins that should be enabled (those
1801 plugins have to be previously downloaded and installed).
1802 Example:
1803
1804 C<Set(@Plugins, (qw(Extension::QuickDelete RT::FM)));>
1805
1806 =cut
1807
1808 Set(@Plugins, ());
1809
1810 =back
1811
1812 =head1 Development Configuration
1813
1814 =over 4
1815
1816 =item C<$DevelMode>
1817
1818 RT comes with a "Development mode" setting. 
1819 This setting, as a convenience for developers, turns on 
1820 all sorts of development options that you most likely don't want in 
1821 production:
1822
1823 * Turns off Mason's 'static_source' directive. By default, you can't 
1824   edit RT's web ui components on the fly and have RT magically pick up
1825   your changes. (It's a big performance hit)
1826
1827  * More to come
1828
1829 =cut
1830
1831 Set($DevelMode, '@RT_DEVEL_MODE@');
1832
1833
1834 =back
1835
1836 =head1 Deprecated Options
1837
1838 =over 4
1839
1840 =item C<$AlwaysUseBase64>
1841
1842 Encode blobs as base64 in DB (?)
1843
1844 =item C<$TicketBaseURI>
1845
1846 Base URI to tickets in this system; used when loading (?)
1847
1848 =item C<$UseCodeTickets>
1849
1850 This option is exists for backwards compatibility.  Don't use it.
1851
1852 =back
1853
1854 =cut
1855
1856 1;