fd976de1f30907dff30bbbb9d2cfb3c348a0dcf8
[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<$DontSearchFileAttachments>
1400
1401 If C<$DontSearchFileAttachments> is set to 1, then uploaded files
1402 (attachments with file names) are not searched during content
1403 search.
1404
1405 Note that if you use indexed FTS then named attachments are still
1406 indexed by default regardless of this option.
1407
1408 =cut
1409
1410 Set($DontSearchFileAttachments, undef);
1411
1412 =item C<$OnlySearchActiveTicketsInSimpleSearch>
1413
1414 When query in simple search doesn't have status info, use this to only
1415 search active ones.
1416
1417 =cut
1418
1419 Set($OnlySearchActiveTicketsInSimpleSearch, 1);
1420
1421 =item C<$SearchResultsAutoRedirect>
1422
1423 When only one ticket is found in search, use this to redirect to the
1424 ticket display page automatically.
1425
1426 =cut
1427
1428 Set($SearchResultsAutoRedirect, 0);
1429
1430 =back
1431
1432
1433
1434 =head2 Ticket display
1435
1436 =over 4
1437
1438 =item C<$ShowMoreAboutPrivilegedUsers>
1439
1440 This determines if the 'More about requestor' box on
1441 Ticket/Display.html is shown for Privileged Users.
1442
1443 =cut
1444
1445 Set($ShowMoreAboutPrivilegedUsers, 0);
1446
1447 =item C<$MoreAboutRequestorTicketList>
1448
1449 This can be set to Active, Inactive, All or None.  It controls what
1450 ticket list will be displayed in the 'More about requestor' box on
1451 Ticket/Display.html.  This option can be controlled by users also.
1452
1453 =cut
1454
1455 Set($MoreAboutRequestorTicketList, "Active");
1456
1457 =item C<$MoreAboutRequestorTicketListFormat>
1458
1459 Control the appearance of the ticket lists in the 'More About Requestors' box.
1460
1461 =cut
1462
1463 Set($MoreAboutRequestorTicketListFormat, q{
1464        '<a href="__WebPath__/Ticket/Display.html?id=__id__">__id__</a>',
1465        '__Owner__',
1466        '<a href="__WebPath__/Ticket/Display.html?id=__id__">__Subject__</a>',
1467        '__Status__',
1468 });
1469
1470
1471 =item C<$MoreAboutRequestorExtraInfo>
1472
1473 By default, the 'More about requestor' box on Ticket/Display.html
1474 shows the Requestor's name and ticket list.  If you would like to see
1475 extra information about the user, this expects a Format string of user
1476 attributes.  Please note that not all the attributes are supported in
1477 this display because we're not building a table.
1478
1479 Example:
1480 C<Set($MoreAboutRequestorExtraInfo,"Organization, Address1")>
1481
1482 =cut
1483
1484 Set($MoreAboutRequestorExtraInfo, "");
1485
1486 =item C<$MoreAboutRequestorGroupsLimit>
1487
1488 By default, the 'More about requestor' box on Ticket/Display.html
1489 shows all the groups of the Requestor.  Use this to limit the number
1490 of groups; a value of undef removes the group display entirely.
1491
1492 =cut
1493
1494 Set($MoreAboutRequestorGroupsLimit, 0);
1495
1496 =item C<$UseSideBySideLayout>
1497
1498 Should the ticket create and update forms use a more space efficient
1499 two column layout.  This layout may not work in narrow browsers if you
1500 set a MessageBoxWidth (below).
1501
1502 =cut
1503
1504 Set($UseSideBySideLayout, 1);
1505
1506 =item C<$EditCustomFieldsSingleColumn>
1507
1508 When displaying a list of Ticket Custom Fields for editing, RT
1509 defaults to a 2 column list.  If you set this to 1, it will instead
1510 display the Custom Fields in a single column.
1511
1512 =cut
1513
1514 Set($EditCustomFieldsSingleColumn, 0);
1515
1516 =item C<$ShowUnreadMessageNotifications>
1517
1518 If set to 1, RT will prompt users when there are new,
1519 unread messages on tickets they are viewing.
1520
1521 =cut
1522
1523 Set($ShowUnreadMessageNotifications, 0);
1524
1525 =item C<$AutocompleteOwners>
1526
1527 If set to 1, the owner drop-downs for ticket update/modify and the query
1528 builder are replaced by text fields that autocomplete.  This can
1529 alleviate the sometimes huge owner list for installations where many
1530 users have the OwnTicket right.
1531
1532 Autocompleter is automatically turned on if list contains more than
1533 50 users, but penalty of executing potentially slow query is still paid.
1534
1535 Drop down doesn't show unprivileged users. If your setup allows unprivileged
1536 to own ticket then you have to enable autocompleting.
1537
1538 =cut
1539
1540 Set($AutocompleteOwners, 0);
1541
1542 =item C<$AutocompleteOwnersForSearch>
1543
1544 If set to 1, the owner drop-downs for the query builder are always
1545 replaced by text field that autocomplete and C<$AutocompleteOwners>
1546 is ignored. Helpful when owners list is huge in the query builder.
1547
1548 =cut
1549
1550 Set($AutocompleteOwnersForSearch, 0);
1551
1552 =item C<$UserSearchFields>
1553
1554 Used by the User Autocompleter as well as the User Search.
1555
1556 Specifies which fields of L<RT::User> to match against and how to match
1557 each field when autocompleting users.  Valid match methods are LIKE,
1558 STARTSWITH, ENDSWITH, =, and !=.  Valid search fields are the core User
1559 fields, as well as custom fields, which are specified as "CF.1234" or
1560 "CF.Name"
1561
1562 =cut
1563
1564 Set($UserSearchFields, {
1565     EmailAddress => 'STARTSWITH',
1566     Name         => 'STARTSWITH',
1567     RealName     => 'LIKE',
1568 });
1569
1570 =item C<$AllowUserAutocompleteForUnprivileged>
1571
1572 Should unprivileged users (users of SelfService) be allowed to
1573 autocomplete users. Setting this option to 1 means unprivileged users
1574 will be able to search all your users.
1575
1576 =cut
1577
1578 Set($AllowUserAutocompleteForUnprivileged, 0);
1579
1580 =item C<$TicketAutocompleteFields>
1581
1582 Specifies which fields of L<RT::Ticket> to match against and how to match each
1583 field when autocompleting users.  Valid match methods are LIKE, STARTSWITH,
1584 ENDSWITH, C<=>, and C<!=>.
1585
1586 Not all Ticket fields are publically accessible and hence won't work for
1587 autocomplete unless you override their accessibility using a local overlay or a
1588 plugin.  Out of the box the following fields are public: id, Subject.
1589
1590 =cut
1591
1592 Set( $TicketAutocompleteFields, {
1593     id      => 'STARTSWITH',
1594     Subject => 'LIKE',
1595 });
1596
1597 =item C<$DisplayTicketAfterQuickCreate>
1598
1599 Enable this to redirect to the created ticket display page
1600 automatically when using QuickCreate.
1601
1602 =cut
1603
1604 Set($DisplayTicketAfterQuickCreate, 0);
1605
1606 =item C<$WikiImplicitLinks>
1607
1608 Support implicit links in WikiText custom fields?  Setting this to 1
1609 causes InterCapped or ALLCAPS words in WikiText fields to automatically
1610 become links to searches for those words.  If used on Articles, it links
1611 to the Article with that name.
1612
1613 =cut
1614
1615 Set($WikiImplicitLinks, 0);
1616
1617 =item C<$PreviewScripMessages>
1618
1619 Set C<$PreviewScripMessages> to 1 if the scrips preview on the ticket
1620 reply page should include the content of the messages to be sent.
1621
1622 =cut
1623
1624 Set($PreviewScripMessages, 0);
1625
1626 =item C<$SimplifiedRecipients>
1627
1628 If C<$SimplifiedRecipients> is set, a simple list of who will receive
1629 B<any> kind of mail will be shown on the ticket reply page, instead of a
1630 detailed breakdown by scrip.
1631
1632 =cut
1633
1634 Set($SimplifiedRecipients, 0);
1635
1636 =item C<$HideResolveActionsWithDependencies>
1637
1638 If set to 1, this option will skip ticket menu actions which can't be
1639 completed successfully because of outstanding active Depends On tickets.
1640
1641 By default, all ticket actions are displayed in the menu even if some of
1642 them can't be successful until all Depends On links are resolved or
1643 transitioned to another inactive status.
1644
1645 =cut
1646
1647 Set($HideResolveActionsWithDependencies, 0);
1648
1649 =back
1650
1651
1652
1653 =head2 Articles
1654
1655 =over 4
1656
1657 =item C<$ArticleOnTicketCreate>
1658
1659 Set this to 1 to display the Articles interface on the Ticket Create
1660 page in addition to the Reply/Comment page.
1661
1662 =cut
1663
1664 Set($ArticleOnTicketCreate, 0);
1665
1666 =item C<$HideArticleSearchOnReplyCreate>
1667
1668 Set this to 1 to hide the search and include boxes from the Article
1669 UI.  This assumes you have enabled Article Hotlist feature, otherwise
1670 you will have no access to Articles.
1671
1672 =cut
1673
1674 Set($HideArticleSearchOnReplyCreate, 0);
1675
1676 =back
1677
1678
1679
1680 =head2 Message box properties
1681
1682 =over 4
1683
1684 =item C<$MessageBoxWidth>, C<$MessageBoxHeight>
1685
1686 For message boxes, set the entry box width, height and what type of
1687 wrapping to use.  These options can be overridden by users in their
1688 preferences.
1689
1690 When the width is set to undef, no column count is specified and the
1691 message box will take up 100% of the available width.  Combining this
1692 with HARD messagebox wrapping (below) is not recommended, as it will
1693 lead to inconsistent width in transactions between browsers.
1694
1695 These settings only apply to the non-RichText message box.  See below
1696 for Rich Text settings.
1697
1698 =cut
1699
1700 Set($MessageBoxWidth, undef);
1701 Set($MessageBoxHeight, 15);
1702
1703 =item C<$MessageBoxRichText>
1704
1705 Should "rich text" editing be enabled? This option lets your users
1706 send HTML email messages from the web interface.
1707
1708 =cut
1709
1710 Set($MessageBoxRichText, 1);
1711
1712 =item C<$MessageBoxRichTextHeight>
1713
1714 Height of rich text JavaScript enabled editing boxes (in pixels)
1715
1716 =cut
1717
1718 Set($MessageBoxRichTextHeight, 200);
1719
1720 =item C<$MessageBoxIncludeSignature>
1721
1722 Should your users' signatures (from their Preferences page) be
1723 included in Comments and Replies.
1724
1725 =cut
1726
1727 Set($MessageBoxIncludeSignature, 1);
1728
1729 =item C<$MessageBoxIncludeSignatureOnComment>
1730
1731 Should your users' signatures (from their Preferences page) be
1732 included in Comments. Setting this to 0 overrides
1733 C<$MessageBoxIncludeSignature>.
1734
1735 =cut
1736
1737 Set($MessageBoxIncludeSignatureOnComment, 1);
1738
1739 =back
1740
1741
1742 =head2 Transaction display
1743
1744 =over 4
1745
1746 =item C<$OldestTransactionsFirst>
1747
1748 By default, RT shows newest transactions at the bottom of the ticket
1749 history page, if you want see them at the top set this to 0.  This
1750 option can be overridden by users in their preferences.
1751
1752 =cut
1753
1754 Set($OldestTransactionsFirst, 1);
1755
1756 =item C<$ShowHistory>
1757
1758 This option controls how history is shown on the ticket display page.  It
1759 accepts one of three possible modes and is overrideable on a per-user
1760 preference level.  If you regularly deal with long tickets and don't care much
1761 about the history, you may wish to change this option to C<click>.
1762
1763 =over
1764
1765 =item C<delay> (the default)
1766
1767 When set to C<delay>, history is loaded via javascript after the rest of the
1768 page has been loaded.  This speeds up apparent page load times and generally
1769 provides a smoother experience.  You may notice slight delays before the ticket
1770 history appears on very long tickets.
1771
1772 =item C<click>
1773
1774 When set to C<click>, history is loaded on demand when a placeholder link is
1775 clicked.  This speeds up ticket display page loads and history is never loaded
1776 if not requested.
1777
1778 =item C<always>
1779
1780 When set to C<always>, history is loaded before showing the page.  This ensures
1781 history is always available immediately, but at the expense of longer page load
1782 times.  This behaviour was the default in RT 4.0.
1783
1784 =back
1785
1786 =cut
1787
1788 Set($ShowHistory, 'delay');
1789
1790 =item C<$ShowBccHeader>
1791
1792 By default, RT hides from the web UI information about blind copies
1793 user sent on reply or comment.
1794
1795 =cut
1796
1797 Set($ShowBccHeader, 0);
1798
1799 =item C<$TrustHTMLAttachments>
1800
1801 If C<TrustHTMLAttachments> is not defined, we will display them as
1802 text. This prevents malicious HTML and JavaScript from being sent in a
1803 request (although there is probably more to it than that)
1804
1805 =cut
1806
1807 Set($TrustHTMLAttachments, undef);
1808
1809 =item C<$AlwaysDownloadAttachments>
1810
1811 Always download attachments, regardless of content type. If set, this
1812 overrides C<TrustHTMLAttachments>.
1813
1814 =cut
1815
1816 Set($AlwaysDownloadAttachments, undef);
1817
1818 =item C<$PreferRichText>
1819
1820 By default, RT shows rich text (HTML) messages if possible.  If
1821 C<$PreferRichText> is set to 0, RT will show plain text messages in
1822 preference to any rich text alternatives.
1823
1824 As a security precaution, RT limits the HTML that is displayed to a
1825 known-good subset -- as allowing arbitrary HTML to be displayed exposes
1826 multiple vectors for XSS and phishing attacks.  If
1827 L</$TrustHTMLAttachments> is enabled, the original HTML is available for
1828 viewing via the "Download" link.
1829
1830 If the optional L<HTML::Gumbo> dependency is installed, RT will leverage
1831 this to allow a broader set of HTML through, including tables.
1832
1833 =cut
1834
1835 Set($PreferRichText, 1);
1836
1837 =item C<$MaxInlineBody>
1838
1839 C<$MaxInlineBody> is the maximum attachment size that we want to see
1840 inline when viewing a transaction.  RT will inline any text if the
1841 value is undefined or 0.  This option can be overridden by users in
1842 their preferences.
1843
1844 =cut
1845
1846 Set($MaxInlineBody, 12000);
1847
1848 =item C<$ShowTransactionImages>
1849
1850 By default, RT shows images attached to incoming (and outgoing) ticket
1851 updates inline. Set this variable to 0 if you'd like to disable that
1852 behavior.
1853
1854 =cut
1855
1856 Set($ShowTransactionImages, 1);
1857
1858 =item C<$ShowRemoteImages>
1859
1860 By default, RT doesn't show remote images attached to incoming (and outgoing)
1861 ticket updates inline.  Set this variable to 1 if you'd like to enable remote
1862 image display.  Showing remote images may allow spammers and other senders to
1863 track when messages are viewed and see referer information.
1864
1865 Note that this setting is independent of L</$ShowTransactionImages> above.
1866
1867 =cut
1868
1869 Set($ShowRemoteImages, 0);
1870
1871 =item C<$PlainTextMono>
1872
1873 Normally plaintext attachments are displayed as HTML with line breaks
1874 preserved.  This causes space- and tab-based formatting not to be
1875 displayed correctly.  Set C<$PlainTextMono> to 1 to use a monospaced
1876 font and preserve formatting.
1877
1878 =cut
1879
1880 Set($PlainTextMono, 0);
1881
1882 =item C<$SuppressInlineTextFiles>
1883
1884 If C<$SuppressInlineTextFiles> is set to 1, then uploaded text files
1885 (text-type attachments with file names) are prevented from being
1886 displayed in-line when viewing a ticket's history.
1887
1888 =cut
1889
1890 Set($SuppressInlineTextFiles, undef);
1891
1892
1893 =item C<@Active_MakeClicky>
1894
1895 MakeClicky detects various formats of data in headers and email
1896 messages, and extends them with supporting links.  By default, RT
1897 provides two formats:
1898
1899 * 'httpurl': detects http:// and https:// URLs and adds '[Open URL]'
1900   link after the URL.
1901
1902 * 'httpurl_overwrite': also detects URLs as 'httpurl' format, but
1903   replaces the URL with a link.  Enabled by default.
1904
1905 See F<share/html/Elements/MakeClicky> for documentation on how to add
1906 your own styles of link detection.
1907
1908 =cut
1909
1910 Set(@Active_MakeClicky, qw(httpurl_overwrite));
1911
1912 =item C<$QuoteFolding>
1913
1914 Quote folding is the hiding of old replies in transaction history.
1915 It defaults to on.  Set this to 0 to disable it.
1916
1917 =cut
1918
1919 Set($QuoteFolding, 1);
1920
1921 =item C<$AllowLoginPasswordAutoComplete>
1922
1923 Allow browsers to remember the user's password on login (in case the
1924 browser can do so, and has the appropriate setting enabled). Default
1925 is 0.
1926
1927 =cut
1928
1929 Set($AllowLoginPasswordAutoComplete, 0);
1930
1931 =back
1932
1933
1934 =head1 Application logic
1935
1936 =over 4
1937
1938 =item C<$ParseNewMessageForTicketCcs>
1939
1940 If C<$ParseNewMessageForTicketCcs> is set to 1, RT will attempt to
1941 divine Ticket 'Cc' watchers from the To and Cc lines of incoming
1942 messages that create new Tickets. This option does not apply to replies
1943 or comments on existing Tickets. Be forewarned that if you have I<any>
1944 addresses which forward mail to RT automatically and you enable this
1945 option without modifying C<$RTAddressRegexp> below, you will get
1946 yourself into a heap of trouble.
1947
1948 =cut
1949
1950 Set($ParseNewMessageForTicketCcs, undef);
1951
1952 =item C<$UseTransactionBatch>
1953
1954 Set C<$UseTransactionBatch> to 1 to execute transactions in batches,
1955 such that a resolve and comment (for example) would happen
1956 simultaneously, instead of as two transactions, unaware of each
1957 others' existence.
1958
1959 =cut
1960
1961 Set($UseTransactionBatch, 1);
1962
1963 =item C<$StrictLinkACL>
1964
1965 When this feature is enabled a user needs I<ModifyTicket> rights on
1966 both tickets to link them together; otherwise, I<ModifyTicket> rights
1967 on either of them is sufficient.
1968
1969 =cut
1970
1971 Set($StrictLinkACL, 1);
1972
1973 =item C<$RedistributeAutoGeneratedMessages>
1974
1975 Should RT redistribute correspondence that it identifies as machine
1976 generated?  A 1 will do so; setting this to 0 will cause no
1977 such messages to be redistributed.  You can also use 'privileged' (the
1978 default), which will redistribute only to privileged users. This helps
1979 to protect against malformed bounces and loops caused by auto-created
1980 requestors with bogus addresses.
1981
1982 =cut
1983
1984 Set($RedistributeAutoGeneratedMessages, "privileged");
1985
1986 =item C<$ApprovalRejectionNotes>
1987
1988 Should rejection notes from approvals be sent to the requestors?
1989
1990 =cut
1991
1992 Set($ApprovalRejectionNotes, 1);
1993
1994 =item C<$ForceApprovalsView>
1995
1996 Should approval tickets only be viewed and modified through the standard
1997 approval interface?  With this setting enabled (by default), any attempt to use
1998 the normal ticket display and modify page for approval tickets will be
1999 redirected.
2000
2001 For example, with this option set to 1 and an approval ticket #123:
2002
2003     /Ticket/Display.html?id=123
2004
2005 is redirected to
2006
2007     /Approval/Display.html?id=123
2008
2009 With this option set to 0, the redirect won't happen.
2010
2011 =back
2012
2013 =cut
2014
2015 Set($ForceApprovalsView, 1);
2016
2017 =head1 Extra security
2018
2019 This is a list of extra security measures to enable that help keep your RT
2020 safe.  If you don't know what these mean, you should almost certainly leave the
2021 defaults alone.
2022
2023 =over 4
2024
2025 =item C<$DisallowExecuteCode>
2026
2027 If set to 1, the C<ExecuteCode> right will be removed from
2028 all users, B<including> the superuser.  This is intended for when RT is
2029 installed into a shared environment where even the superuser should not
2030 be allowed to run arbitrary Perl code on the server via scrips.
2031
2032 =cut
2033
2034 Set($DisallowExecuteCode, 0);
2035
2036 =item C<$Framebusting>
2037
2038 If set to 0, framekiller javascript will be disabled and the
2039 X-Frame-Options: DENY header will be suppressed from all responses.
2040 This disables RT's clickjacking protection.
2041
2042 =cut
2043
2044 Set($Framebusting, 1);
2045
2046 =item C<$RestrictReferrer>
2047
2048 If set to 0, the HTTP C<Referer> (sic) header will not be
2049 checked to ensure that requests come from RT's own domain.  As RT allows
2050 for GET requests to alter state, disabling this opens RT up to
2051 cross-site request forgery (CSRF) attacks.
2052
2053 =cut
2054
2055 Set($RestrictReferrer, 1);
2056
2057 =item C<$RestrictLoginReferrer>
2058
2059 If set to 0, RT will allow the user to log in from any link
2060 or request, merely by passing in C<user> and C<pass> parameters; setting
2061 it to 1 forces all logins to come from the login box, so the
2062 user is aware that they are being logged in.  The default is off, for
2063 backwards compatability.
2064
2065 =cut
2066
2067 Set($RestrictLoginReferrer, 0);
2068
2069 =item C<@ReferrerWhitelist>
2070
2071 This is a list of hostname:port combinations that RT will treat as being
2072 part of RT's domain. This is particularly useful if you access RT as
2073 multiple hostnames or have an external auth system that needs to
2074 redirect back to RT once authentication is complete.
2075
2076  Set(@ReferrerWhitelist, qw(www.example.com:443  www3.example.com:80));
2077
2078 If the "RT has detected a possible cross-site request forgery" error is triggered
2079 by a host:port sent by your browser that you believe should be valid, you can copy
2080 the host:port from the error message into this list.
2081
2082 Simple wildcards, similar to SSL certificates, are allowed.  For example:
2083
2084     *.example.com:80    # matches foo.example.com
2085                         # but not example.com
2086                         #      or foo.bar.example.com
2087
2088     www*.example.com:80 # matches www3.example.com
2089                         #     and www-test.example.com
2090                         #     and www.example.com
2091
2092 =cut
2093
2094 Set(@ReferrerWhitelist, qw());
2095
2096
2097 =item C<$BcryptCost>
2098
2099 This sets the default cost parameter used for the C<bcrypt> key
2100 derivation function.  Valid values range from 4 to 31, inclusive, with
2101 higher numbers denoting greater effort.
2102
2103 =cut
2104
2105 Set($BcryptCost, 10);
2106
2107 =back
2108
2109
2110
2111 =head1 Authorization and user configuration
2112
2113 =over 4
2114
2115 =item C<$WebRemoteUserAuth>
2116
2117 If C<$WebRemoteUserAuth> is defined, RT will defer to the environment's
2118 REMOTE_USER variable, which should be set by the webserver's
2119 authentication layer.
2120
2121 =cut
2122
2123 Set($WebRemoteUserAuth, undef);
2124
2125 =item C<$WebRemoteUserContinuous>
2126
2127 If C<$WebRemoteUserContinuous> is defined, RT will check for the
2128 REMOTE_USER on each access.  If you would prefer this to only happen
2129 once (at initial login) set this to 0.  The default
2130 setting will help ensure that if your webserver's authentication layer
2131 deauthenticates a user, RT notices as soon as possible.
2132
2133 =cut
2134
2135 Set($WebRemoteUserContinuous, 1);
2136
2137 =item C<$WebFallbackToRTLogin>
2138
2139 If C<$WebFallbackToRTLogin> is defined, the user is allowed a
2140 chance of fallback to the login screen, even if REMOTE_USER failed.
2141
2142 =cut
2143
2144 Set($WebFallbackToRTLogin, undef);
2145
2146 =item C<$WebRemoteUserGecos>
2147
2148 C<$WebRemoteUserGecos> means to match 'gecos' field as the user
2149 identity; useful with C<mod_auth_external>.
2150
2151 =cut
2152
2153 Set($WebRemoteUserGecos, undef);
2154
2155 =item C<$WebRemoteUserAutocreate>
2156
2157 C<$WebRemoteUserAutocreate> will create users under the same name as
2158 REMOTE_USER upon login, if they are missing from the Users table.
2159
2160 =cut
2161
2162 Set($WebRemoteUserAutocreate, undef);
2163
2164 =item C<$UserAutocreateDefaultsOnLogin>
2165
2166 If C<$WebRemoteUserAutocreate> is set to 1, C<$UserAutocreateDefaultsOnLogin>
2167 will be passed to L<RT::User/Create>.  Use it to set defaults, such as
2168 creating unprivileged users with C<<{ Privileged => 0 }>>.  This must be
2169 a hashref.
2170
2171 =cut
2172
2173 Set($UserAutocreateDefaultsOnLogin, undef);
2174
2175 =item C<$WebSessionClass>
2176
2177 C<$WebSessionClass> is the class you wish to use for storing sessions.  On
2178 MySQL, Pg, and Oracle it defaults to using your database, in other cases
2179 sessions are stored in files using L<Apache::Session::File>. Other installed
2180 Apache::Session::* modules can be used to store sessions.
2181
2182     Set($WebSessionClass, "Apache::Session::File");
2183
2184 =cut
2185
2186 Set($WebSessionClass, undef);
2187
2188 =item C<%WebSessionProperties>
2189
2190 C<%WebSessionProperties> is the hash to configure class L</$WebSessionClass>
2191 in case custom class is used. By default it's empty and values are picked
2192 depending on the class. Make sure that it's empty if you're using DB as session
2193 backend.
2194
2195 =cut
2196
2197 Set( %WebSessionProperties );
2198
2199 =item C<$AutoLogoff>
2200
2201 By default, RT's user sessions persist until a user closes his or her
2202 browser. With the C<$AutoLogoff> option you can setup session lifetime
2203 in minutes. A user will be logged out if he or she doesn't send any
2204 requests to RT for the defined time.
2205
2206 =cut
2207
2208 Set($AutoLogoff, 0);
2209
2210 =item C<$LogoutRefresh>
2211
2212 The number of seconds to wait after logout before sending the user to
2213 the login page. By default, 1 second, though you may want to increase
2214 this if you display additional information on the logout page.
2215
2216 =cut
2217
2218 Set($LogoutRefresh, 1);
2219
2220 =item C<$WebSecureCookies>
2221
2222 By default, RT's session cookie isn't marked as "secure". Some web
2223 browsers will treat secure cookies more carefully than non-secure
2224 ones, being careful not to write them to disk, only sending them over
2225 an SSL secured connection, and so on. To enable this behavior, set
2226 C<$WebSecureCookies> to 1.  NOTE: You probably don't want to turn this
2227 on I<unless> users are only connecting via SSL encrypted HTTPS
2228 connections.
2229
2230 =cut
2231
2232 Set($WebSecureCookies, 0);
2233
2234 =item C<$WebHttpOnlyCookies>
2235
2236 Default RT's session cookie to not being directly accessible to
2237 javascript.  The content is still sent during regular and AJAX requests,
2238 and other cookies are unaffected, but the session-id is less
2239 programmatically accessible to javascript.  Turning this off should only
2240 be necessary in situations with odd client-side authentication
2241 requirements.
2242
2243 =cut
2244
2245 Set($WebHttpOnlyCookies, 1);
2246
2247 =item C<$MinimumPasswordLength>
2248
2249 C<$MinimumPasswordLength> defines the minimum length for user
2250 passwords. Setting it to 0 disables this check.
2251
2252 =cut
2253
2254 Set($MinimumPasswordLength, 5);
2255
2256 =back
2257
2258
2259 =head1 Internationalization
2260
2261 =over 4
2262
2263 =item C<@LexiconLanguages>
2264
2265 An array that contains languages supported by RT's
2266 internationalization interface.  Defaults to all *.po lexicons;
2267 setting it to C<qw(en ja)> will make RT bilingual instead of
2268 multilingual, but will save some memory.
2269
2270 =cut
2271
2272 Set(@LexiconLanguages, qw(*));
2273
2274 =item C<@EmailInputEncodings>
2275
2276 An array that contains default encodings used to guess which charset
2277 an attachment uses, if it does not specify one explicitly.  All
2278 options must be recognized by L<Encode::Guess>.  The first element may
2279 also be '*', which enables encoding detection using
2280 L<Encode::Detect::Detector>, if installed.
2281
2282 =cut
2283
2284 Set(@EmailInputEncodings, qw(utf-8 iso-8859-1 us-ascii));
2285
2286 =item C<$EmailOutputEncoding>
2287
2288 The charset for localized email.  Must be recognized by Encode.
2289
2290 =cut
2291
2292 Set($EmailOutputEncoding, "utf-8");
2293
2294 =back
2295
2296
2297
2298
2299
2300
2301
2302 =head1 Date and time handling
2303
2304 =over 4
2305
2306 =item C<$DateTimeFormat>
2307
2308 You can choose date and time format.  See the "Output formatters"
2309 section in perldoc F<lib/RT/Date.pm> for more options.  This option
2310 can be overridden by users in their preferences.
2311
2312 Some examples:
2313
2314 C<Set($DateTimeFormat, "LocalizedDateTime");>
2315 C<Set($DateTimeFormat, { Format => "ISO", Seconds => 0 });>
2316 C<Set($DateTimeFormat, "RFC2822");>
2317 C<Set($DateTimeFormat, { Format => "RFC2822", Seconds => 0, DayOfWeek => 0 });>
2318
2319 =cut
2320
2321 Set($DateTimeFormat, "DefaultFormat");
2322
2323 # Next two options are for Time::ParseDate
2324
2325 =item C<$DateDayBeforeMonth>
2326
2327 Set this to 1 if your local date convention looks like "dd/mm/yy"
2328 instead of "mm/dd/yy". Used only for parsing, not for displaying
2329 dates.
2330
2331 =cut
2332
2333 Set($DateDayBeforeMonth, 1);
2334
2335 =item C<$AmbiguousDayInPast>, C<$AmbiguousDayInFuture>
2336
2337 Should an unspecified day or year in a date refer to a future or a
2338 past value? For example, should a date of "Tuesday" default to mean
2339 the date for next Tuesday or last Tuesday? Should the date "March 1"
2340 default to the date for next March or last March?
2341
2342 Set C<$AmbiguousDayInPast> for the last date, or
2343 C<$AmbiguousDayInFuture> for the next date; the default is usually
2344 correct.  If both are set, C<$AmbiguousDayInPast> takes precedence.
2345
2346 =cut
2347
2348 Set($AmbiguousDayInPast, 0);
2349 Set($AmbiguousDayInFuture, 0);
2350
2351 =item C<$DefaultTimeUnitsToHours>
2352
2353 Use this to set the default units for time entry to hours instead of
2354 minutes.  Note that this only effects entry, not display.
2355
2356 =cut
2357
2358 Set($DefaultTimeUnitsToHours, 0);
2359
2360 =item C<$SimpleSearchIncludeResolved>
2361
2362 By default, the simple ticket search in the top bar excludes "resolved" tickets
2363 unless a status argument is specified.  Set this to a true value to include 
2364 them.
2365
2366 =cut
2367
2368 Set($SimpleSearchIncludeResolved, 0);
2369
2370 =item C<$TimeInICal>
2371
2372 By default, events in the iCal feed on the ticket search page
2373 contain only dates, making them all day calendar events. Set
2374 C<$TimeInICal> if you have start or due dates on tickets that
2375 have significant time values and you want those times to be
2376 included in the events in the iCal feed.
2377
2378 This option can also be set as an individual user preference.
2379
2380 =cut
2381
2382 Set($TimeInICal, 0);
2383
2384 =back
2385
2386
2387
2388 =head1 Cryptography
2389
2390 A complete description of RT's cryptography capabilities can be found in
2391 L<RT::Crypt>. At this moment, GnuPG (PGP) and SMIME security protocols are
2392 supported.
2393
2394 =over 4
2395
2396 =item C<%Crypt>
2397
2398 The following options apply to all cryptography protocols.
2399
2400 By default, all enabled security protocols will analyze each incoming
2401 email. You may set C<Incoming> to a subset of this list, if some enabled
2402 protocols do not apply to incoming mail; however, this is usually
2403 unnecessary. Note that for any verification or decryption to occur for
2404 incoming mail, the C<Auth::Crypt> mail plugin must be added to
2405 L</@MailPlugins> as specified in L<RT::Crypt/Handling incoming messages>.
2406
2407 For outgoing emails, the first security protocol from the above list is
2408 used. Use the C<Outgoing> option to set a security protocol that should
2409 be used in outgoing emails.  At this moment, only one protocol can be
2410 used to protect outgoing emails.
2411
2412 Set C<RejectOnUnencrypted> to 1 if all incoming email must be
2413 properly encrypted.  All unencrypted emails will be rejected by RT.
2414
2415 Set C<RejectOnMissingPrivateKey> to 0 if you don't want to reject
2416 emails encrypted for key RT doesn't have and can not decrypt.
2417
2418 Set C<RejectOnBadData> to 0 if you don't want to reject letters
2419 with incorrect data.
2420
2421 If you want to allow people to encrypt attachments inside the DB then
2422 set C<AllowEncryptDataInDB> to 1.
2423
2424 Set C<Dashboards> to a hash with Encrypt and Sign keys to control
2425 whether dashboards should be encrypted and/or signed correspondingly.
2426 By default they are not encrypted or signed.
2427
2428 =back
2429
2430 =cut
2431
2432 Set( %Crypt,
2433     Incoming                  => undef, # ['GnuPG', 'SMIME']
2434     Outgoing                  => undef, # 'SMIME'
2435
2436     RejectOnUnencrypted       => 0,
2437     RejectOnMissingPrivateKey => 1,
2438     RejectOnBadData           => 1,
2439
2440     AllowEncryptDataInDB      => 0,
2441
2442     Dashboards => {
2443         Encrypt => 0,
2444         Sign    => 0,
2445     },
2446 );
2447
2448 =head2 SMIME configuration
2449
2450 A full description of the SMIME integration can be found in
2451 L<RT::Crypt::SMIME>.
2452
2453 =over 4
2454
2455 =item C<%SMIME>
2456
2457 Set C<Enable> to 0 or 1 to disable or enable SMIME for
2458 encrypting and signing messages.
2459
2460 Set C<OpenSSL> to path to F<openssl> executable.
2461
2462 Set C<Keyring> to directory with key files.  Key and certificates should
2463 be stored in a PEM file in this directory named named, e.g.,
2464 F<email.address@example.com.pem>.
2465
2466 Set C<CAPath> to either a PEM-formatted certificate of a single signing
2467 certificate authority, or a directory of such (including hash symlinks
2468 as created by the openssl tool C<c_rehash>).  Only SMIME certificates
2469 signed by these certificate authorities will be treated as valid
2470 signatures.  If left unset (and C<AcceptUntrustedCAs> is unset, as it is
2471 by default), no signatures will be marked as valid!
2472
2473 Set C<AcceptUntrustedCAs> to allow arbitrary SMIME certificates, no
2474 matter their signing entities.  Such mails will be marked as untrusted,
2475 but signed; C<CAPath> will be used to mark which mails are signed by
2476 trusted certificate authorities.  This configuration is generally
2477 insecure, as it allows the possibility of accepting forged mail signed
2478 by an untrusted certificate authority.
2479
2480 Setting C<AcceptUntrustedCAs> also allows encryption to users with
2481 certificates created by untrusted CAs.
2482
2483 Set C<Passphrase> to a scalar (to use for all keys), an anonymous
2484 function, or a hash (to look up by address).  If the hash is used, the
2485 '' key is used as a default.
2486
2487 See L<RT::Crypt::SMIME> for details.
2488
2489 =back
2490
2491 =cut
2492
2493 Set( %SMIME,
2494     Enable => @RT_SMIME@,
2495     OpenSSL => 'openssl',
2496     Keyring => q{@RT_VAR_PATH@/data/smime},
2497     CAPath => undef,
2498     AcceptUntrustedCAs => undef,
2499     Passphrase => undef,
2500 );
2501
2502 =head2 GnuPG configuration
2503
2504 A full description of the (somewhat extensive) GnuPG integration can
2505 be found by running the command `perldoc L<RT::Crypt::GnuPG>` (or
2506 `perldoc lib/RT/Crypt/GnuPG.pm` from your RT install directory).
2507
2508 =over 4
2509
2510 =item C<%GnuPG>
2511
2512 Set C<Enable> to 0 or 1 to disable or enable GnuPG interfaces
2513 for encrypting and signing outgoing messages.
2514
2515 Set C<GnuPG> to the name or path of the gpg binary to use.
2516
2517 Set C<Passphrase> to a scalar (to use for all keys), an anonymous
2518 function, or a hash (to look up by address).  If the hash is used, the
2519 '' key is used as a default.
2520
2521 Set C<OutgoingMessagesFormat> to 'inline' to use inline encryption and
2522 signatures instead of 'RFC' (GPG/MIME: RFC3156 and RFC1847) format.
2523
2524 =cut
2525
2526 Set(%GnuPG,
2527     Enable                 => @RT_GPG@,
2528     GnuPG                  => 'gpg',
2529     Passphrase             => undef,
2530     OutgoingMessagesFormat => "RFC", # Inline
2531 );
2532
2533 =item C<%GnuPGOptions>
2534
2535 Options to pass to the GnuPG program.
2536
2537 If you override this in your RT_SiteConfig, you should be sure to
2538 include a homedir setting.
2539
2540 Note that options with '-' character MUST be quoted.
2541
2542 =cut
2543
2544 Set(%GnuPGOptions,
2545     homedir => q{@RT_VAR_PATH@/data/gpg},
2546
2547 # URL of a keyserver
2548 #    keyserver => 'hkp://subkeys.pgp.net',
2549
2550 # enables the automatic retrieving of keys when verifying signatures
2551 #    'keyserver-options' => 'auto-key-retrieve',
2552 );
2553
2554 =back
2555
2556
2557
2558 =head1 Lifecycles
2559
2560 =head2 Lifecycle definitions
2561
2562 Each lifecycle is a list of possible statuses split into three logic
2563 sets: B<initial>, B<active> and B<inactive>. Each status in a
2564 lifecycle must be unique. (Statuses may not be repeated across sets.)
2565 Each set may have any number of statuses.
2566
2567 For example:
2568
2569     default => {
2570         initial  => ['new'],
2571         active   => ['open', 'stalled'],
2572         inactive => ['resolved', 'rejected', 'deleted'],
2573         ...
2574     },
2575
2576 Status names can be from 1 to 64 ASCII characters.  Statuses are
2577 localized using RT's standard internationalization and localization
2578 system.
2579
2580 =over 4
2581
2582 =item initial
2583
2584 You can define multiple B<initial> statuses for tickets in a given
2585 lifecycle.
2586
2587 RT will automatically set its B<Started> date when you change a
2588 ticket's status from an B<initial> state to an B<active> or
2589 B<inactive> status.
2590
2591 =item active
2592
2593 B<Active> tickets are "currently in play" - they're things that are
2594 being worked on and not yet complete.
2595
2596 =item inactive
2597
2598 B<Inactive> tickets are typically in their "final resting state".
2599
2600 While you're free to implement a workflow that ignores that
2601 description, typically once a ticket enters an inactive state, it will
2602 never again enter an active state.
2603
2604 RT will automatically set the B<Resolved> date when a ticket's status
2605 is changed from an B<Initial> or B<Active> status to an B<Inactive>
2606 status.
2607
2608 B<deleted> is still a special status and protected by the
2609 B<DeleteTicket> right, unless you re-defined rights (read below). If
2610 you don't want to allow ticket deletion at any time simply don't
2611 include it in your lifecycle.
2612
2613 =back
2614
2615 Statuses in each set are ordered and listed in the UI in the defined
2616 order.
2617
2618 Changes between statuses are constrained by transition rules, as
2619 described below.
2620
2621 =head2 Default values
2622
2623 In some cases a default value is used to display in UI or in API when
2624 value is not provided. You can configure defaults using the following
2625 syntax:
2626
2627     default => {
2628         ...
2629         defaults => {
2630             on_create => 'new',
2631             on_resolve => 'resolved',
2632             ...
2633         },
2634     },
2635
2636 The following defaults are used.
2637
2638 =over 4
2639
2640 =item on_create
2641
2642 If you (or your code) doesn't specify a status when creating a ticket,
2643 RT will use the this status. See also L</Statuses available during
2644 ticket creation>.
2645
2646 =item on_merge
2647
2648 When tickets are merged, the status of the ticket that was merged
2649 away is forced to this value.  It should be one of inactive statuses;
2650 'resolved' or its equivalent is most probably the best candidate.
2651
2652 =item approved
2653
2654 When an approval is accepted, the status of depending tickets will
2655 be changed to this value.
2656
2657 =item denied
2658
2659 When an approval is denied, the status of depending tickets will
2660 be changed to this value.
2661
2662 =item reminder_on_open
2663
2664 When a reminder is opened, the status will be changed to this value.
2665
2666 =item reminder_on_resolve
2667
2668 When a reminder is resolved, the status will be changed to this value.
2669
2670 =back
2671
2672 =head2 Transitions between statuses and UI actions
2673
2674 A B<Transition> is a change of status from A to B. You should define
2675 all possible transitions in each lifecycle using the following format:
2676
2677     default => {
2678         ...
2679         transitions => {
2680             ''       => [qw(new open resolved)],
2681             new      => [qw(open resolved rejected deleted)],
2682             open     => [qw(stalled resolved rejected deleted)],
2683             stalled  => [qw(open)],
2684             resolved => [qw(open)],
2685             rejected => [qw(open)],
2686             deleted  => [qw(open)],
2687         },
2688         ...
2689     },
2690
2691 The order of items in the listing for each transition line affects
2692 the order they appear in the drop-down. If you change the config
2693 for 'open' state listing to:
2694
2695     open     => [qw(stalled rejected deleted resolved)],
2696
2697 then the 'resolved' status will appear as the last item in the drop-down.
2698
2699 =head3 Statuses available during ticket creation
2700
2701 By default users can create tickets with a status of new,
2702 open, or resolved, but cannot create tickets with a status of
2703 rejected, stalled, or deleted. If you want to change the statuses
2704 available during creation, update the transition from '' (empty
2705 string), like in the example above.
2706
2707 =head3 Protecting status changes with rights
2708
2709 A transition or group of transitions can be protected by a specific
2710 right.  Additionally, you can name new right names, which will be added
2711 to the system to control that transition.  For example, if you wished to
2712 create a lesser right than ModifyTicket for rejecting tickets, you could
2713 write:
2714
2715     default => {
2716         ...
2717         rights => {
2718             '* -> deleted'  => 'DeleteTicket',
2719             '* -> rejected' => 'RejectTicket',
2720             '* -> *'        => 'ModifyTicket',
2721         },
2722         ...
2723     },
2724
2725 This would create a new C<RejectTicket> right in the system which you
2726 could assign to whatever groups you choose.
2727
2728 On the left hand side you can have the following variants:
2729
2730     '<from> -> <to>'
2731     '* -> <to>'
2732     '<from> -> *'
2733     '* -> *'
2734
2735 Valid transitions are listed in order of priority. If a user attempts
2736 to change a ticket's status from B<new> to B<open> then the lifecycle
2737 is checked for presence of an exact match, then for 'any to B<open>',
2738 'B<new> to any' and finally 'any to any'.
2739
2740 If you don't define any rights, or there is no match for a transition,
2741 RT will use the B<DeleteTicket> or B<ModifyTicket> as appropriate.
2742
2743 =head3 Labeling and defining actions
2744
2745 For each transition you can define an action that will be shown in the
2746 UI; each action annotated with a label and an update type.
2747
2748 Each action may provide a default update type, which can be
2749 B<Comment>, B<Respond>, or absent. For example, you may want your
2750 staff to write a reply to the end user when they change status from
2751 B<new> to B<open>, and thus set the update to B<Respond>.  Neither
2752 B<Comment> nor B<Respond> are mandatory, and user may leave the
2753 message empty, regardless of the update type.
2754
2755 This configuration can be used to accomplish what
2756 $ResolveDefaultUpdateType was used for in RT 3.8.
2757
2758 Use the following format to define labels and actions of transitions:
2759
2760     default => {
2761         ...
2762         actions => [
2763             'new -> open'     => { label => 'Open it', update => 'Respond' },
2764             'new -> resolved' => { label => 'Resolve', update => 'Comment' },
2765             'new -> rejected' => { label => 'Reject',  update => 'Respond' },
2766             'new -> deleted'  => { label => 'Delete' },
2767
2768             'open -> stalled'  => { label => 'Stall',   update => 'Comment' },
2769             'open -> resolved' => { label => 'Resolve', update => 'Comment' },
2770             'open -> rejected' => { label => 'Reject',  update => 'Respond' },
2771
2772             'stalled -> open'  => { label => 'Open it' },
2773             'resolved -> open' => { label => 'Re-open', update => 'Comment' },
2774             'rejected -> open' => { label => 'Re-open', update => 'Comment' },
2775             'deleted -> open'  => { label => 'Undelete' },
2776         ],
2777         ...
2778     },
2779
2780 In addition, you may define multiple actions for the same transition.
2781 Alternately, you may use '* -> x' to match more than one transition.
2782 For example:
2783
2784     default => {
2785         ...
2786         actions => [
2787             ...
2788             'new -> rejected' => { label => 'Reject', update => 'Respond' },
2789             'new -> rejected' => { label => 'Quick Reject' },
2790             ...
2791             '* -> deleted' => { label => 'Delete' },
2792             ...
2793         ],
2794         ...
2795     },
2796
2797 =head2 Moving tickets between queues with different lifecycles
2798
2799 Unless there is an explicit mapping between statuses in two different
2800 lifecycles, you can not move tickets between queues with these
2801 lifecycles -- even if both use the exact same set of statuses.
2802 Such a mapping is defined as follows:
2803
2804     __maps__ => {
2805         'from lifecycle -> to lifecycle' => {
2806             'status in left lifecycle' => 'status in right lifecycle',
2807             ...
2808         },
2809         ...
2810     },
2811
2812 =cut
2813
2814 Set(%Lifecycles,
2815     default => {
2816         initial         => [qw(new)], # loc_qw
2817         active          => [qw(open stalled)], # loc_qw
2818         inactive        => [qw(resolved rejected deleted)], # loc_qw
2819
2820         defaults => {
2821             on_create => 'new',
2822             on_merge  => 'resolved',
2823             approved  => 'open',
2824             denied    => 'rejected',
2825             reminder_on_open     => 'open',
2826             reminder_on_resolve  => 'resolved',
2827         },
2828
2829         transitions => {
2830             ""       => [qw(new open resolved)],
2831
2832             # from   => [ to list ],
2833             new      => [qw(    open stalled resolved rejected deleted)],
2834             open     => [qw(new      stalled resolved rejected deleted)],
2835             stalled  => [qw(new open         rejected resolved deleted)],
2836             resolved => [qw(new open stalled          rejected deleted)],
2837             rejected => [qw(new open stalled resolved          deleted)],
2838             deleted  => [qw(new open stalled rejected resolved        )],
2839         },
2840         rights => {
2841             '* -> deleted'  => 'DeleteTicket',
2842             '* -> *'        => 'ModifyTicket',
2843         },
2844         actions => [
2845             'new -> open'      => { label  => 'Open It', update => 'Respond' }, # loc{label}
2846             'new -> resolved'  => { label  => 'Resolve', update => 'Comment' }, # loc{label}
2847             'new -> rejected'  => { label  => 'Reject',  update => 'Respond' }, # loc{label}
2848             'new -> deleted'   => { label  => 'Delete',                      }, # loc{label}
2849             'open -> stalled'  => { label  => 'Stall',   update => 'Comment' }, # loc{label}
2850             'open -> resolved' => { label  => 'Resolve', update => 'Comment' }, # loc{label}
2851             'open -> rejected' => { label  => 'Reject',  update => 'Respond' }, # loc{label}
2852             'stalled -> open'  => { label  => 'Open It',                     }, # loc{label}
2853             'resolved -> open' => { label  => 'Re-open', update => 'Comment' }, # loc{label}
2854             'rejected -> open' => { label  => 'Re-open', update => 'Comment' }, # loc{label}
2855             'deleted -> open'  => { label  => 'Undelete',                    }, # loc{label}
2856         ],
2857     },
2858 # don't change lifecyle of the approvals, they are not capable to deal with
2859 # custom statuses
2860     approvals => {
2861         initial         => [ 'new' ],
2862         active          => [ 'open', 'stalled' ],
2863         inactive        => [ 'resolved', 'rejected', 'deleted' ],
2864
2865         defaults => {
2866             on_create => 'new',
2867             on_merge => 'resolved',
2868             reminder_on_open     => 'open',
2869             reminder_on_resolve  => 'resolved',
2870         },
2871
2872         transitions => {
2873             ''       => [qw(new open resolved)],
2874
2875             # from   => [ to list ],
2876             new      => [qw(open stalled resolved rejected deleted)],
2877             open     => [qw(new stalled resolved rejected deleted)],
2878             stalled  => [qw(new open rejected resolved deleted)],
2879             resolved => [qw(new open stalled rejected deleted)],
2880             rejected => [qw(new open stalled resolved deleted)],
2881             deleted  => [qw(new open stalled rejected resolved)],
2882         },
2883         rights => {
2884             '* -> deleted'  => 'DeleteTicket',
2885             '* -> rejected' => 'ModifyTicket',
2886             '* -> *'        => 'ModifyTicket',
2887         },
2888         actions => [
2889             'new -> open'      => { label  => 'Open It', update => 'Respond' }, # loc{label}
2890             'new -> resolved'  => { label  => 'Resolve', update => 'Comment' }, # loc{label}
2891             'new -> rejected'  => { label  => 'Reject',  update => 'Respond' }, # loc{label}
2892             'new -> deleted'   => { label  => 'Delete',                      }, # loc{label}
2893             'open -> stalled'  => { label  => 'Stall',   update => 'Comment' }, # loc{label}
2894             'open -> resolved' => { label  => 'Resolve', update => 'Comment' }, # loc{label}
2895             'open -> rejected' => { label  => 'Reject',  update => 'Respond' }, # loc{label}
2896             'stalled -> open'  => { label  => 'Open It',                     }, # loc{label}
2897             'resolved -> open' => { label  => 'Re-open', update => 'Comment' }, # loc{label}
2898             'rejected -> open' => { label  => 'Re-open', update => 'Comment' }, # loc{label}
2899             'deleted -> open'  => { label  => 'Undelete',                    }, # loc{label}
2900         ],
2901     },
2902 );
2903
2904
2905
2906
2907
2908 =head1 Administrative interface
2909
2910 =over 4
2911
2912 =item C<$ShowRTPortal>
2913
2914 RT can show administrators a feed of recent RT releases and other
2915 related announcements and information from Best Practical on the top
2916 level Admin page.  This feature helps you stay up to date on
2917 RT security announcements and version updates.
2918
2919 RT provides this feature using an "iframe" on C</Admin/index.html>
2920 which asks the administrator's browser to show an inline page from
2921 Best Practical's website.
2922
2923 If you'd rather not make this feature available to your
2924 administrators, set C<$ShowRTPortal> to 0.
2925
2926 =cut
2927
2928 Set($ShowRTPortal, 1);
2929
2930 =item C<%AdminSearchResultFormat>
2931
2932 In the admin interface, format strings similar to tickets result
2933 formats are used. Use C<%AdminSearchResultFormat> to define the format
2934 strings used in the admin interface on a per-RT-class basis.
2935
2936 =cut
2937
2938 Set(%AdminSearchResultFormat,
2939     Queues =>
2940         q{'<a href="__WebPath__/Admin/Queues/Modify.html?id=__id__">__id__</a>/TITLE:#'}
2941         .q{,'<a href="__WebPath__/Admin/Queues/Modify.html?id=__id__">__Name__</a>/TITLE:Name'}
2942         .q{,__Description__,__Address__,__Priority__,__DefaultDueIn__,__Lifecycle__,__SubjectTag__,__Disabled__},
2943
2944     Groups =>
2945         q{'<a href="__WebPath__/Admin/Groups/Modify.html?id=__id__">__id__</a>/TITLE:#'}
2946         .q{,'<a href="__WebPath__/Admin/Groups/Modify.html?id=__id__">__Name__</a>/TITLE:Name'}
2947         .q{,'__Description__',__Disabled__},
2948
2949     Users =>
2950         q{'<a href="__WebPath__/Admin/Users/Modify.html?id=__id__">__id__</a>/TITLE:#'}
2951         .q{,'<a href="__WebPath__/Admin/Users/Modify.html?id=__id__">__Name__</a>/TITLE:Name'}
2952         .q{,__RealName__, __EmailAddress__,__Disabled__},
2953
2954     CustomFields =>
2955         q{'<a href="__WebPath__/Admin/CustomFields/Modify.html?id=__id__">__id__</a>/TITLE:#'}
2956         .q{,'<a href="__WebPath__/Admin/CustomFields/Modify.html?id=__id__">__Name__</a>/TITLE:Name'}
2957         .q{,__AddedTo__, __FriendlyType__, __FriendlyPattern__,__Disabled__},
2958
2959     Scrips =>
2960         q{'<a href="__WebPath__/Admin/Scrips/Modify.html?id=__id____From__">__id__</a>/TITLE:#'}
2961         .q{,'<a href="__WebPath__/Admin/Scrips/Modify.html?id=__id____From__">__Description__</a>/TITLE:Description'}
2962         .q{,__Condition__, __Action__, __Template__, __Disabled__},
2963
2964     Templates =>
2965         q{'<a href="__WebPath__/__WebRequestPathDir__/Template.html?Queue=__QueueId__&Template=__id__">__id__</a>/TITLE:#'}
2966         .q{,'<a href="__WebPath__/__WebRequestPathDir__/Template.html?Queue=__QueueId__&Template=__id__">__Name__</a>/TITLE:Name'}
2967         .q{,'__Description__','__UsedBy__','__IsEmpty__'},
2968     Classes =>
2969         q{ '<a href="__WebPath__/Admin/Articles/Classes/Modify.html?id=__id__">__id__</a>/TITLE:#'}
2970         .q{,'<a href="__WebPath__/Admin/Articles/Classes/Modify.html?id=__id__">__Name__</a>/TITLE:Name'}
2971         .q{,__Description__,__Disabled__},
2972 );
2973
2974 =item C<%AdminSearchResultRows>
2975
2976 Use C<%AdminSearchResultRows> to define the search result rows in the admin
2977 interface on a per-RT-class basis.
2978
2979 =cut
2980
2981 Set(%AdminSearchResultRows,
2982     Queues       => 50,
2983     Groups       => 50,
2984     Users        => 50,
2985     CustomFields => 50,
2986     Scrips       => 50,
2987     Templates    => 50,
2988     Classes      => 50,
2989 );
2990
2991 =back
2992
2993
2994
2995
2996 =head1 Development options
2997
2998 =over 4
2999
3000 =item C<$DevelMode>
3001
3002 RT comes with a "Development mode" setting.  This setting, as a
3003 convenience for developers, turns on several of development options
3004 that you most likely don't want in production:
3005
3006 =over 4
3007
3008 =item *
3009
3010 Disables CSS and JS minification and concatenation.  Both CSS and JS
3011 will be instead be served as a number of individual smaller files,
3012 unchanged from how they are stored on disk.
3013
3014 =item *
3015
3016 Uses L<Module::Refresh> to reload changed Perl modules on each
3017 request.
3018
3019 =item *
3020
3021 Turns off Mason's C<static_source> directive; this causes Mason to
3022 reload template files which have been modified on disk.
3023
3024 =item *
3025
3026 Turns on Mason's HTML C<error_format>; this renders compilation errors
3027 to the browser, along with a full stack trace.  It is possible for
3028 stack traces to reveal sensitive information such as passwords or
3029 ticket content.
3030
3031 =item *
3032
3033 Turns off caching of callbacks; this enables additional callbacks to
3034 be added while the server is running.
3035
3036 =back
3037
3038 =cut
3039
3040 Set($DevelMode, 0);
3041
3042
3043 =item C<$RecordBaseClass>
3044
3045 What abstract base class should RT use for its records. You should
3046 probably never change this.
3047
3048 Valid values are C<DBIx::SearchBuilder::Record> or
3049 C<DBIx::SearchBuilder::Record::Cachable>
3050
3051 =cut
3052
3053 Set($RecordBaseClass, "DBIx::SearchBuilder::Record::Cachable");
3054
3055
3056 =item C<@MasonParameters>
3057
3058 C<@MasonParameters> is the list of parameters for the constructor of
3059 HTML::Mason's Apache or CGI Handler.  This is normally only useful for
3060 debugging, e.g. profiling individual components with:
3061
3062     use MasonX::Profiler; # available on CPAN
3063     Set(@MasonParameters, (preamble => 'my $p = MasonX::Profiler->new($m, $r);'));
3064
3065 =cut
3066
3067 Set(@MasonParameters, ());
3068
3069 =item C<$StatementLog>
3070
3071 RT has rudimentary SQL statement logging support; simply set
3072 C<$StatementLog> to be the level that you wish SQL statements to be
3073 logged at.
3074
3075 Enabling this option will also expose the SQL Queries page in the
3076 Admin -> Tools menu for SuperUsers.
3077
3078 =cut
3079
3080 Set($StatementLog, undef);
3081
3082 =back
3083
3084 =cut
3085
3086 1;