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