rt 4.2.13 ticket#13852
[freeside.git] / rt / etc / RT_Config.pm.in
1 #
2 # RT was configured with:
3 #
4 #   $ @CONFIGURE_INCANT@
5 #
6
7 package RT;
8
9 #############################  WARNING  #############################
10 #                                                                   #
11 #                     NEVER EDIT RT_Config.pm !                     #
12 #                                                                   #
13 #         Instead, copy any sections you want to change to          #
14 #         RT_SiteConfig.pm and edit them there.  Otherwise,         #
15 #         your changes will be lost when you upgrade RT.            #
16 #                                                                   #
17 #############################  WARNING  #############################
18
19 =head1 NAME
20
21 RT::Config
22
23 =head1 Base configuration
24
25 =over 4
26
27 =item C<$rtname>
28
29 C<$rtname> is the string that RT will look for in mail messages to
30 figure out what ticket a new piece of mail belongs to.
31
32 Your domain name is recommended, so as not to pollute the namespace.
33 Once you start using a given tag, you should probably never change it;
34 otherwise, mail for existing tickets won't get put in the right place.
35
36 =cut
37
38 Set($rtname, "example.com");
39
40 =item C<$Organization>
41
42 You should set this to your organization's DNS domain. For example,
43 I<fsck.com> or I<asylum.arkham.ma.us>. It is used by the linking
44 interface to guarantee that ticket URIs are unique and easy to
45 construct.  Changing it after you have created tickets in the system
46 will B<break> all existing ticket links!
47
48 =cut
49
50 Set($Organization, "example.com");
51
52 =item C<$CorrespondAddress>, C<$CommentAddress>
53
54 RT is designed such that any mail which already has a ticket-id
55 associated with it will get to the right place automatically.
56
57 C<$CorrespondAddress> and C<$CommentAddress> are the default addresses
58 that will be listed in From: and Reply-To: headers of correspondence
59 and comment mail tracked by RT, unless overridden by a queue-specific
60 address.  They should be set to email addresses which have been
61 configured as aliases for F<rt-mailgate>.
62
63 =cut
64
65 Set($CorrespondAddress, '');
66
67 Set($CommentAddress, '');
68
69 =item C<$WebDomain>
70
71 Domain name of the RT server, e.g. 'www.example.com'. It should not
72 contain anything except the server name.
73
74 =cut
75
76 Set($WebDomain, "localhost");
77
78 =item C<$WebPort>
79
80 If we're running as a superuser, run on port 80.  Otherwise, pick a
81 high port for this user.
82
83 443 is default port for https protocol.
84
85 =cut
86
87 Set($WebPort, 80);
88
89 =item C<$WebPath>
90
91 If you're putting the web UI somewhere other than at the root of your
92 server, you should set C<$WebPath> to the path you'll be serving RT
93 at.
94
95 C<$WebPath> requires a leading / but no trailing /, or it can be
96 blank.
97
98 In most cases, you should leave C<$WebPath> set to "" (an empty
99 value).
100
101 =cut
102
103 Set($WebPath, "");
104
105 =item C<$Timezone>
106
107 C<$Timezone> is the default timezone, used to convert times entered by
108 users into GMT, as they are stored in the database, and back again;
109 users can override this.  It should be set to a timezone recognized by
110 your server.
111
112 =cut
113
114 Set($Timezone, "US/Eastern");
115
116 =item C<@Plugins>
117
118 Once a plugin has been downloaded and installed, use C<Plugin()> to add
119 to the enabled C<@Plugins> list:
120
121     Plugin( "RT::Extension::SLA" );
122     Plugin( "RT::Authen::ExternalAuth" );
123
124 RT will also accept the distribution name (i.e. C<RT-Extension-SLA>)
125 instead of the package name (C<RT::Extension::SLA>).
126
127 =cut
128
129 Set(@Plugins, (qw(RTx::Calendar
130                   RT::Extension::MobileUI))); #RTx::Checklist ));
131
132 =item C<@StaticRoots>
133
134 Set C<@StaticRoots> to serve extra paths with a static handler.  The
135 contents of each hashref should be the the same arguments as
136 L<Plack::Middleware::Static> takes.  These paths will be checked before
137 any plugin or core static paths.
138
139 Example:
140
141     Set( @StaticRoots,
142         {
143             path => qr{^/static/},
144             root => '/local/path/to/static/parent',
145         },
146     );
147
148 =cut
149
150 Set( @StaticRoots, () );
151
152 =back
153
154
155
156
157 =head1 Database connection
158
159 =over 4
160
161 =item C<$DatabaseType>
162
163 Database driver being used; case matters.  Valid types are "mysql",
164 "Oracle", and "Pg".  "SQLite" is also available for non-production use.
165
166 =cut
167
168 Set($DatabaseType, "@DB_TYPE@");
169
170 =item C<$DatabaseHost>, C<$DatabaseRTHost>
171
172 The domain name of your database server.  If you're running MySQL and
173 on localhost, leave it blank for enhanced performance.
174
175 C<DatabaseRTHost> is the fully-qualified hostname of your RT server,
176 for use in granting ACL rights on MySQL.
177
178 =cut
179
180 Set($DatabaseHost,   "@DB_HOST@");
181 Set($DatabaseRTHost, "@DB_RT_HOST@");
182
183 =item C<$DatabasePort>
184
185 The port that your database server is running on.  Ignored unless it's
186 a positive integer. It's usually safe to leave this blank; RT will
187 choose the correct default.
188
189 =cut
190
191 Set($DatabasePort, "@DB_PORT@");
192
193 =item C<$DatabaseUser>
194
195 The name of the user to connect to the database as.
196
197 =cut
198
199 Set($DatabaseUser, "@DB_RT_USER@");
200
201 =item C<$DatabasePassword>
202
203 The password the C<$DatabaseUser> should use to access the database.
204
205 =cut
206
207 Set($DatabasePassword, q{@DB_RT_PASS@});
208
209 =item C<$DatabaseName>
210
211 The name of the RT database on your database server. For Oracle, the
212 SID and database objects are created in C<$DatabaseUser>'s schema.
213
214 =cut
215
216 Set($DatabaseName, q{@DB_DATABASE@});
217
218 =item C<%DatabaseExtraDSN>
219
220 Allows additional properties to be passed to the database connection
221 step.  Possible properties are specific to the database-type; see
222 https://metacpan.org/pod/DBI#connect
223
224 For PostgreSQL, for instance, the following enables SSL (but does no
225 certificate checking, providing data hiding but no MITM protection):
226
227    # See https://metacpan.org/pod/DBD::Pg#connect
228    # and http://www.postgresql.org/docs/8.4/static/libpq-ssl.html
229    Set( %DatabaseExtraDSN, sslmode => 'require' );
230
231 For MySQL, the following acts similarly if the server has enabled SSL.
232 Otherwise, it provides no protection; MySQL provides no way to I<force>
233 SSL connections:
234
235    # See https://metacpan.org/pod/DBD::mysql#connect
236    # and http://dev.mysql.com/doc/refman/5.1/en/ssl-options.html
237    Set( %DatabaseExtraDSN, mysql_ssl => 1 );
238
239 =cut
240
241 Set(%DatabaseExtraDSN, ());
242
243 =item C<$DatabaseAdmin>
244
245 The name of the database administrator to connect to the database as
246 during upgrades.
247
248 =cut
249
250 Set($DatabaseAdmin, "@DB_DBA@");
251
252 =back
253
254
255
256
257 =head1 Logging
258
259 The default is to log anything except debugging information to syslog.
260 Check the L<Log::Dispatch> POD for information about how to get things
261 by syslog, mail or anything else, get debugging info in the log, etc.
262
263 It might generally make sense to send error and higher by email to
264 some administrator.  If you do this, be careful that this email isn't
265 sent to this RT instance.  Mail loops will generate a critical log
266 message.
267
268 =over 4
269
270 =item C<$LogToSyslog>, C<$LogToSTDERR>
271
272 The minimum level error that will be logged to the specific device.
273 From lowest to highest priority, the levels are:
274
275     debug info notice warning error critical alert emergency
276
277 Many syslogds are configured to discard or file debug messages away, so
278 if you're attempting to debug RT you may need to reconfigure your
279 syslogd or use one of the other logging options.
280
281 Logging to your screen affects scripts run from the command line as well
282 as the STDERR sent to your webserver (so these logs will usually show up
283 in your web server's error logs).
284
285 =cut
286
287 Set($LogToSyslog, "info");
288 Set($LogToSTDERR, "info");
289
290 =item C<$LogToFile>, C<$LogDir>, C<$LogToFileNamed>
291
292 Logging to a standalone file is also possible. The file needs to both
293 exist and be writable by all direct users of the RT API. This generally
294 includes the web server and whoever rt-crontool runs as. Note that
295 rt-mailgate and the RT CLI go through the webserver, so their users do
296 not need to have write permissions to this file. If you expect to have
297 multiple users of the direct API, Best Practical recommends using syslog
298 instead of direct file logging.
299
300 You should set C<$LogToFile> to one of the levels documented above.
301
302 =cut
303
304 Set($LogToFile, undef);
305 Set($LogDir, q{@RT_LOG_PATH@});
306 Set($LogToFileNamed, "rt.log");    #log to rt.log
307
308 =item C<$LogStackTraces>
309
310 If set to a log level then logging will include stack traces for
311 messages with level equal to or greater than specified.
312
313 NOTICE: Stack traces include parameters supplied to functions or
314 methods. It is possible for stack trace logging to reveal sensitive
315 information such as passwords or ticket content in your logs.
316
317 =cut
318
319 Set($LogStackTraces, "");
320
321 =item C<@LogToSyslogConf>
322
323 Additional options to pass to L<Log::Dispatch::Syslog>; the most
324 interesting flags include C<facility>, C<logopt>, and possibly C<ident>.
325 See the L<Log::Dispatch::Syslog> documentation for more information.
326
327 =cut
328
329 Set(@LogToSyslogConf, ());
330
331 =back
332
333
334
335 =head1 Incoming mail gateway
336
337 =over 4
338
339 =item C<$EmailSubjectTagRegex>
340
341 This regexp controls what subject tags RT recognizes as its own.  If
342 you're not dealing with historical C<$rtname> values, or historical
343 queue-specific subject tags, you'll likely never have to change this
344 configuration.
345
346 Be B<very careful> with it. Note that it overrides C<$rtname> for
347 subject token matching.
348
349 The setting below would make RT behave exactly as it does without the
350 setting enabled.
351
352 =cut
353
354 # Set($EmailSubjectTagRegex, qr/\Q$rtname\E/i );
355
356 =item C<$OwnerEmail>
357
358 C<$OwnerEmail> is the address of a human who manages RT. RT will send
359 errors generated by the mail gateway to this address; it will also be
360 displayed as the contact person on the RT's login page.  Because RT
361 sends errors to this address, it should I<not> be an address that's
362 managed by your RT instance, to avoid mail loops.
363
364 =cut
365
366 Set($OwnerEmail, 'root');
367
368 =item C<$LoopsToRTOwner>
369
370 If C<$LoopsToRTOwner> is defined, RT will send mail that it believes
371 might be a loop to C<$OwnerEmail>.
372
373 =cut
374
375 Set($LoopsToRTOwner, 1);
376
377 =item C<$StoreLoops>
378
379 If C<$StoreLoops> is defined, RT will record messages that it believes
380 to be part of mail loops.  As it does this, it will try to be careful
381 not to send mail to the sender of these messages.
382
383 =cut
384
385 Set($StoreLoops, undef);
386
387 =item C<$MaxAttachmentSize>
388
389 C<$MaxAttachmentSize> sets the maximum size (in bytes) of attachments
390 stored in the database.  This setting is irrelevant unless one of
391 $TruncateLongAttachments or $DropLongAttachments (below) are set, B<OR>
392 the database is stored in Oracle.  On Oracle, attachments larger than
393 this can be fully stored, but will be truncated to this length when
394 read.
395
396 =cut
397
398 Set($MaxAttachmentSize, 10_000_000);  # 10M
399
400 =item C<$TruncateLongAttachments>
401
402 If this is set to a non-undef value, RT will truncate attachments
403 longer than C<$MaxAttachmentSize>.
404
405 =cut
406
407 Set($TruncateLongAttachments, undef);
408
409 =item C<$DropLongAttachments>
410
411 If this is set to a non-undef value, RT will silently drop attachments
412 longer than C<MaxAttachmentSize>.  C<$TruncateLongAttachments>, above,
413 takes priority over this.
414
415 =cut
416
417 Set($DropLongAttachments, undef);
418
419 =item C<$RTAddressRegexp>
420
421 C<$RTAddressRegexp> is used to make sure RT doesn't add itself as a
422 ticket CC if C<$ParseNewMessageForTicketCcs>, above, is enabled.  It
423 is important that you set this to a regular expression that matches
424 all addresses used by your RT.  This lets RT avoid sending mail to
425 itself.  It will also hide RT addresses from the list of "One-time Cc"
426 and Bcc lists on ticket reply.
427
428 If you have a number of addresses configured in your RT database
429 already, you can generate a naive first pass regexp by using:
430
431     perl etc/upgrade/generate-rtaddressregexp
432
433 If left blank, RT will compare each address to your configured
434 C<$CorrespondAddress> and C<$CommentAddress> before searching for a
435 Queue configured with a matching "Reply Address" or "Comment Address"
436 on the Queue Admin page.
437
438 =cut
439
440 Set($RTAddressRegexp, undef);
441
442 =item C<$IgnoreCcRegexp>
443
444 C<$IgnoreCcRegexp> is a regexp to exclude addresses from automatic addition 
445 to the Cc list.  Use this for addresses that are I<not> received by RT but
446 are sometimes added to Cc lists by mistake.  Unlike C<$RTAddressRegexp>, 
447 these addresses can still receive email from RT otherwise.
448
449 =cut
450
451 Set($IgnoreCcRegexp, undef);
452
453 =item C<$CanonicalizeEmailAddressMatch>, C<$CanonicalizeEmailAddressReplace>
454
455 RT provides functionality which allows the system to rewrite incoming
456 email addresses, using L<RT::User/CanonicalizeEmailAddress>.  The
457 default implementation replaces all occurrences of the regular
458 expression in C<CanonicalizeEmailAddressMatch> with
459 C<CanonicalizeEmailAddressReplace>, via C<s/$Match/$Replace/gi>.  The
460 most common use of this is to replace C<@something.example.com> with
461 C<@example.com>.  If more complex noramlization is required,
462 L<RT::User/CanonicalizeEmailAddress> can be overridden to provide it.
463
464 =cut
465
466 # Set($CanonicalizeEmailAddressMatch, '@subdomain\.example\.com$');
467 # Set($CanonicalizeEmailAddressReplace, '@example.com');
468
469 =item C<$ValidateUserEmailAddresses>
470
471 By default C<$ValidateUserEmailAddresses> is 1, and RT will refuse to create
472 users with an invalid email address (as specified in RFC 2822) or with
473 an email address made of multiple email addresses.
474
475 Set this to 0 to skip any email address validation.  Doing so may open up
476 vulnerabilities.
477
478 =cut
479
480 Set($ValidateUserEmailAddresses, 1);
481
482 =item C<$NonCustomerEmailRegexp>
483
484 Normally, when a ticket is linked to a customer, any requestors on that
485 ticket that didn't previously have customer memberships are linked to 
486 the customer also.  C<$NonCustomerEmailRegexp> is a regexp for email 
487 addresses that should I<not> automatically be linked to a customer in 
488 this way.
489
490 =cut
491
492 Set($NonCustomerEmailRegexp, undef);
493
494 =item C<@MailPlugins>
495
496 C<@MailPlugins> is a list of authentication plugins for
497 L<RT::Interface::Email> to use; see L<rt-mailgate>
498
499 =cut
500
501 =item C<$UnsafeEmailCommands>
502
503 C<$UnsafeEmailCommands>, if set to 1, enables 'take' and 'resolve'
504 as possible actions via the mail gateway.  As its name implies, this
505 is very unsafe, as it allows email with a forged sender to possibly
506 resolve arbitrary tickets!
507
508 =cut
509
510 =item C<$ExtractSubjectTagMatch>, C<$ExtractSubjectTagNoMatch>
511
512 The default "extract remote tracking tags" scrip settings; these
513 detect when your RT is talking to another RT, and adjust the subject
514 accordingly.
515
516 =cut
517
518 Set($ExtractSubjectTagMatch, qr/\[[^\]]+? #\d+\]/);
519 Set($ExtractSubjectTagNoMatch, ( ${RT::EmailSubjectTagRegex}
520        ? qr/\[(?:${RT::EmailSubjectTagRegex}) #\d+\]/
521        : qr/\[\Q$RT::rtname\E #\d+\]/));
522
523 =item C<$CheckMoreMSMailHeaders>
524
525 Some email clients create a plain text version of HTML-formatted
526 email to help other clients that read only plain text.
527 Unfortunately, the plain text parts sometimes end up with
528 doubled newlines and these can then end up in RT. This
529 is most often seen in MS Outlook.
530
531 Enable this option to have RT check for additional mail headers
532 and attempt to identify email from MS Outlook. When detected,
533 RT will then clean up double newlines. Note that it may
534 clean up intentional double newlines as well.
535
536 =cut
537
538 Set( $CheckMoreMSMailHeaders, 0);
539
540 =back
541
542
543
544 =head1 Outgoing mail
545
546 =over 4
547
548 =item C<$MailCommand>
549
550 C<$MailCommand> defines which method RT will use to try to send mail.
551 We know that 'sendmailpipe' works fairly well.  If 'sendmailpipe'
552 doesn't work well for you, try 'sendmail'.  'qmail' is also a supported
553 value.
554
555 For testing purposes, or to simply disable sending mail out into the
556 world, you can set C<$MailCommand> to 'mbox' which logs all mail, in
557 mbox format, to files in F</opt/rt4/var/> based in the process start
558 time.  The 'testfile' option is similar, but the files that it creates
559 (under /tmp) are temporary, and removed upon process completion; the
560 format is also not mbox-compatable.
561
562 =cut
563
564 #Set($MailCommand, "sendmailpipe");
565 Set($MailCommand, "sendmail");
566
567 =item C<$SetOutgoingMailFrom>
568
569 C<$SetOutgoingMailFrom> tells RT to set the sender envelope to the
570 Correspond mail address of the ticket's queue.
571
572 Warning: If you use this setting, bounced mails will appear to be
573 incoming mail to the system, thus creating new tickets.
574
575 If the value contains an C<@>, it is assumed to be an email address and used as
576 a global envelope sender.  Expected usage in this case is to simply set the
577 same envelope sender on all mail from RT, without defining
578 C<$OverrideOutgoingMailFrom>.  If you do define C<$OverrideOutgoingMailFrom>,
579 anything specified there overrides the global value (including Default).
580
581 This option only works if C<$MailCommand> is set to 'sendmailpipe'.
582
583 =cut
584
585 Set($SetOutgoingMailFrom, 0);
586
587 =item C<$OverrideOutgoingMailFrom>
588
589 C<$OverrideOutgoingMailFrom> is used for overwriting the Correspond
590 address of the queue as it is handed to sendmail -f. This helps force
591 the From_ header away from www-data or other email addresses that show
592 up in the "Sent by" line in Outlook.
593
594 The option is a hash reference of queue id/name to email address. If
595 there is no ticket involved, then the value of the C<Default> key will
596 be used.
597
598 This option only works if C<$SetOutgoingMailFrom> is enabled and
599 C<$MailCommand> is set to 'sendmailpipe'.
600
601 =cut
602
603 Set($OverrideOutgoingMailFrom, {
604 #    'Default' => 'admin@rt.example.com',
605 #    'General' => 'general@rt.example.com',
606 });
607
608 =item C<$DefaultMailPrecedence>
609
610 C<$DefaultMailPrecedence> is used to control the default Precedence
611 level of outgoing mail where none is specified.  By default it is
612 C<bulk>, but if you only send mail to your staff, you may wish to
613 change it.
614
615 Note that you can set the precedence of individual templates by
616 including an explicit Precedence header.
617
618 If you set this value to C<undef> then we do not set a default
619 Precedence header to outgoing mail. However, if there already is a
620 Precedence header, it will be preserved.
621
622 =cut
623
624 Set($DefaultMailPrecedence, "bulk");
625
626 =item C<$DefaultErrorMailPrecedence>
627
628 C<$DefaultErrorMailPrecedence> is used to control the default
629 Precedence level of outgoing mail that indicates some kind of error
630 condition. By default it is C<bulk>, but if you only send mail to your
631 staff, you may wish to change it.
632
633 If you set this value to C<undef> then we do not add a Precedence
634 header to error mail.
635
636 =cut
637
638 Set($DefaultErrorMailPrecedence, "bulk");
639
640 =item C<$UseOriginatorHeader>
641
642 C<$UseOriginatorHeader> is used to control the insertion of an
643 RT-Originator Header in every outgoing mail, containing the mail
644 address of the transaction creator.
645
646 =cut
647
648 Set($UseOriginatorHeader, 1);
649
650 =item C<$UseFriendlyFromLine>
651
652 By default, RT sets the outgoing mail's "From:" header to "SenderName
653 via RT".  Setting C<$UseFriendlyFromLine> to 0 disables it.
654
655 =cut
656
657 Set($UseFriendlyFromLine, 1);
658
659 =item C<$FriendlyFromLineFormat>
660
661 C<sprintf()> format of the friendly 'From:' header; its arguments are
662 SenderName and SenderEmailAddress.
663
664 =cut
665
666 Set($FriendlyFromLineFormat, "\"%s via RT\" <%s>");
667
668 =item C<$UseFriendlyToLine>
669
670 RT can optionally set a "Friendly" 'To:' header when sending messages
671 to Ccs or AdminCcs (rather than having a blank 'To:' header.
672
673 This feature DOES NOT WORK WITH SENDMAIL[tm] BRAND SENDMAIL.  If you
674 are using sendmail, rather than postfix, qmail, exim or some other
675 MTA, you _must_ disable this option.
676
677 =cut
678
679 Set($UseFriendlyToLine, 0);
680
681 =item C<$FriendlyToLineFormat>
682
683 C<sprintf()> format of the friendly 'To:' header; its arguments are
684 WatcherType and TicketId.
685
686 =cut
687
688 Set($FriendlyToLineFormat, "\"%s of ". RT->Config->Get('rtname') ." Ticket #%s\":;");
689
690 =item C<$NotifyActor>
691
692 By default, RT doesn't notify the person who performs an update, as
693 they already know what they've done. If you'd like to change this
694 behavior, Set C<$NotifyActor> to 1
695
696 =cut
697
698 Set($NotifyActor, 0);
699
700 =item C<$RecordOutgoingEmail>
701
702 By default, RT records each message it sends out to its own internal
703 database.  To change this behavior, set C<$RecordOutgoingEmail> to 0
704
705 If this is disabled, users' digest mail delivery preferences
706 (i.e. EmailFrequency) will also be ignored.
707
708 =cut
709
710 Set($RecordOutgoingEmail, 1);
711
712 =item C<$VERPPrefix>, C<$VERPDomain>
713
714 Setting these options enables VERP support
715 L<http://cr.yp.to/proto/verp.txt>.
716
717 Uncomment the following two directives to generate envelope senders
718 of the form C<${VERPPrefix}${originaladdress}@${VERPDomain}>
719 (i.e. rt-jesse=fsck.com@rt.example.com ).
720
721 This currently only works with sendmail and sendmailpipe.
722
723 =cut
724
725 # Set($VERPPrefix, "rt-");
726 # Set($VERPDomain, $RT::Organization);
727
728
729 =item C<$ForwardFromUser>
730
731 By default, RT forwards a message using queue's address and adds RT's
732 tag into subject of the outgoing message, so recipients' replies go
733 into RT as correspondents.
734
735 To change this behavior, set C<$ForwardFromUser> to 1 and RT
736 will use the address of the current user and remove RT's subject tag.
737
738 =cut
739
740 Set($ForwardFromUser, 0);
741
742 =item C<$HTMLFormatter>
743
744 RT's default pure-perl formatter may fail to successfully convert even
745 on some relatively simple HTML; this will result in blank C<text/plain>
746 parts, which is particuarly unfortunate if HTML templates are not in
747 use.
748
749 If the optional dependency L<HTML::FormatExternal> is installed, RT will
750 use external programs to render HTML to plain text.  The default is to
751 try, in order, C<w3m>, C<elinks>, C<html2text>, C<links>, C<lynx>, and
752 then fall back to the C<core> pure-perl formatter if none are installed.
753
754 Set C<$HTMLFormatter> to one of the above programs (or the full path to
755 such) to use a different program than the above would choose by default.
756 Setting this requires that L<HTML::FormatExternal> be installed.
757
758 If the chosen formatter is not in the webserver's $PATH, you may set
759 this option the full path to one of the aforementioned executables.
760
761 =cut
762
763 Set($HTMLFormatter, undef);
764
765 =back
766
767 =head2 Email dashboards
768
769 =over 4
770
771 =item C<$DashboardAddress>
772
773 The email address from which RT will send dashboards. If none is set,
774 then C<$OwnerEmail> will be used.
775
776 =cut
777
778 Set($DashboardAddress, '');
779
780 =item C<$DashboardSubject>
781
782 Lets you set the subject of dashboards. Arguments are the frequency (Daily,
783 Weekly, Monthly) of the dashboard and the dashboard's name.
784
785 =cut
786
787 Set($DashboardSubject, "%s Dashboard: %s");
788
789 =item C<@EmailDashboardRemove>
790
791 A list of regular expressions that will be used to remove content from
792 mailed dashboards.
793
794 =cut
795
796 Set(@EmailDashboardRemove, ());
797
798 =back
799
800
801
802 =head2 Sendmail configuration
803
804 These options only take effect if C<$MailCommand> is 'sendmail' or
805 'sendmailpipe'
806
807 =over 4
808
809 =item C<$SendmailArguments>
810
811 C<$SendmailArguments> defines what flags to pass to C<$SendmailPath>
812 These options are good for most sendmail wrappers and work-a-likes.
813
814 These arguments are good for sendmail brand sendmail 8 and newer:
815 C<Set($SendmailArguments,"-oi -ODeliveryMode=b -OErrorMode=m");>
816
817 =cut
818
819 Set($SendmailArguments, "-oi");
820
821
822 =item C<$SendmailBounceArguments>
823
824 C<$SendmailBounceArguments> defines what flags to pass to C<$Sendmail>
825 assuming RT needs to send an error (i.e. bounce).
826
827 =cut
828
829 Set($SendmailBounceArguments, '-f "<>"');
830
831 =item C<$SendmailPath>
832
833 If you selected 'sendmailpipe' above, you MUST specify the path to
834 your sendmail binary in C<$SendmailPath>.
835
836 =cut
837
838 Set($SendmailPath, "/usr/sbin/sendmail");
839
840
841 =back
842
843 =head2 Other mailers
844
845 =over 4
846
847 =item C<@MailParams>
848
849 C<@MailParams> defines a list of options passed to $MailCommand if it
850 is not 'sendmailpipe' or 'sendmail';
851
852 =cut
853
854 Set(@MailParams, ());
855
856 =back
857
858
859 =head1 Web interface
860
861 =over 4
862
863 =item C<$WebDefaultStylesheet>
864
865 This determines the default stylesheet the RT web interface will use.
866 RT ships with several themes by default:
867
868   rudder          The default theme for RT 4.2
869   aileron         The default layout for RT 4.0
870   web2            The default layout for RT 3.8
871   ballard         Theme which doesn't rely on JavaScript for menuing
872
873 This bundled distibution of RT also includes:
874   freeside4       Integration with Freeside (enabled by default)
875   freeside3       Previous Freeside theme
876
877 This value actually specifies a directory in F<share/static/css/>
878 from which RT will try to load the file main.css (which should @import
879 any other files the stylesheet needs).  This allows you to easily and
880 cleanly create your own stylesheets to apply to RT.  This option can
881 be overridden by users in their preferences.
882
883 =cut
884
885 Set($WebDefaultStylesheet, "freeside4");
886
887 =item C<$DefaultQueue>
888
889 Use this to select the default queue name that will be used for
890 creating new tickets. You may use either the queue's name or its
891 ID. This only affects the queue selection boxes on the web interface.
892
893 =cut
894
895 # Set($DefaultQueue, "General");
896
897 =item C<$RememberDefaultQueue>
898
899 When a queue is selected in the new ticket dropdown, make it the new
900 default for the new ticket dropdown.
901
902 =cut
903
904 # Set($RememberDefaultQueue, 1);
905
906 =item C<$EnableReminders>
907
908 Hide all links and portlets related to Reminders by setting this to 0
909
910 =cut
911
912 Set($EnableReminders, 1);
913
914 =item C<@CustomFieldValuesSources>
915
916 Set C<@CustomFieldValuesSources> to a list of class names which extend
917 L<RT::CustomFieldValues::External>.  This can be used to pull lists of
918 custom field values from external sources at runtime.
919
920 =cut
921
922 Set(@CustomFieldValuesSources, ('RT::CustomFieldValues::Queues'));
923
924 =item C<%CustomFieldGroupings>
925
926 This option affects the display of ticket and user custom fields in the
927 web interface. It does not address the sorting of custom fields within
928 the groupings; which is controlled by the Ticket Custom Fields tab in
929 Queue Configuration in the Admin UI.
930
931 A nested datastructure defines how to group together custom fields
932 under a mix of built-in and arbitrary headings ("groupings").
933
934 Set C<%CustomFieldGroupings> to a nested structure similar to the following:
935
936     Set(%CustomFieldGroupings,
937         'RT::Ticket' => [
938             'Grouping Name'     => ['CF Name', 'Another CF'],
939             'Another Grouping'  => ['Some CF'],
940             'Dates'             => ['Shipped date'],
941         ],
942         'RT::User' => [
943             'Phones' => ['Fax number'],
944         ],
945     );
946
947 The first level keys are record types for which CFs may be used, and the
948 values are either hashrefs or arrayrefs -- if arrayrefs, then the
949 ordering is preserved during display, otherwise groupings are displayed
950 alphabetically.  The second level keys are the grouping names and the
951 values are array refs containing a list of CF names.
952
953 There are several special built-in groupings which RT displays in
954 specific places (usually the collapsible box of the same title).  The
955 ordering of these standard groupings cannot be modified.  You may also
956 only append Custom Fields to the list in these boxes, not reorder or
957 remove core fields.
958
959 For C<RT::Ticket>, these groupings are: C<Basics>, C<Dates>, C<Links>, C<People>
960
961 For C<RT::User>: C<Identity>, C<Access control>, C<Location>, C<Phones>
962
963 Extensions may also add their own built-in groupings, refer to the individual
964 extension documentation for those.
965
966 =item C<$CanonicalizeRedirectURLs>
967
968 Set C<$CanonicalizeRedirectURLs> to 1 to use C<$WebURL> when
969 redirecting rather than the one we get from C<%ENV>.
970
971 Apache's UseCanonicalName directive changes the hostname that RT
972 finds in C<%ENV>.  You can read more about what turning it On or Off
973 means in the documentation for your version of Apache.
974
975 If you use RT behind a reverse proxy, you almost certainly want to
976 enable this option.
977
978 =cut
979
980 Set($CanonicalizeRedirectURLs, 0);
981
982 =item C<$CanonicalizeURLsInFeeds>
983
984 Set C<$CanonicalizeURLsInFeeds> to 1 to use C<$WebURL> in feeds
985 rather than the one we get from request.
986
987 If you use RT behind a reverse proxy, you almost certainly want to
988 enable this option.
989
990 =cut
991
992 Set($CanonicalizeURLsInFeeds, 0);
993
994 =item C<@JSFiles>
995
996 A list of additional JavaScript files to be included in head.
997
998 =cut
999
1000 Set(@JSFiles, qw//);
1001
1002 =item C<$JSMinPath>
1003
1004 Path to the jsmin binary; if specified, it will be used to minify
1005 C<JSFiles>.  The default, and the fallback if the binary cannot be
1006 found, is to simply concatenate the files.
1007
1008 jsmin can be installed by running 'make jsmin' from the RT install
1009 directory, or from http://www.crockford.com/javascript/jsmin.html
1010
1011 =cut
1012
1013 # Set($JSMinPath, "/path/to/jsmin");
1014
1015 =item C<@CSSFiles>
1016
1017 A list of additional CSS files to be included in head.
1018
1019 If you're a plugin author, refer to RT->AddStyleSheets.
1020
1021 =cut
1022
1023 Set(@CSSFiles, qw//);
1024
1025 =item C<$UsernameFormat>
1026
1027 This determines how user info is displayed. 'concise' will show the
1028 first of RealName, Name or EmailAddress that has a value. 'verbose' will
1029 show EmailAddress, and the first of RealName or Name which is defined.
1030 The default, 'role', uses 'verbose' for unprivileged users, and the Name
1031 followed by the RealName for privileged users.
1032
1033 =cut
1034
1035 Set($UsernameFormat, "concise");
1036
1037 =item C<$UserSearchResultFormat>
1038
1039 This controls the display of lists of users returned from the User
1040 Summary Search. The display of users in the Admin interface is
1041 controlled by C<%AdminSearchResultFormat>.
1042
1043 =cut
1044
1045 Set($UserSearchResultFormat,
1046          q{ '<a href="__WebPath__/User/Summary.html?id=__id__">__id__</a>/TITLE:#'}
1047         .q{,'<a href="__WebPath__/User/Summary.html?id=__id__">__Name__</a>/TITLE:Name'}
1048         .q{,__RealName__, __EmailAddress__}
1049 );
1050
1051 =item C<@UserSummaryPortlets>
1052
1053 A list of portlets to be displayed on the User Summary page.
1054 By default, we show all of the available portlets.
1055 Extensions may provide their own portlets for this page.
1056
1057 =cut
1058
1059 Set(@UserSummaryPortlets, (qw/ExtraInfo CreateTicket ActiveTickets InactiveTickets/));
1060
1061 =item C<$UserSummaryExtraInfo>
1062
1063 This controls what information is displayed on the User Summary
1064 portal. By default the user's Real Name, Email Address and Username
1065 are displayed. You can remove these or add more as needed. This
1066 expects a Format string of user attributes. Please note that not all
1067 the attributes are supported in this display because we're not
1068 building a table.
1069
1070 =cut
1071
1072 Set($UserSummaryExtraInfo, "RealName, EmailAddress, Name");
1073
1074 =item C<$UserSummaryTicketListFormat>
1075
1076 Control the appearance of the Active and Inactive ticket lists in the
1077 User Summary.
1078
1079 =cut
1080
1081 Set($UserSummaryTicketListFormat, q{
1082        '<B><A HREF="__WebPath__/Ticket/Display.html?id=__id__">__id__</a></B>/TITLE:#',
1083        '<B><A HREF="__WebPath__/Ticket/Display.html?id=__id__">__Subject__</a></B>/TITLE:Subject',
1084        Status,
1085        QueueName,
1086        Owner,
1087        Priority,
1088        '__NEWLINE__',
1089        '',
1090        '<small>__Requestors__</small>',
1091        '<small>__CreatedRelative__</small>',
1092        '<small>__ToldRelative__</small>',
1093        '<small>__LastUpdatedRelative__</small>',
1094        '<small>__TimeLeft__</small>'
1095 });
1096
1097 =item C<$WebBaseURL>, C<$WebURL>
1098
1099 Usually you don't want to set these options. The only obvious reason
1100 is if RT is accessible via https protocol on a non standard port, e.g.
1101 'https://rt.example.com:9999'. In all other cases these options are
1102 computed using C<$WebDomain>, C<$WebPort> and C<$WebPath>.
1103
1104 C<$WebBaseURL> is the scheme, server and port
1105 (e.g. 'http://rt.example.com') for constructing URLs to the web
1106 UI. C<$WebBaseURL> doesn't need a trailing /.
1107
1108 C<$WebURL> is the C<$WebBaseURL>, C<$WebPath> and trailing /, for
1109 example: 'http://www.example.com/rt/'.
1110
1111 =cut
1112
1113 my $port = RT->Config->Get('WebPort');
1114 Set($WebBaseURL,
1115     ($port == 443? 'https': 'http') .'://'
1116     . RT->Config->Get('WebDomain')
1117     . ($port != 80 && $port != 443? ":$port" : '')
1118 );
1119
1120 Set($WebURL, RT->Config->Get('WebBaseURL') . RT->Config->Get('WebPath') . "/");
1121
1122 =item C<$WebImagesURL>
1123
1124 C<$WebImagesURL> points to the base URL where RT can find its images.
1125 Define the directory name to be used for images in RT web documents.
1126
1127 =cut
1128
1129 Set($WebImagesURL, RT->Config->Get('WebPath') . "/static/images/");
1130
1131 =item C<$LogoURL>
1132
1133 C<$LogoURL> points to the URL of the RT logo displayed in the web UI.
1134 This can also be configured via the web UI.
1135
1136 =cut
1137
1138 Set($LogoURL, RT->Config->Get('WebImagesURL') . "bpslogo.png");
1139
1140 =item C<$LogoLinkURL>
1141
1142 C<$LogoLinkURL> is the URL that the RT logo hyperlinks to.
1143
1144 =cut
1145
1146 Set($LogoLinkURL, "http://bestpractical.com");
1147
1148 =item C<$LogoAltText>
1149
1150 C<$LogoAltText> is a string of text for the alt-text of the logo. It
1151 will be passed through C<loc> for localization.
1152
1153 =cut
1154
1155 Set($LogoAltText, "Best Practical Solutions, LLC corporate logo");
1156
1157 =item C<$WebNoAuthRegex>
1158
1159 What portion of RT's URL space should not require authentication.  The
1160 default is almost certainly correct, and should only be changed if you
1161 are extending RT.
1162
1163 =cut
1164
1165 Set($WebNoAuthRegex, qr{^ /rt (?:/+NoAuth/ | /+REST/\d+\.\d+/NoAuth/) }x );
1166
1167 =item C<$SelfServiceRegex>
1168
1169 What portion of RT's URLspace should be accessible to Unprivileged
1170 users This does not override the redirect from F</Ticket/Display.html>
1171 to F</SelfService/Display.html> when Unprivileged users attempt to
1172 access ticked displays.
1173
1174 =cut
1175
1176 Set($SelfServiceRegex, qr!^(?:/+SelfService/)!x );
1177
1178 =item C<$WebFlushDbCacheEveryRequest>
1179
1180 By default, RT clears its database cache after every page view.  This
1181 ensures that you've always got the most current information when
1182 working in a multi-process (mod_perl or FastCGI) Environment.  Setting
1183 C<$WebFlushDbCacheEveryRequest> to 0 will turn this off, which will
1184 speed RT up a bit, at the expense of a tiny bit of data accuracy.
1185
1186 =cut
1187
1188 Set($WebFlushDbCacheEveryRequest, 1);
1189
1190 =item C<%ChartFont>
1191
1192 The L<GD> module (which RT uses for graphs) ships with a built-in font
1193 that doesn't have full Unicode support. You can use a given TrueType
1194 font for a specific language by setting %ChartFont to (language =E<gt>
1195 the absolute path of a font) pairs. Your GD library must have support
1196 for TrueType fonts to use this option. If there is no entry for a
1197 language in the hash then font with 'others' key is used.
1198
1199 RT comes with two TrueType fonts covering most available languages.
1200
1201 =cut
1202
1203 Set(
1204     %ChartFont,
1205     'zh-cn'  => "$RT::FontPath/DroidSansFallback.ttf",
1206     'zh-tw'  => "$RT::FontPath/DroidSansFallback.ttf",
1207     'ja'     => "$RT::FontPath/DroidSansFallback.ttf",
1208     'others' => "$RT::FontPath/DroidSans.ttf",
1209 );
1210
1211 =item C<$ChartsTimezonesInDB>
1212
1213 RT stores dates using the UTC timezone in the DB, so charts grouped by
1214 dates and time are not representative. Set C<$ChartsTimezonesInDB> to 1
1215 to enable timezone conversions using your DB's capabilities. You may
1216 need to do some work on the DB side to use this feature, read more in
1217 F<docs/customizing/timezones_in_charts.pod>.
1218
1219 At this time, this feature only applies to MySQL and PostgreSQL.
1220
1221 =cut
1222
1223 Set($ChartsTimezonesInDB, 0);
1224
1225 =item C<@ChartColors>
1226
1227 An array of 6-digit hexadecimal RGB color values used for chart series.  By
1228 default there are 12 distinct colors.
1229
1230 =cut
1231
1232 Set(@ChartColors, qw(
1233     66cc66 ff6666 ffcc66 663399
1234     3333cc 339933 993333 996633
1235     33cc33 cc3333 cc9933 6633cc
1236 ));
1237
1238 =back
1239
1240
1241
1242 =head2 Home page
1243
1244 =over 4
1245
1246 =item C<$DefaultSummaryRows>
1247
1248 C<$DefaultSummaryRows> is default number of rows displayed in for
1249 search results on the front page.
1250
1251 =cut
1252
1253 Set($DefaultSummaryRows, 10);
1254
1255 =item C<$HomePageRefreshInterval>
1256
1257 C<$HomePageRefreshInterval> is default number of seconds to refresh
1258 the RT home page. Choose from [0, 120, 300, 600, 1200, 3600, 7200].
1259
1260 =cut
1261
1262 Set($HomePageRefreshInterval, 0);
1263
1264 =item C<$HomepageComponents>
1265
1266 C<$HomepageComponents> is an arrayref of allowed components on a
1267 user's customized homepage ("RT at a glance").
1268
1269 =cut
1270
1271 Set(
1272     $HomepageComponents,
1273     [
1274         qw(QuickCreate Quicksearch MyCalendar MyAdminQueues MySupportQueues MyReminders RefreshHomepage Dashboards SavedSearches FindUser ) # loc_qw
1275     ]
1276 );
1277
1278 =back
1279
1280
1281
1282
1283 =head2 Ticket search
1284
1285 =over 4
1286
1287 =item C<$UseSQLForACLChecks>
1288
1289 Historically, ACLs were checked on display, which could lead to empty
1290 search pages and wrong ticket counts.  Set C<$UseSQLForACLChecks> to 0
1291 to go back to this method; this will reduce the complexity of the
1292 generated SQL statements, at the cost of the aforementioned bugs.
1293
1294 =cut
1295
1296 Set($UseSQLForACLChecks, 1);
1297
1298 =item C<$TicketsItemMapSize>
1299
1300 On the display page of a ticket from search results, RT provides links
1301 to the first, next, previous and last ticket from the results.  In
1302 order to build these links, RT needs to fetch the full result set from
1303 the database, which can be resource-intensive.
1304
1305 Set C<$TicketsItemMapSize> to number of tickets you want RT to examine
1306 to build these links. If the full result set is larger than this
1307 number, RT will omit the "last" link in the menu.  Set this to zero to
1308 always examine all results.
1309
1310 =cut
1311
1312 Set($TicketsItemMapSize, 1000);
1313
1314 =item C<$SearchResultsRefreshInterval>
1315
1316 C<$SearchResultsRefreshInterval> is default number of seconds to
1317 refresh search results in RT. Choose from [0, 120, 300, 600, 1200,
1318 3600, 7200].
1319
1320 =cut
1321
1322 Set($SearchResultsRefreshInterval, 0);
1323
1324 =item C<$DefaultSearchResultFormat>
1325
1326 C<$DefaultSearchResultFormat> is the default format for RT search
1327 results
1328
1329 =cut
1330
1331 Set ($DefaultSearchResultFormat, qq{
1332    '<B><A HREF="__WebPath__/Ticket/Display.html?id=__id__">__id__</a></B>/TITLE:#',
1333    '<B><A HREF="__WebPath__/Ticket/Display.html?id=__id__">__Subject__</a></B>/TITLE:Subject',
1334    Customer,
1335    Status,
1336    QueueName,
1337    Owner,
1338    Priority,
1339    '__NEWLINE__',
1340    '__NBSP__',
1341    '<small>__Requestors__</small>',
1342    '<small>__CustomerTags__</small>',
1343    '<small>__CreatedRelative__</small>',
1344    '<small>__ToldRelative__</small>',
1345    '<small>__LastUpdatedRelative__</small>',
1346    '<small>__TimeLeft__</small>'});
1347
1348 =item C<$DefaultSearchResultOrderBy>
1349
1350 What Tickets column should we order by for RT Ticket search results.
1351
1352 =cut
1353
1354 Set($DefaultSearchResultOrderBy, 'id');
1355
1356 =item C<$DefaultSearchResultOrder>
1357
1358 When ordering RT Ticket search results by C<$DefaultSearchResultOrderBy>,
1359 should the sort be ascending (ASC) or descending (DESC).
1360
1361 =cut
1362
1363 Set($DefaultSearchResultOrder, 'ASC');
1364
1365 =item C<$DefaultSelfServiceSearchResultFormat>
1366
1367 C<$DefaultSelfServiceSearchResultFormat> is the default format of
1368 searches displayed in the SelfService interface.
1369
1370 =cut
1371
1372 Set($DefaultSelfServiceSearchResultFormat, qq{
1373    '<B><A HREF="__WebPath__/SelfService/Display.html?id=__id__">__id__</a></B>/TITLE:#',
1374    '<B><A HREF="__WebPath__/SelfService/Display.html?id=__id__">__Subject__</a></B>/TITLE:Subject',
1375    Status,
1376    Requestors,
1377    Owner});
1378
1379 =item C<%FullTextSearch>
1380
1381 Full text search (FTS) without database indexing is a very slow
1382 operation, and is thus disabled by default.
1383
1384 Before setting C<Indexed> to 1, read F<docs/full_text_indexing.pod> for
1385 the full details of FTS on your particular database.
1386
1387 It is possible to enable FTS without database indexing support, simply
1388 by setting the C<Enable> key to 1, while leaving C<Indexed> set to 0.
1389 This is not generally suggested, as unindexed full-text searching can
1390 cause severe performance problems.
1391
1392 =cut
1393
1394 Set(%FullTextSearch,
1395     Enable  => 0,
1396     Indexed => 0,
1397 );
1398
1399 =item C<$MaxFulltextAttachmentSize>
1400
1401 On some systems, very large attachments can cause memory and other
1402 performance issues for the indexer making it unable to complete
1403 indexing. Adding resources like memory and CPU will solve this
1404 issue, but in cases where that isn't possible, this option
1405 sets a maximum size in bytes on attachments to index. Attachments
1406 larger than this limit are skipped and will not be available to
1407 full text searches.
1408
1409 =cut
1410
1411 # Default 0 means no limit
1412 Set($MaxFulltextAttachmentSize, 0);
1413
1414 =item C<$DontSearchFileAttachments>
1415
1416 If C<$DontSearchFileAttachments> is set to 1, then uploaded files
1417 (attachments with file names) are not searched during content
1418 search.
1419
1420 Note that if you use indexed FTS then named attachments are still
1421 indexed by default regardless of this option.
1422
1423 =cut
1424
1425 Set($DontSearchFileAttachments, undef);
1426
1427 =item C<$OnlySearchActiveTicketsInSimpleSearch>
1428
1429 When query in simple search doesn't have status info, use this to only
1430 search active ones.
1431
1432 =cut
1433
1434 Set($OnlySearchActiveTicketsInSimpleSearch, 1);
1435
1436 =item C<$SearchResultsAutoRedirect>
1437
1438 When only one ticket is found in search, use this to redirect to the
1439 ticket display page automatically.
1440
1441 =cut
1442
1443 Set($SearchResultsAutoRedirect, 0);
1444
1445 =back
1446
1447
1448
1449 =head2 Ticket display
1450
1451 =over 4
1452
1453 =item C<$ShowMoreAboutPrivilegedUsers>
1454
1455 This determines if the 'More about requestor' box on
1456 Ticket/Display.html is shown for Privileged Users.
1457
1458 =cut
1459
1460 Set($ShowMoreAboutPrivilegedUsers, 0);
1461
1462 =item C<$MoreAboutRequestorTicketList>
1463
1464 This can be set to Active, Inactive, All or None.  It controls what
1465 ticket list will be displayed in the 'More about requestor' box on
1466 Ticket/Display.html.  This option can be controlled by users also.
1467
1468 =cut
1469
1470 Set($MoreAboutRequestorTicketList, "Active");
1471
1472 =item C<$MoreAboutRequestorTicketListFormat>
1473
1474 Control the appearance of the ticket lists in the 'More About Requestors' box.
1475
1476 =cut
1477
1478 Set($MoreAboutRequestorTicketListFormat, q{
1479        '<a href="__WebPath__/Ticket/Display.html?id=__id__">__id__</a>',
1480        '__Owner__',
1481        '<a href="__WebPath__/Ticket/Display.html?id=__id__">__Subject__</a>',
1482        '__Status__',
1483 });
1484
1485
1486 =item C<$MoreAboutRequestorExtraInfo>
1487
1488 By default, the 'More about requestor' box on Ticket/Display.html
1489 shows the Requestor's name and ticket list.  If you would like to see
1490 extra information about the user, this expects a Format string of user
1491 attributes.  Please note that not all the attributes are supported in
1492 this display because we're not building a table.
1493
1494 Example:
1495 C<Set($MoreAboutRequestorExtraInfo,"Organization, Address1")>
1496
1497 =cut
1498
1499 Set($MoreAboutRequestorExtraInfo, "");
1500
1501 =item C<$MoreAboutRequestorGroupsLimit>
1502
1503 By default, the 'More about requestor' box on Ticket/Display.html
1504 shows all the groups of the Requestor.  Use this to limit the number
1505 of groups; a value of undef removes the group display entirely.
1506
1507 =cut
1508
1509 Set($MoreAboutRequestorGroupsLimit, 0);
1510
1511 =item C<$UseSideBySideLayout>
1512
1513 Should the ticket create and update forms use a more space efficient
1514 two column layout.  This layout may not work in narrow browsers if you
1515 set a MessageBoxWidth (below).
1516
1517 =cut
1518
1519 Set($UseSideBySideLayout, 1);
1520
1521 =item C<$EditCustomFieldsSingleColumn>
1522
1523 When displaying a list of Ticket Custom Fields for editing, RT
1524 defaults to a 2 column list.  If you set this to 1, it will instead
1525 display the Custom Fields in a single column.
1526
1527 =cut
1528
1529 Set($EditCustomFieldsSingleColumn, 0);
1530
1531 =item C<$ShowUnreadMessageNotifications>
1532
1533 If set to 1, RT will prompt users when there are new,
1534 unread messages on tickets they are viewing.
1535
1536 =cut
1537
1538 Set($ShowUnreadMessageNotifications, 0);
1539
1540 =item C<$AutocompleteOwners>
1541
1542 If set to 1, the owner drop-downs for ticket update/modify and the query
1543 builder are replaced by text fields that autocomplete.  This can
1544 alleviate the sometimes huge owner list for installations where many
1545 users have the OwnTicket right.
1546
1547 Autocompleter is automatically turned on if list contains more than
1548 50 users, but penalty of executing potentially slow query is still paid.
1549
1550 Drop down doesn't show unprivileged users. If your setup allows unprivileged
1551 to own ticket then you have to enable autocompleting.
1552
1553 =cut
1554
1555 Set($AutocompleteOwners, 0);
1556
1557 =item C<$AutocompleteOwnersForSearch>
1558
1559 If set to 1, the owner drop-downs for the query builder are always
1560 replaced by text field that autocomplete and C<$AutocompleteOwners>
1561 is ignored. Helpful when owners list is huge in the query builder.
1562
1563 =cut
1564
1565 Set($AutocompleteOwnersForSearch, 0);
1566
1567 =item C<$UserSearchFields>
1568
1569 Used by the User Autocompleter as well as the User Search.
1570
1571 Specifies which fields of L<RT::User> to match against and how to match
1572 each field when autocompleting users.  Valid match methods are LIKE,
1573 STARTSWITH, ENDSWITH, =, and !=.  Valid search fields are the core User
1574 fields, as well as custom fields, which are specified as "CF.1234" or
1575 "CF.Name"
1576
1577 =cut
1578
1579 Set($UserSearchFields, {
1580     EmailAddress => 'STARTSWITH',
1581     Name         => 'STARTSWITH',
1582     RealName     => 'LIKE',
1583 });
1584
1585 =item C<$AllowUserAutocompleteForUnprivileged>
1586
1587 Should unprivileged users (users of SelfService) be allowed to
1588 autocomplete users. Setting this option to 1 means unprivileged users
1589 will be able to search all your users.
1590
1591 =cut
1592
1593 Set($AllowUserAutocompleteForUnprivileged, 0);
1594
1595 =item C<$TicketAutocompleteFields>
1596
1597 Specifies which fields of L<RT::Ticket> to match against and how to match each
1598 field when autocompleting users.  Valid match methods are LIKE, STARTSWITH,
1599 ENDSWITH, C<=>, and C<!=>.
1600
1601 Not all Ticket fields are publically accessible and hence won't work for
1602 autocomplete unless you override their accessibility using a local overlay or a
1603 plugin.  Out of the box the following fields are public: id, Subject.
1604
1605 =cut
1606
1607 Set( $TicketAutocompleteFields, {
1608     id      => 'STARTSWITH',
1609     Subject => 'LIKE',
1610 });
1611
1612 =item C<$DisplayTicketAfterQuickCreate>
1613
1614 Enable this to redirect to the created ticket display page
1615 automatically when using QuickCreate.
1616
1617 =cut
1618
1619 Set($DisplayTicketAfterQuickCreate, 0);
1620
1621 =item C<$WikiImplicitLinks>
1622
1623 Support implicit links in WikiText custom fields?  Setting this to 1
1624 causes InterCapped or ALLCAPS words in WikiText fields to automatically
1625 become links to searches for those words.  If used on Articles, it links
1626 to the Article with that name.
1627
1628 =cut
1629
1630 Set($WikiImplicitLinks, 0);
1631
1632 =item C<$PreviewScripMessages>
1633
1634 Set C<$PreviewScripMessages> to 1 if the scrips preview on the ticket
1635 reply page should include the content of the messages to be sent.
1636
1637 =cut
1638
1639 Set($PreviewScripMessages, 0);
1640
1641 =item C<$SimplifiedRecipients>
1642
1643 If C<$SimplifiedRecipients> is set, a simple list of who will receive
1644 B<any> kind of mail will be shown on the ticket reply page, instead of a
1645 detailed breakdown by scrip.
1646
1647 =cut
1648
1649 Set($SimplifiedRecipients, 0);
1650
1651 =item C<$HideResolveActionsWithDependencies>
1652
1653 If set to 1, this option will skip ticket menu actions which can't be
1654 completed successfully because of outstanding active Depends On tickets.
1655
1656 By default, all ticket actions are displayed in the menu even if some of
1657 them can't be successful until all Depends On links are resolved or
1658 transitioned to another inactive status.
1659
1660 =cut
1661
1662 Set($HideResolveActionsWithDependencies, 0);
1663
1664 =back
1665
1666
1667
1668 =head2 Articles
1669
1670 =over 4
1671
1672 =item C<$ArticleOnTicketCreate>
1673
1674 Set this to 1 to display the Articles interface on the Ticket Create
1675 page in addition to the Reply/Comment page.
1676
1677 =cut
1678
1679 Set($ArticleOnTicketCreate, 0);
1680
1681 =item C<$HideArticleSearchOnReplyCreate>
1682
1683 Set this to 1 to hide the search and include boxes from the Article
1684 UI.  This assumes you have enabled Article Hotlist feature, otherwise
1685 you will have no access to Articles.
1686
1687 =cut
1688
1689 Set($HideArticleSearchOnReplyCreate, 0);
1690
1691 =back
1692
1693
1694
1695 =head2 Message box properties
1696
1697 =over 4
1698
1699 =item C<$MessageBoxWidth>, C<$MessageBoxHeight>
1700
1701 For message boxes, set the entry box width, height and what type of
1702 wrapping to use.  These options can be overridden by users in their
1703 preferences.
1704
1705 When the width is set to undef, no column count is specified and the
1706 message box will take up 100% of the available width.  Combining this
1707 with HARD messagebox wrapping (below) is not recommended, as it will
1708 lead to inconsistent width in transactions between browsers.
1709
1710 These settings only apply to the non-RichText message box.  See below
1711 for Rich Text settings.
1712
1713 =cut
1714
1715 Set($MessageBoxWidth, undef);
1716 Set($MessageBoxHeight, 15);
1717
1718 =item C<$MessageBoxRichText>
1719
1720 Should "rich text" editing be enabled? This option lets your users
1721 send HTML email messages from the web interface.
1722
1723 =cut
1724
1725 Set($MessageBoxRichText, 1);
1726
1727 =item C<$MessageBoxRichTextHeight>
1728
1729 Height of rich text JavaScript enabled editing boxes (in pixels)
1730
1731 =cut
1732
1733 Set($MessageBoxRichTextHeight, 200);
1734
1735 =item C<$MessageBoxIncludeSignature>
1736
1737 Should your users' signatures (from their Preferences page) be
1738 included in Comments and Replies.
1739
1740 =cut
1741
1742 Set($MessageBoxIncludeSignature, 1);
1743
1744 =item C<$MessageBoxIncludeSignatureOnComment>
1745
1746 Should your users' signatures (from their Preferences page) be
1747 included in Comments. Setting this to 0 overrides
1748 C<$MessageBoxIncludeSignature>.
1749
1750 =cut
1751
1752 Set($MessageBoxIncludeSignatureOnComment, 1);
1753
1754 =back
1755
1756
1757 =head2 Transaction display
1758
1759 =over 4
1760
1761 =item C<$OldestTransactionsFirst>
1762
1763 By default, RT shows newest transactions at the bottom of the ticket
1764 history page, if you want see them at the top set this to 0.  This
1765 option can be overridden by users in their preferences.
1766
1767 =cut
1768
1769 Set($OldestTransactionsFirst, 1);
1770
1771 =item C<$ShowHistory>
1772
1773 This option controls how history is shown on the ticket display page.  It
1774 accepts one of three possible modes and is overrideable on a per-user
1775 preference level.  If you regularly deal with long tickets and don't care much
1776 about the history, you may wish to change this option to C<click>.
1777
1778 =over
1779
1780 =item C<delay> (the default)
1781
1782 When set to C<delay>, history is loaded via javascript after the rest of the
1783 page has been loaded.  This speeds up apparent page load times and generally
1784 provides a smoother experience.  You may notice slight delays before the ticket
1785 history appears on very long tickets.
1786
1787 =item C<click>
1788
1789 When set to C<click>, history is loaded on demand when a placeholder link is
1790 clicked.  This speeds up ticket display page loads and history is never loaded
1791 if not requested.
1792
1793 =item C<always>
1794
1795 When set to C<always>, history is loaded before showing the page.  This ensures
1796 history is always available immediately, but at the expense of longer page load
1797 times.  This behaviour was the default in RT 4.0.
1798
1799 =back
1800
1801 =cut
1802
1803 Set($ShowHistory, 'delay');
1804
1805 =item C<$ShowBccHeader>
1806
1807 By default, RT hides from the web UI information about blind copies
1808 user sent on reply or comment.
1809
1810 =cut
1811
1812 Set($ShowBccHeader, 0);
1813
1814 =item C<$TrustHTMLAttachments>
1815
1816 If C<TrustHTMLAttachments> is not defined, we will display them as
1817 text. This prevents malicious HTML and JavaScript from being sent in a
1818 request (although there is probably more to it than that)
1819
1820 =cut
1821
1822 Set($TrustHTMLAttachments, undef);
1823
1824 =item C<$AlwaysDownloadAttachments>
1825
1826 Always download attachments, regardless of content type. If set, this
1827 overrides C<TrustHTMLAttachments>.
1828
1829 =cut
1830
1831 Set($AlwaysDownloadAttachments, undef);
1832
1833 =item C<$PreferRichText>
1834
1835 By default, RT shows rich text (HTML) messages if possible.  If
1836 C<$PreferRichText> is set to 0, RT will show plain text messages in
1837 preference to any rich text alternatives.
1838
1839 As a security precaution, RT limits the HTML that is displayed to a
1840 known-good subset -- as allowing arbitrary HTML to be displayed exposes
1841 multiple vectors for XSS and phishing attacks.  If
1842 L</$TrustHTMLAttachments> is enabled, the original HTML is available for
1843 viewing via the "Download" link.
1844
1845 If the optional L<HTML::Gumbo> dependency is installed, RT will leverage
1846 this to allow a broader set of HTML through, including tables.
1847
1848 =cut
1849
1850 Set($PreferRichText, 1);
1851
1852 =item C<$MaxInlineBody>
1853
1854 C<$MaxInlineBody> is the maximum attachment size that we want to see
1855 inline when viewing a transaction.  RT will inline any text if the
1856 value is undefined or 0.  This option can be overridden by users in
1857 their preferences.
1858
1859 =cut
1860
1861 Set($MaxInlineBody, 12000);
1862
1863 =item C<$ShowTransactionImages>
1864
1865 By default, RT shows images attached to incoming (and outgoing) ticket
1866 updates inline. Set this variable to 0 if you'd like to disable that
1867 behavior.
1868
1869 =cut
1870
1871 Set($ShowTransactionImages, 1);
1872
1873 =item C<$ShowRemoteImages>
1874
1875 By default, RT doesn't show remote images attached to incoming (and outgoing)
1876 ticket updates inline.  Set this variable to 1 if you'd like to enable remote
1877 image display.  Showing remote images may allow spammers and other senders to
1878 track when messages are viewed and see referer information.
1879
1880 Note that this setting is independent of L</$ShowTransactionImages> above.
1881
1882 =cut
1883
1884 Set($ShowRemoteImages, 0);
1885
1886 =item C<$PlainTextMono>
1887
1888 Normally plaintext attachments are displayed as HTML with line breaks
1889 preserved.  This causes space- and tab-based formatting not to be
1890 displayed correctly.  Set C<$PlainTextMono> to 1 to use a monospaced
1891 font and preserve formatting.
1892
1893 =cut
1894
1895 Set($PlainTextMono, 0);
1896
1897 =item C<$SuppressInlineTextFiles>
1898
1899 If C<$SuppressInlineTextFiles> is set to 1, then uploaded text files
1900 (text-type attachments with file names) are prevented from being
1901 displayed in-line when viewing a ticket's history.
1902
1903 =cut
1904
1905 Set($SuppressInlineTextFiles, undef);
1906
1907
1908 =item C<@Active_MakeClicky>
1909
1910 MakeClicky detects various formats of data in headers and email
1911 messages, and extends them with supporting links.  By default, RT
1912 provides two formats:
1913
1914 * 'httpurl': detects http:// and https:// URLs and adds '[Open URL]'
1915   link after the URL.
1916
1917 * 'httpurl_overwrite': also detects URLs as 'httpurl' format, but
1918   replaces the URL with a link.  Enabled by default.
1919
1920 See F<share/html/Elements/MakeClicky> for documentation on how to add
1921 your own styles of link detection.
1922
1923 =cut
1924
1925 Set(@Active_MakeClicky, qw(httpurl_overwrite));
1926
1927 =item C<$QuoteFolding>
1928
1929 Quote folding is the hiding of old replies in transaction history.
1930 It defaults to on.  Set this to 0 to disable it.
1931
1932 =cut
1933
1934 Set($QuoteFolding, 1);
1935
1936 =item C<$AllowLoginPasswordAutoComplete>
1937
1938 Allow browsers to remember the user's password on login (in case the
1939 browser can do so, and has the appropriate setting enabled). Default
1940 is 0.
1941
1942 =cut
1943
1944 Set($AllowLoginPasswordAutoComplete, 0);
1945
1946 =back
1947
1948
1949 =head1 Application logic
1950
1951 =over 4
1952
1953 =item C<$ParseNewMessageForTicketCcs>
1954
1955 If C<$ParseNewMessageForTicketCcs> is set to 1, RT will attempt to
1956 divine Ticket 'Cc' watchers from the To and Cc lines of incoming
1957 messages that create new Tickets. This option does not apply to replies
1958 or comments on existing Tickets. Be forewarned that if you have I<any>
1959 addresses which forward mail to RT automatically and you enable this
1960 option without modifying C<$RTAddressRegexp> below, you will get
1961 yourself into a heap of trouble.
1962
1963 =cut
1964
1965 Set($ParseNewMessageForTicketCcs, undef);
1966
1967 =item C<$UseTransactionBatch>
1968
1969 Set C<$UseTransactionBatch> to 1 to execute transactions in batches,
1970 such that a resolve and comment (for example) would happen
1971 simultaneously, instead of as two transactions, unaware of each
1972 others' existence.
1973
1974 =cut
1975
1976 Set($UseTransactionBatch, 1);
1977
1978 =item C<$StrictLinkACL>
1979
1980 When this feature is enabled a user needs I<ModifyTicket> rights on
1981 both tickets to link them together; otherwise, I<ModifyTicket> rights
1982 on either of them is sufficient.
1983
1984 =cut
1985
1986 Set($StrictLinkACL, 1);
1987
1988 =item C<$RedistributeAutoGeneratedMessages>
1989
1990 Should RT redistribute correspondence that it identifies as machine
1991 generated?  A 1 will do so; setting this to 0 will cause no
1992 such messages to be redistributed.  You can also use 'privileged' (the
1993 default), which will redistribute only to privileged users. This helps
1994 to protect against malformed bounces and loops caused by auto-created
1995 requestors with bogus addresses.
1996
1997 =cut
1998
1999 Set($RedistributeAutoGeneratedMessages, "privileged");
2000
2001 =item C<$ApprovalRejectionNotes>
2002
2003 Should rejection notes from approvals be sent to the requestors?
2004
2005 =cut
2006
2007 Set($ApprovalRejectionNotes, 1);
2008
2009 =item C<$ForceApprovalsView>
2010
2011 Should approval tickets only be viewed and modified through the standard
2012 approval interface?  With this setting enabled (by default), any attempt to use
2013 the normal ticket display and modify page for approval tickets will be
2014 redirected.
2015
2016 For example, with this option set to 1 and an approval ticket #123:
2017
2018     /Ticket/Display.html?id=123
2019
2020 is redirected to
2021
2022     /Approval/Display.html?id=123
2023
2024 With this option set to 0, the redirect won't happen.
2025
2026 =back
2027
2028 =cut
2029
2030 Set($ForceApprovalsView, 1);
2031
2032 =head1 Extra security
2033
2034 This is a list of extra security measures to enable that help keep your RT
2035 safe.  If you don't know what these mean, you should almost certainly leave the
2036 defaults alone.
2037
2038 =over 4
2039
2040 =item C<$DisallowExecuteCode>
2041
2042 If set to 1, the C<ExecuteCode> right will be removed from
2043 all users, B<including> the superuser.  This is intended for when RT is
2044 installed into a shared environment where even the superuser should not
2045 be allowed to run arbitrary Perl code on the server via scrips.
2046
2047 =cut
2048
2049 Set($DisallowExecuteCode, 0);
2050
2051 =item C<$Framebusting>
2052
2053 If set to 0, framekiller javascript will be disabled and the
2054 X-Frame-Options: DENY header will be suppressed from all responses.
2055 This disables RT's clickjacking protection.
2056
2057 =cut
2058
2059 Set($Framebusting, 1);
2060
2061 =item C<$RestrictReferrer>
2062
2063 If set to 0, the HTTP C<Referer> (sic) header will not be
2064 checked to ensure that requests come from RT's own domain.  As RT allows
2065 for GET requests to alter state, disabling this opens RT up to
2066 cross-site request forgery (CSRF) attacks.
2067
2068 =cut
2069
2070 Set($RestrictReferrer, 1);
2071
2072 =item C<$RestrictLoginReferrer>
2073
2074 If set to 0, RT will allow the user to log in from any link
2075 or request, merely by passing in C<user> and C<pass> parameters; setting
2076 it to 1 forces all logins to come from the login box, so the
2077 user is aware that they are being logged in.  The default is off, for
2078 backwards compatability.
2079
2080 =cut
2081
2082 Set($RestrictLoginReferrer, 0);
2083
2084 =item C<@ReferrerWhitelist>
2085
2086 This is a list of hostname:port combinations that RT will treat as being
2087 part of RT's domain. This is particularly useful if you access RT as
2088 multiple hostnames or have an external auth system that needs to
2089 redirect back to RT once authentication is complete.
2090
2091  Set(@ReferrerWhitelist, qw(www.example.com:443  www3.example.com:80));
2092
2093 If the "RT has detected a possible cross-site request forgery" error is triggered
2094 by a host:port sent by your browser that you believe should be valid, you can copy
2095 the host:port from the error message into this list.
2096
2097 Simple wildcards, similar to SSL certificates, are allowed.  For example:
2098
2099     *.example.com:80    # matches foo.example.com
2100                         # but not example.com
2101                         #      or foo.bar.example.com
2102
2103     www*.example.com:80 # matches www3.example.com
2104                         #     and www-test.example.com
2105                         #     and www.example.com
2106
2107 =cut
2108
2109 Set(@ReferrerWhitelist, qw());
2110
2111 =item C<%ReferrerComponents>
2112
2113 C<%ReferrerComponents> is the hash to customize referrer checking behavior when
2114 C<$RestrictReferrer> is enabled, where you can whitelist or blacklist the
2115 components along with their query args. e.g.
2116
2117     Set( %ReferrerComponents,
2118         ( '/Foo.html' => 1, '/Bar.html' => 0, '/Baz.html' => [ 'id', 'results' ] )
2119     );
2120
2121 With this, '/Foo.html' will be whitelisted, and '/Bar.html' will be blacklisted.
2122 '/Baz.html' with id/results query arguments will be whitelisted but blacklisted
2123 if there are other query arguments.
2124
2125 =cut
2126
2127 Set( %ReferrerComponents );
2128
2129 =item C<$BcryptCost>
2130
2131 This sets the default cost parameter used for the C<bcrypt> key
2132 derivation function.  Valid values range from 4 to 31, inclusive, with
2133 higher numbers denoting greater effort.
2134
2135 =cut
2136
2137 Set($BcryptCost, 11);
2138
2139 =back
2140
2141
2142
2143 =head1 Authorization and user configuration
2144
2145 =over 4
2146
2147 =item C<$WebRemoteUserAuth>
2148
2149 If C<$WebRemoteUserAuth> is defined, RT will defer to the environment's
2150 REMOTE_USER variable, which should be set by the webserver's
2151 authentication layer.
2152
2153 =cut
2154
2155 Set($WebRemoteUserAuth, undef);
2156
2157 =item C<$WebRemoteUserContinuous>
2158
2159 If C<$WebRemoteUserContinuous> is defined, RT will check for the
2160 REMOTE_USER on each access.  If you would prefer this to only happen
2161 once (at initial login) set this to 0.  The default
2162 setting will help ensure that if your webserver's authentication layer
2163 deauthenticates a user, RT notices as soon as possible.
2164
2165 =cut
2166
2167 Set($WebRemoteUserContinuous, 1);
2168
2169 =item C<$WebFallbackToRTLogin>
2170
2171 If C<$WebFallbackToRTLogin> is defined, the user is allowed a
2172 chance of fallback to the login screen, even if REMOTE_USER failed.
2173
2174 =cut
2175
2176 Set($WebFallbackToRTLogin, undef);
2177
2178 =item C<$WebRemoteUserGecos>
2179
2180 C<$WebRemoteUserGecos> means to match 'gecos' field as the user
2181 identity; useful with C<mod_auth_external>.
2182
2183 =cut
2184
2185 Set($WebRemoteUserGecos, undef);
2186
2187 =item C<$WebRemoteUserAutocreate>
2188
2189 C<$WebRemoteUserAutocreate> will create users under the same name as
2190 REMOTE_USER upon login, if they are missing from the Users table.
2191
2192 =cut
2193
2194 Set($WebRemoteUserAutocreate, undef);
2195
2196 =item C<$UserAutocreateDefaultsOnLogin>
2197
2198 If C<$WebRemoteUserAutocreate> is set to 1, C<$UserAutocreateDefaultsOnLogin>
2199 will be passed to L<RT::User/Create>.  Use it to set defaults, such as
2200 creating unprivileged users with C<<{ Privileged => 0 }>>.  This must be
2201 a hashref.
2202
2203 =cut
2204
2205 Set($UserAutocreateDefaultsOnLogin, undef);
2206
2207 =item C<$WebSessionClass>
2208
2209 C<$WebSessionClass> is the class you wish to use for storing sessions.  On
2210 MySQL, Pg, and Oracle it defaults to using your database, in other cases
2211 sessions are stored in files using L<Apache::Session::File>. Other installed
2212 Apache::Session::* modules can be used to store sessions.
2213
2214     Set($WebSessionClass, "Apache::Session::File");
2215
2216 =cut
2217
2218 Set($WebSessionClass, undef);
2219
2220 =item C<%WebSessionProperties>
2221
2222 C<%WebSessionProperties> is the hash to configure class L</$WebSessionClass>
2223 in case custom class is used. By default it's empty and values are picked
2224 depending on the class. Make sure that it's empty if you're using DB as session
2225 backend.
2226
2227 =cut
2228
2229 Set( %WebSessionProperties );
2230
2231 =item C<$AutoLogoff>
2232
2233 By default, RT's user sessions persist until a user closes his or her
2234 browser. With the C<$AutoLogoff> option you can setup session lifetime
2235 in minutes. A user will be logged out if he or she doesn't send any
2236 requests to RT for the defined time.
2237
2238 =cut
2239
2240 Set($AutoLogoff, 0);
2241
2242 =item C<$LogoutRefresh>
2243
2244 The number of seconds to wait after logout before sending the user to
2245 the login page. By default, 1 second, though you may want to increase
2246 this if you display additional information on the logout page.
2247
2248 =cut
2249
2250 Set($LogoutRefresh, 1);
2251
2252 =item C<$WebSecureCookies>
2253
2254 By default, RT's session cookie isn't marked as "secure". Some web
2255 browsers will treat secure cookies more carefully than non-secure
2256 ones, being careful not to write them to disk, only sending them over
2257 an SSL secured connection, and so on. To enable this behavior, set
2258 C<$WebSecureCookies> to 1.  NOTE: You probably don't want to turn this
2259 on I<unless> users are only connecting via SSL encrypted HTTPS
2260 connections.
2261
2262 =cut
2263
2264 Set($WebSecureCookies, 0);
2265
2266 =item C<$WebHttpOnlyCookies>
2267
2268 Default RT's session cookie to not being directly accessible to
2269 javascript.  The content is still sent during regular and AJAX requests,
2270 and other cookies are unaffected, but the session-id is less
2271 programmatically accessible to javascript.  Turning this off should only
2272 be necessary in situations with odd client-side authentication
2273 requirements.
2274
2275 =cut
2276
2277 Set($WebHttpOnlyCookies, 1);
2278
2279 =item C<$MinimumPasswordLength>
2280
2281 C<$MinimumPasswordLength> defines the minimum length for user
2282 passwords. Setting it to 0 disables this check.
2283
2284 =cut
2285
2286 Set($MinimumPasswordLength, 5);
2287
2288 =back
2289
2290
2291 =head1 Internationalization
2292
2293 =over 4
2294
2295 =item C<@LexiconLanguages>
2296
2297 An array that contains languages supported by RT's
2298 internationalization interface.  Defaults to all *.po lexicons;
2299 setting it to C<qw(en ja)> will make RT bilingual instead of
2300 multilingual, but will save some memory.
2301
2302 =cut
2303
2304 Set(@LexiconLanguages, qw(*));
2305
2306 =item C<@EmailInputEncodings>
2307
2308 An array that contains default encodings used to guess which charset
2309 an attachment uses, if it does not specify one explicitly.  All
2310 options must be recognized by L<Encode::Guess>.  The first element may
2311 also be '*', which enables encoding detection using
2312 L<Encode::Detect::Detector>, if installed.
2313
2314 =cut
2315
2316 Set(@EmailInputEncodings, qw(utf-8 iso-8859-1 us-ascii));
2317
2318 =item C<$EmailOutputEncoding>
2319
2320 The charset for localized email.  Must be recognized by Encode.
2321
2322 =cut
2323
2324 Set($EmailOutputEncoding, "utf-8");
2325
2326 =back
2327
2328
2329
2330
2331
2332
2333
2334 =head1 Date and time handling
2335
2336 =over 4
2337
2338 =item C<$DateTimeFormat>
2339
2340 You can choose date and time format.  See the "Output formatters"
2341 section in perldoc F<lib/RT/Date.pm> for more options.  This option
2342 can be overridden by users in their preferences.
2343
2344 Some examples:
2345
2346 C<Set($DateTimeFormat, "LocalizedDateTime");>
2347 C<Set($DateTimeFormat, { Format => "ISO", Seconds => 0 });>
2348 C<Set($DateTimeFormat, "RFC2822");>
2349 C<Set($DateTimeFormat, { Format => "RFC2822", Seconds => 0, DayOfWeek => 0 });>
2350
2351 =cut
2352
2353 Set($DateTimeFormat, "DefaultFormat");
2354
2355 # Next two options are for Time::ParseDate
2356
2357 =item C<$DateDayBeforeMonth>
2358
2359 Set this to 1 if your local date convention looks like "dd/mm/yy"
2360 instead of "mm/dd/yy". Used only for parsing, not for displaying
2361 dates.
2362
2363 =cut
2364
2365 Set($DateDayBeforeMonth, 1);
2366
2367 =item C<$AmbiguousDayInPast>, C<$AmbiguousDayInFuture>
2368
2369 Should an unspecified day or year in a date refer to a future or a
2370 past value? For example, should a date of "Tuesday" default to mean
2371 the date for next Tuesday or last Tuesday? Should the date "March 1"
2372 default to the date for next March or last March?
2373
2374 Set C<$AmbiguousDayInPast> for the last date, or
2375 C<$AmbiguousDayInFuture> for the next date; the default is usually
2376 correct.  If both are set, C<$AmbiguousDayInPast> takes precedence.
2377
2378 =cut
2379
2380 Set($AmbiguousDayInPast, 0);
2381 Set($AmbiguousDayInFuture, 0);
2382
2383 =item C<$DefaultTimeUnitsToHours>
2384
2385 Use this to set the default units for time entry to hours instead of
2386 minutes.  Note that this only effects entry, not display.
2387
2388 =cut
2389
2390 Set($DefaultTimeUnitsToHours, 0);
2391
2392 =item C<$SimpleSearchIncludeResolved>
2393
2394 By default, the simple ticket search in the top bar excludes "resolved" tickets
2395 unless a status argument is specified.  Set this to a true value to include 
2396 them.
2397
2398 =cut
2399
2400 Set($SimpleSearchIncludeResolved, 0);
2401
2402 =item C<$TimeInICal>
2403
2404 By default, events in the iCal feed on the ticket search page
2405 contain only dates, making them all day calendar events. Set
2406 C<$TimeInICal> if you have start or due dates on tickets that
2407 have significant time values and you want those times to be
2408 included in the events in the iCal feed.
2409
2410 This option can also be set as an individual user preference.
2411
2412 =cut
2413
2414 Set($TimeInICal, 0);
2415
2416 =back
2417
2418
2419
2420 =head1 Cryptography
2421
2422 A complete description of RT's cryptography capabilities can be found in
2423 L<RT::Crypt>. At this moment, GnuPG (PGP) and SMIME security protocols are
2424 supported.
2425
2426 =over 4
2427
2428 =item C<%Crypt>
2429
2430 The following options apply to all cryptography protocols.
2431
2432 By default, all enabled security protocols will analyze each incoming
2433 email. You may set C<Incoming> to a subset of this list, if some enabled
2434 protocols do not apply to incoming mail; however, this is usually
2435 unnecessary. Note that for any verification or decryption to occur for
2436 incoming mail, the C<Auth::Crypt> mail plugin must be added to
2437 L</@MailPlugins> as specified in L<RT::Crypt/Handling incoming messages>.
2438
2439 For outgoing emails, the first security protocol from the above list is
2440 used. Use the C<Outgoing> option to set a security protocol that should
2441 be used in outgoing emails.  At this moment, only one protocol can be
2442 used to protect outgoing emails.
2443
2444 Set C<RejectOnUnencrypted> to 1 if all incoming email must be
2445 properly encrypted.  All unencrypted emails will be rejected by RT.
2446
2447 Set C<RejectOnMissingPrivateKey> to 0 if you don't want to reject
2448 emails encrypted for key RT doesn't have and can not decrypt.
2449
2450 Set C<RejectOnBadData> to 0 if you don't want to reject letters
2451 with incorrect data.
2452
2453 If you want to allow people to encrypt attachments inside the DB then
2454 set C<AllowEncryptDataInDB> to 1.
2455
2456 Set C<Dashboards> to a hash with Encrypt and Sign keys to control
2457 whether dashboards should be encrypted and/or signed correspondingly.
2458 By default they are not encrypted or signed.
2459
2460 =back
2461
2462 =cut
2463
2464 Set( %Crypt,
2465     Incoming                  => undef, # ['GnuPG', 'SMIME']
2466     Outgoing                  => undef, # 'SMIME'
2467
2468     RejectOnUnencrypted       => 0,
2469     RejectOnMissingPrivateKey => 1,
2470     RejectOnBadData           => 1,
2471
2472     AllowEncryptDataInDB      => 0,
2473
2474     Dashboards => {
2475         Encrypt => 0,
2476         Sign    => 0,
2477     },
2478 );
2479
2480 =head2 SMIME configuration
2481
2482 A full description of the SMIME integration can be found in
2483 L<RT::Crypt::SMIME>.
2484
2485 =over 4
2486
2487 =item C<%SMIME>
2488
2489 Set C<Enable> to 0 or 1 to disable or enable SMIME for
2490 encrypting and signing messages.
2491
2492 Set C<OpenSSL> to path to F<openssl> executable.
2493
2494 Set C<Keyring> to directory with key files.  Key and certificates should
2495 be stored in a PEM file in this directory named named, e.g.,
2496 F<email.address@example.com.pem>.
2497
2498 Set C<CAPath> to either a PEM-formatted certificate of a single signing
2499 certificate authority, or a directory of such (including hash symlinks
2500 as created by the openssl tool C<c_rehash>).  Only SMIME certificates
2501 signed by these certificate authorities will be treated as valid
2502 signatures.  If left unset (and C<AcceptUntrustedCAs> is unset, as it is
2503 by default), no signatures will be marked as valid!
2504
2505 Set C<AcceptUntrustedCAs> to allow arbitrary SMIME certificates, no
2506 matter their signing entities.  Such mails will be marked as untrusted,
2507 but signed; C<CAPath> will be used to mark which mails are signed by
2508 trusted certificate authorities.  This configuration is generally
2509 insecure, as it allows the possibility of accepting forged mail signed
2510 by an untrusted certificate authority.
2511
2512 Setting C<AcceptUntrustedCAs> also allows encryption to users with
2513 certificates created by untrusted CAs.
2514
2515 Set C<Passphrase> to a scalar (to use for all keys), an anonymous
2516 function, or a hash (to look up by address).  If the hash is used, the
2517 '' key is used as a default.
2518
2519 See L<RT::Crypt::SMIME> for details.
2520
2521 =back
2522
2523 =cut
2524
2525 Set( %SMIME,
2526     Enable => @RT_SMIME@,
2527     OpenSSL => 'openssl',
2528     Keyring => q{@RT_VAR_PATH@/data/smime},
2529     CAPath => undef,
2530     AcceptUntrustedCAs => undef,
2531     Passphrase => undef,
2532 );
2533
2534 =head2 GnuPG configuration
2535
2536 A full description of the (somewhat extensive) GnuPG integration can
2537 be found by running the command `perldoc L<RT::Crypt::GnuPG>` (or
2538 `perldoc lib/RT/Crypt/GnuPG.pm` from your RT install directory).
2539
2540 =over 4
2541
2542 =item C<%GnuPG>
2543
2544 Set C<Enable> to 0 or 1 to disable or enable GnuPG interfaces
2545 for encrypting and signing outgoing messages.
2546
2547 Set C<GnuPG> to the name or path of the gpg binary to use.
2548
2549 Set C<Passphrase> to a scalar (to use for all keys), an anonymous
2550 function, or a hash (to look up by address).  If the hash is used, the
2551 '' key is used as a default.
2552
2553 Set C<OutgoingMessagesFormat> to 'inline' to use inline encryption and
2554 signatures instead of 'RFC' (GPG/MIME: RFC3156 and RFC1847) format.
2555
2556 =cut
2557
2558 Set(%GnuPG,
2559     Enable                 => @RT_GPG@,
2560     GnuPG                  => 'gpg',
2561     Passphrase             => undef,
2562     OutgoingMessagesFormat => "RFC", # Inline
2563 );
2564
2565 =item C<%GnuPGOptions>
2566
2567 Options to pass to the GnuPG program.
2568
2569 If you override this in your RT_SiteConfig, you should be sure to
2570 include a homedir setting.
2571
2572 Note that options with '-' character MUST be quoted.
2573
2574 =cut
2575
2576 Set(%GnuPGOptions,
2577     homedir => q{@RT_VAR_PATH@/data/gpg},
2578
2579 # URL of a keyserver
2580 #    keyserver => 'hkp://subkeys.pgp.net',
2581
2582 # enables the automatic retrieving of keys when verifying signatures
2583 #    'keyserver-options' => 'auto-key-retrieve',
2584 );
2585
2586 =back
2587
2588
2589
2590 =head1 Lifecycles
2591
2592 =head2 Lifecycle definitions
2593
2594 Each lifecycle is a list of possible statuses split into three logic
2595 sets: B<initial>, B<active> and B<inactive>. Each status in a
2596 lifecycle must be unique. (Statuses may not be repeated across sets.)
2597 Each set may have any number of statuses.
2598
2599 For example:
2600
2601     default => {
2602         initial  => ['new'],
2603         active   => ['open', 'stalled'],
2604         inactive => ['resolved', 'rejected', 'deleted'],
2605         ...
2606     },
2607
2608 Status names can be from 1 to 64 ASCII characters.  Statuses are
2609 localized using RT's standard internationalization and localization
2610 system.
2611
2612 =over 4
2613
2614 =item initial
2615
2616 You can define multiple B<initial> statuses for tickets in a given
2617 lifecycle.
2618
2619 RT will automatically set its B<Started> date when you change a
2620 ticket's status from an B<initial> state to an B<active> or
2621 B<inactive> status.
2622
2623 =item active
2624
2625 B<Active> tickets are "currently in play" - they're things that are
2626 being worked on and not yet complete.
2627
2628 =item inactive
2629
2630 B<Inactive> tickets are typically in their "final resting state".
2631
2632 While you're free to implement a workflow that ignores that
2633 description, typically once a ticket enters an inactive state, it will
2634 never again enter an active state.
2635
2636 RT will automatically set the B<Resolved> date when a ticket's status
2637 is changed from an B<Initial> or B<Active> status to an B<Inactive>
2638 status.
2639
2640 B<deleted> is still a special status and protected by the
2641 B<DeleteTicket> right, unless you re-defined rights (read below). If
2642 you don't want to allow ticket deletion at any time simply don't
2643 include it in your lifecycle.
2644
2645 =back
2646
2647 Statuses in each set are ordered and listed in the UI in the defined
2648 order.
2649
2650 Changes between statuses are constrained by transition rules, as
2651 described below.
2652
2653 =head2 Default values
2654
2655 In some cases a default value is used to display in UI or in API when
2656 value is not provided. You can configure defaults using the following
2657 syntax:
2658
2659     default => {
2660         ...
2661         defaults => {
2662             on_create => 'new',
2663             on_resolve => 'resolved',
2664             ...
2665         },
2666     },
2667
2668 The following defaults are used.
2669
2670 =over 4
2671
2672 =item on_create
2673
2674 If you (or your code) doesn't specify a status when creating a ticket,
2675 RT will use the this status. See also L</Statuses available during
2676 ticket creation>.
2677
2678 =item on_merge
2679
2680 When tickets are merged, the status of the ticket that was merged
2681 away is forced to this value.  It should be one of inactive statuses;
2682 'resolved' or its equivalent is most probably the best candidate.
2683
2684 =item approved
2685
2686 When an approval is accepted, the status of depending tickets will
2687 be changed to this value.
2688
2689 =item denied
2690
2691 When an approval is denied, the status of depending tickets will
2692 be changed to this value.
2693
2694 =item reminder_on_open
2695
2696 When a reminder is opened, the status will be changed to this value.
2697
2698 =item reminder_on_resolve
2699
2700 When a reminder is resolved, the status will be changed to this value.
2701
2702 =back
2703
2704 =head2 Transitions between statuses and UI actions
2705
2706 A B<Transition> is a change of status from A to B. You should define
2707 all possible transitions in each lifecycle using the following format:
2708
2709     default => {
2710         ...
2711         transitions => {
2712             ''       => [qw(new open resolved)],
2713             new      => [qw(open resolved rejected deleted)],
2714             open     => [qw(stalled resolved rejected deleted)],
2715             stalled  => [qw(open)],
2716             resolved => [qw(open)],
2717             rejected => [qw(open)],
2718             deleted  => [qw(open)],
2719         },
2720         ...
2721     },
2722
2723 The order of items in the listing for each transition line affects
2724 the order they appear in the drop-down. If you change the config
2725 for 'open' state listing to:
2726
2727     open     => [qw(stalled rejected deleted resolved)],
2728
2729 then the 'resolved' status will appear as the last item in the drop-down.
2730
2731 =head3 Statuses available during ticket creation
2732
2733 By default users can create tickets with a status of new,
2734 open, or resolved, but cannot create tickets with a status of
2735 rejected, stalled, or deleted. If you want to change the statuses
2736 available during creation, update the transition from '' (empty
2737 string), like in the example above.
2738
2739 =head3 Protecting status changes with rights
2740
2741 A transition or group of transitions can be protected by a specific
2742 right.  Additionally, you can name new right names, which will be added
2743 to the system to control that transition.  For example, if you wished to
2744 create a lesser right than ModifyTicket for rejecting tickets, you could
2745 write:
2746
2747     default => {
2748         ...
2749         rights => {
2750             '* -> deleted'  => 'DeleteTicket',
2751             '* -> rejected' => 'RejectTicket',
2752             '* -> *'        => 'ModifyTicket',
2753         },
2754         ...
2755     },
2756
2757 This would create a new C<RejectTicket> right in the system which you
2758 could assign to whatever groups you choose.
2759
2760 On the left hand side you can have the following variants:
2761
2762     '<from> -> <to>'
2763     '* -> <to>'
2764     '<from> -> *'
2765     '* -> *'
2766
2767 Valid transitions are listed in order of priority. If a user attempts
2768 to change a ticket's status from B<new> to B<open> then the lifecycle
2769 is checked for presence of an exact match, then for 'any to B<open>',
2770 'B<new> to any' and finally 'any to any'.
2771
2772 If you don't define any rights, or there is no match for a transition,
2773 RT will use the B<DeleteTicket> or B<ModifyTicket> as appropriate.
2774
2775 =head3 Labeling and defining actions
2776
2777 For each transition you can define an action that will be shown in the
2778 UI; each action annotated with a label and an update type.
2779
2780 Each action may provide a default update type, which can be
2781 B<Comment>, B<Respond>, or absent. For example, you may want your
2782 staff to write a reply to the end user when they change status from
2783 B<new> to B<open>, and thus set the update to B<Respond>.  Neither
2784 B<Comment> nor B<Respond> are mandatory, and user may leave the
2785 message empty, regardless of the update type.
2786
2787 This configuration can be used to accomplish what
2788 $ResolveDefaultUpdateType was used for in RT 3.8.
2789
2790 Use the following format to define labels and actions of transitions:
2791
2792     default => {
2793         ...
2794         actions => [
2795             'new -> open'     => { label => 'Open it', update => 'Respond' },
2796             'new -> resolved' => { label => 'Resolve', update => 'Comment' },
2797             'new -> rejected' => { label => 'Reject',  update => 'Respond' },
2798             'new -> deleted'  => { label => 'Delete' },
2799
2800             'open -> stalled'  => { label => 'Stall',   update => 'Comment' },
2801             'open -> resolved' => { label => 'Resolve', update => 'Comment' },
2802             'open -> rejected' => { label => 'Reject',  update => 'Respond' },
2803
2804             'stalled -> open'  => { label => 'Open it' },
2805             'resolved -> open' => { label => 'Re-open', update => 'Comment' },
2806             'rejected -> open' => { label => 'Re-open', update => 'Comment' },
2807             'deleted -> open'  => { label => 'Undelete' },
2808         ],
2809         ...
2810     },
2811
2812 In addition, you may define multiple actions for the same transition.
2813 Alternately, you may use '* -> x' to match more than one transition.
2814 For example:
2815
2816     default => {
2817         ...
2818         actions => [
2819             ...
2820             'new -> rejected' => { label => 'Reject', update => 'Respond' },
2821             'new -> rejected' => { label => 'Quick Reject' },
2822             ...
2823             '* -> deleted' => { label => 'Delete' },
2824             ...
2825         ],
2826         ...
2827     },
2828
2829 =head2 Moving tickets between queues with different lifecycles
2830
2831 Unless there is an explicit mapping between statuses in two different
2832 lifecycles, you can not move tickets between queues with these
2833 lifecycles -- even if both use the exact same set of statuses.
2834 Such a mapping is defined as follows:
2835
2836     __maps__ => {
2837         'from lifecycle -> to lifecycle' => {
2838             'status in left lifecycle' => 'status in right lifecycle',
2839             ...
2840         },
2841         ...
2842     },
2843
2844 =cut
2845
2846 Set(%Lifecycles,
2847     default => {
2848         initial         => [qw(new)], # loc_qw
2849         active          => [qw(open stalled)], # loc_qw
2850         inactive        => [qw(resolved rejected deleted)], # loc_qw
2851
2852         defaults => {
2853             on_create => 'new',
2854             on_merge  => 'resolved',
2855             approved  => 'open',
2856             denied    => 'rejected',
2857             reminder_on_open     => 'open',
2858             reminder_on_resolve  => 'resolved',
2859         },
2860
2861         transitions => {
2862             ""       => [qw(new open resolved)],
2863
2864             # from   => [ to list ],
2865             new      => [qw(    open stalled resolved rejected deleted)],
2866             open     => [qw(new      stalled resolved rejected deleted)],
2867             stalled  => [qw(new open         rejected resolved deleted)],
2868             resolved => [qw(new open stalled          rejected deleted)],
2869             rejected => [qw(new open stalled resolved          deleted)],
2870             deleted  => [qw(new open stalled rejected resolved        )],
2871         },
2872         rights => {
2873             '* -> deleted'  => 'DeleteTicket',
2874             '* -> *'        => 'ModifyTicket',
2875         },
2876         actions => [
2877             'new -> open'      => { label  => 'Open It', update => 'Respond' }, # loc{label}
2878             'new -> resolved'  => { label  => 'Resolve', update => 'Comment' }, # loc{label}
2879             'new -> rejected'  => { label  => 'Reject',  update => 'Respond' }, # loc{label}
2880             'new -> deleted'   => { label  => 'Delete',                      }, # loc{label}
2881             'open -> stalled'  => { label  => 'Stall',   update => 'Comment' }, # loc{label}
2882             'open -> resolved' => { label  => 'Resolve', update => 'Comment' }, # loc{label}
2883             'open -> rejected' => { label  => 'Reject',  update => 'Respond' }, # loc{label}
2884             'stalled -> open'  => { label  => 'Open It',                     }, # loc{label}
2885             'resolved -> open' => { label  => 'Re-open', update => 'Comment' }, # loc{label}
2886             'rejected -> open' => { label  => 'Re-open', update => 'Comment' }, # loc{label}
2887             'deleted -> open'  => { label  => 'Undelete',                    }, # loc{label}
2888         ],
2889     },
2890 # don't change lifecyle of the approvals, they are not capable to deal with
2891 # custom statuses
2892     approvals => {
2893         initial         => [ 'new' ],
2894         active          => [ 'open', 'stalled' ],
2895         inactive        => [ 'resolved', 'rejected', 'deleted' ],
2896
2897         defaults => {
2898             on_create => 'new',
2899             on_merge => 'resolved',
2900             reminder_on_open     => 'open',
2901             reminder_on_resolve  => 'resolved',
2902         },
2903
2904         transitions => {
2905             ''       => [qw(new open resolved)],
2906
2907             # from   => [ to list ],
2908             new      => [qw(open stalled resolved rejected deleted)],
2909             open     => [qw(new stalled resolved rejected deleted)],
2910             stalled  => [qw(new open rejected resolved deleted)],
2911             resolved => [qw(new open stalled rejected deleted)],
2912             rejected => [qw(new open stalled resolved deleted)],
2913             deleted  => [qw(new open stalled rejected resolved)],
2914         },
2915         rights => {
2916             '* -> deleted'  => 'DeleteTicket',
2917             '* -> rejected' => 'ModifyTicket',
2918             '* -> *'        => 'ModifyTicket',
2919         },
2920         actions => [
2921             'new -> open'      => { label  => 'Open It', update => 'Respond' }, # loc{label}
2922             'new -> resolved'  => { label  => 'Resolve', update => 'Comment' }, # loc{label}
2923             'new -> rejected'  => { label  => 'Reject',  update => 'Respond' }, # loc{label}
2924             'new -> deleted'   => { label  => 'Delete',                      }, # loc{label}
2925             'open -> stalled'  => { label  => 'Stall',   update => 'Comment' }, # loc{label}
2926             'open -> resolved' => { label  => 'Resolve', update => 'Comment' }, # loc{label}
2927             'open -> rejected' => { label  => 'Reject',  update => 'Respond' }, # loc{label}
2928             'stalled -> open'  => { label  => 'Open It',                     }, # loc{label}
2929             'resolved -> open' => { label  => 'Re-open', update => 'Comment' }, # loc{label}
2930             'rejected -> open' => { label  => 'Re-open', update => 'Comment' }, # loc{label}
2931             'deleted -> open'  => { label  => 'Undelete',                    }, # loc{label}
2932         ],
2933     },
2934 );
2935
2936
2937
2938
2939
2940 =head1 Administrative interface
2941
2942 =over 4
2943
2944 =item C<$ShowRTPortal>
2945
2946 RT can show administrators a feed of recent RT releases and other
2947 related announcements and information from Best Practical on the top
2948 level Admin page.  This feature helps you stay up to date on
2949 RT security announcements and version updates.
2950
2951 RT provides this feature using an "iframe" on C</Admin/index.html>
2952 which asks the administrator's browser to show an inline page from
2953 Best Practical's website.
2954
2955 If you'd rather not make this feature available to your
2956 administrators, set C<$ShowRTPortal> to 0.
2957
2958 =cut
2959
2960 Set($ShowRTPortal, 1);
2961
2962 =item C<%AdminSearchResultFormat>
2963
2964 In the admin interface, format strings similar to tickets result
2965 formats are used. Use C<%AdminSearchResultFormat> to define the format
2966 strings used in the admin interface on a per-RT-class basis.
2967
2968 =cut
2969
2970 Set(%AdminSearchResultFormat,
2971     Queues =>
2972         q{'<a href="__WebPath__/Admin/Queues/Modify.html?id=__id__">__id__</a>/TITLE:#'}
2973         .q{,'<a href="__WebPath__/Admin/Queues/Modify.html?id=__id__">__Name__</a>/TITLE:Name'}
2974         .q{,__Description__,__Address__,__Priority__,__DefaultDueIn__,__Lifecycle__,__SubjectTag__,__Disabled__},
2975
2976     Groups =>
2977         q{'<a href="__WebPath__/Admin/Groups/Modify.html?id=__id__">__id__</a>/TITLE:#'}
2978         .q{,'<a href="__WebPath__/Admin/Groups/Modify.html?id=__id__">__Name__</a>/TITLE:Name'}
2979         .q{,'__Description__',__Disabled__},
2980
2981     Users =>
2982         q{'<a href="__WebPath__/Admin/Users/Modify.html?id=__id__">__id__</a>/TITLE:#'}
2983         .q{,'<a href="__WebPath__/Admin/Users/Modify.html?id=__id__">__Name__</a>/TITLE:Name'}
2984         .q{,__RealName__, __EmailAddress__,__Disabled__},
2985
2986     CustomFields =>
2987         q{'<a href="__WebPath__/Admin/CustomFields/Modify.html?id=__id__">__id__</a>/TITLE:#'}
2988         .q{,'<a href="__WebPath__/Admin/CustomFields/Modify.html?id=__id__">__Name__</a>/TITLE:Name'}
2989         .q{,__AddedTo__, __FriendlyType__, __FriendlyPattern__,__Disabled__},
2990
2991     Scrips =>
2992         q{'<a href="__WebPath__/Admin/Scrips/Modify.html?id=__id____From__">__id__</a>/TITLE:#'}
2993         .q{,'<a href="__WebPath__/Admin/Scrips/Modify.html?id=__id____From__">__Description__</a>/TITLE:Description'}
2994         .q{,__Condition__, __Action__, __Template__, __Disabled__},
2995
2996     Templates =>
2997         q{'<a href="__WebPath__/__WebRequestPathDir__/Template.html?Queue=__QueueId__&Template=__id__">__id__</a>/TITLE:#'}
2998         .q{,'<a href="__WebPath__/__WebRequestPathDir__/Template.html?Queue=__QueueId__&Template=__id__">__Name__</a>/TITLE:Name'}
2999         .q{,'__Description__','__UsedBy__','__IsEmpty__'},
3000     Classes =>
3001         q{ '<a href="__WebPath__/Admin/Articles/Classes/Modify.html?id=__id__">__id__</a>/TITLE:#'}
3002         .q{,'<a href="__WebPath__/Admin/Articles/Classes/Modify.html?id=__id__">__Name__</a>/TITLE:Name'}
3003         .q{,__Description__,__Disabled__},
3004 );
3005
3006 =item C<%AdminSearchResultRows>
3007
3008 Use C<%AdminSearchResultRows> to define the search result rows in the admin
3009 interface on a per-RT-class basis.
3010
3011 =cut
3012
3013 Set(%AdminSearchResultRows,
3014     Queues       => 50,
3015     Groups       => 50,
3016     Users        => 50,
3017     CustomFields => 50,
3018     Scrips       => 50,
3019     Templates    => 50,
3020     Classes      => 50,
3021 );
3022
3023 =back
3024
3025
3026
3027
3028 =head1 Development options
3029
3030 =over 4
3031
3032 =item C<$DevelMode>
3033
3034 RT comes with a "Development mode" setting.  This setting, as a
3035 convenience for developers, turns on several of development options
3036 that you most likely don't want in production:
3037
3038 =over 4
3039
3040 =item *
3041
3042 Disables CSS and JS minification and concatenation.  Both CSS and JS
3043 will be instead be served as a number of individual smaller files,
3044 unchanged from how they are stored on disk.
3045
3046 =item *
3047
3048 Uses L<Module::Refresh> to reload changed Perl modules on each
3049 request.
3050
3051 =item *
3052
3053 Turns off Mason's C<static_source> directive; this causes Mason to
3054 reload template files which have been modified on disk.
3055
3056 =item *
3057
3058 Turns on Mason's HTML C<error_format>; this renders compilation errors
3059 to the browser, along with a full stack trace.  It is possible for
3060 stack traces to reveal sensitive information such as passwords or
3061 ticket content.
3062
3063 =item *
3064
3065 Turns off caching of callbacks; this enables additional callbacks to
3066 be added while the server is running.
3067
3068 =back
3069
3070 =cut
3071
3072 Set($DevelMode, 0);
3073
3074
3075 =item C<$RecordBaseClass>
3076
3077 What abstract base class should RT use for its records. You should
3078 probably never change this.
3079
3080 Valid values are C<DBIx::SearchBuilder::Record> or
3081 C<DBIx::SearchBuilder::Record::Cachable>
3082
3083 =cut
3084
3085 Set($RecordBaseClass, "DBIx::SearchBuilder::Record::Cachable");
3086
3087
3088 =item C<@MasonParameters>
3089
3090 C<@MasonParameters> is the list of parameters for the constructor of
3091 HTML::Mason's Apache or CGI Handler.  This is normally only useful for
3092 debugging, e.g. profiling individual components with:
3093
3094     use MasonX::Profiler; # available on CPAN
3095     Set(@MasonParameters, (preamble => 'my $p = MasonX::Profiler->new($m, $r);'));
3096
3097 =cut
3098
3099 Set(@MasonParameters, ());
3100
3101 =item C<$StatementLog>
3102
3103 RT has rudimentary SQL statement logging support; simply set
3104 C<$StatementLog> to be the level that you wish SQL statements to be
3105 logged at.
3106
3107 Enabling this option will also expose the SQL Queries page in the
3108 Admin -> Tools menu for SuperUsers.
3109
3110 =cut
3111
3112 Set($StatementLog, undef);
3113
3114 =back
3115
3116 =cut
3117
3118 1;