diff options
author | Ivan Kohler <ivan@freeside.biz> | 2017-08-06 10:11:28 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2017-08-06 10:11:28 -0700 |
commit | de9d037528895f7151a9aead6724ce2df95f9586 (patch) | |
tree | 3ba47a923a1d6033605ffc5586ed1af439d8c141 /rt/etc | |
parent | b226bc6bd81f999176cdbfa53a799033ff0a0307 (diff) |
rt 4.2.14 (#13852)
Diffstat (limited to 'rt/etc')
-rw-r--r-- | rt/etc/RT_Config.pm.in | 53 | ||||
-rwxr-xr-x | rt/etc/acl.Pg | 2 | ||||
-rw-r--r-- | rt/etc/upgrade/3.8-ical-extension.in | 2 | ||||
-rwxr-xr-x | rt/etc/upgrade/4.0-customfield-checkbox-extension | 2 | ||||
-rw-r--r-- | rt/etc/upgrade/4.0-customfield-checkbox-extension.in | 2 | ||||
-rw-r--r-- | rt/etc/upgrade/generate-rtaddressregexp.in | 2 | ||||
-rw-r--r-- | rt/etc/upgrade/sanity-check-stylesheets.in | 2 | ||||
-rw-r--r-- | rt/etc/upgrade/shrink-cgm-table.in | 2 | ||||
-rw-r--r-- | rt/etc/upgrade/shrink-transactions-table.in | 2 | ||||
-rw-r--r-- | rt/etc/upgrade/split-out-cf-categories.in | 2 | ||||
-rw-r--r-- | rt/etc/upgrade/switch-templates-to.in | 2 | ||||
-rw-r--r-- | rt/etc/upgrade/time-worked-history.in | 2 | ||||
-rwxr-xr-x | rt/etc/upgrade/upgrade-articles | 2 | ||||
-rw-r--r-- | rt/etc/upgrade/upgrade-articles.in | 2 | ||||
-rwxr-xr-x | rt/etc/upgrade/upgrade-mysql-schema.pl | 2 | ||||
-rwxr-xr-x | rt/etc/upgrade/vulnerable-passwords.in | 2 |
16 files changed, 61 insertions, 22 deletions
diff --git a/rt/etc/RT_Config.pm.in b/rt/etc/RT_Config.pm.in index 3a878501f..4d55c9d40 100644 --- a/rt/etc/RT_Config.pm.in +++ b/rt/etc/RT_Config.pm.in @@ -623,6 +623,23 @@ Precedence header, it will be preserved. Set($DefaultMailPrecedence, "bulk"); +=item C<$OverrideMailPrecedence> + +C<$OverrideMailPrecedence> is used for overwriting the C<$DefaultMailPrecedence> +value for a queue. + +The option is a hash reference of queue id/name to precedence. If you set the +precedence to C<undef>, a Precedence header will not be added to the mail. + +This option only works if C<$DefaultMailPrecedence> is enabled. + +=cut + +Set($OverrideMailPrecedence, { +# 'Queue 1' => "list", +# 'Queue 2' => undef, +}); + =item C<$DefaultErrorMailPrecedence> C<$DefaultErrorMailPrecedence> is used to control the default @@ -1135,7 +1152,7 @@ This can also be configured via the web UI. =cut -Set($LogoURL, RT->Config->Get('WebImagesURL') . "bpslogo.png"); +Set($LogoURL, RT->Config->Get('WebImagesURL') . "request-tracker-logo.png"); =item C<$LogoLinkURL> @@ -1152,7 +1169,7 @@ will be passed through C<loc> for localization. =cut -Set($LogoAltText, "Best Practical Solutions, LLC corporate logo"); +Set($LogoAltText, "Request Tracker logo"); =item C<$WebNoAuthRegex> @@ -1252,10 +1269,23 @@ search results on the front page. Set($DefaultSummaryRows, 10); +=item C<@RefreshIntervals> + +This setting defines the possible homepage and search result refresh +options. Each value is a number of seconds. You should not include a value +of C<0>, as that is always provided as an option. + +See also L</HomePageRefreshInterval> and L</SearchResultsRefreshInterval>. + +=cut + +Set(@RefreshIntervals, qw(120 300 600 1200 3600 7200)); + =item C<$HomePageRefreshInterval> C<$HomePageRefreshInterval> is default number of seconds to refresh -the RT home page. Choose from [0, 120, 300, 600, 1200, 3600, 7200]. +the RT home page. Choose from any value in L</@RefreshIntervals>, +or the default of C<0> for no automatic refresh. =cut @@ -1313,9 +1343,9 @@ Set($TicketsItemMapSize, 1000); =item C<$SearchResultsRefreshInterval> -C<$SearchResultsRefreshInterval> is default number of seconds to -refresh search results in RT. Choose from [0, 120, 300, 600, 1200, -3600, 7200]. +C<$SearchResultsRefreshInterval> is default number of seconds to refresh +search results in RT. Choose from any value in L</@RefreshIntervals>, or +the default of C<0> for no automatic refresh. =cut @@ -1688,6 +1718,15 @@ you will have no access to Articles. Set($HideArticleSearchOnReplyCreate, 0); +=item C<$LinkArticlesOnInclude> + +Set this to 0 to suppress the default behavior of automatically linking +to Articles when they are included in a message. + +=cut + +Set($LinkArticlesOnInclude, 1); + =back @@ -2134,7 +2173,7 @@ higher numbers denoting greater effort. =cut -Set($BcryptCost, 11); +Set($BcryptCost, 12); =back diff --git a/rt/etc/acl.Pg b/rt/etc/acl.Pg index a659d8e99..dd1b33414 100755 --- a/rt/etc/acl.Pg +++ b/rt/etc/acl.Pg @@ -66,7 +66,7 @@ sub acl { # if there's already an rt_user, use it. my @row = $dbh->selectrow_array( "SELECT usename FROM pg_user WHERE usename = '$db_user'" ); unless ( $row[0] ) { - push @acls, "CREATE USER \"$db_user\" WITH PASSWORD '$db_pass' NOCREATEDB NOCREATEUSER;"; + push @acls, "CREATE USER \"$db_user\" WITH PASSWORD '$db_pass' NOCREATEDB NOSUPERUSER;"; } foreach my $table (@tables) { diff --git a/rt/etc/upgrade/3.8-ical-extension.in b/rt/etc/upgrade/3.8-ical-extension.in index f4df8ec55..b32839003 100644 --- a/rt/etc/upgrade/3.8-ical-extension.in +++ b/rt/etc/upgrade/3.8-ical-extension.in @@ -3,7 +3,7 @@ # # COPYRIGHT: # -# This software is Copyright (c) 1996-2016 Best Practical Solutions, LLC +# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC # <sales@bestpractical.com> # # (Except where explicitly superseded by other copyright notices) diff --git a/rt/etc/upgrade/4.0-customfield-checkbox-extension b/rt/etc/upgrade/4.0-customfield-checkbox-extension index abd85306a..44ae16e00 100755 --- a/rt/etc/upgrade/4.0-customfield-checkbox-extension +++ b/rt/etc/upgrade/4.0-customfield-checkbox-extension @@ -3,7 +3,7 @@ # # COPYRIGHT: # -# This software is Copyright (c) 1996-2016 Best Practical Solutions, LLC +# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC # <sales@bestpractical.com> # # (Except where explicitly superseded by other copyright notices) diff --git a/rt/etc/upgrade/4.0-customfield-checkbox-extension.in b/rt/etc/upgrade/4.0-customfield-checkbox-extension.in index 8ca22c81f..f289a0dd6 100644 --- a/rt/etc/upgrade/4.0-customfield-checkbox-extension.in +++ b/rt/etc/upgrade/4.0-customfield-checkbox-extension.in @@ -3,7 +3,7 @@ # # COPYRIGHT: # -# This software is Copyright (c) 1996-2016 Best Practical Solutions, LLC +# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC # <sales@bestpractical.com> # # (Except where explicitly superseded by other copyright notices) diff --git a/rt/etc/upgrade/generate-rtaddressregexp.in b/rt/etc/upgrade/generate-rtaddressregexp.in index 043b21af5..9a097e93a 100644 --- a/rt/etc/upgrade/generate-rtaddressregexp.in +++ b/rt/etc/upgrade/generate-rtaddressregexp.in @@ -3,7 +3,7 @@ # # COPYRIGHT: # -# This software is Copyright (c) 1996-2016 Best Practical Solutions, LLC +# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC # <sales@bestpractical.com> # # (Except where explicitly superseded by other copyright notices) diff --git a/rt/etc/upgrade/sanity-check-stylesheets.in b/rt/etc/upgrade/sanity-check-stylesheets.in index 5fe128826..ed6da65e0 100644 --- a/rt/etc/upgrade/sanity-check-stylesheets.in +++ b/rt/etc/upgrade/sanity-check-stylesheets.in @@ -3,7 +3,7 @@ # # COPYRIGHT: # -# This software is Copyright (c) 1996-2016 Best Practical Solutions, LLC +# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC # <sales@bestpractical.com> # # (Except where explicitly superseded by other copyright notices) diff --git a/rt/etc/upgrade/shrink-cgm-table.in b/rt/etc/upgrade/shrink-cgm-table.in index 172a40ac5..3dfe21575 100644 --- a/rt/etc/upgrade/shrink-cgm-table.in +++ b/rt/etc/upgrade/shrink-cgm-table.in @@ -3,7 +3,7 @@ # # COPYRIGHT: # -# This software is Copyright (c) 1996-2016 Best Practical Solutions, LLC +# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC # <sales@bestpractical.com> # # (Except where explicitly superseded by other copyright notices) diff --git a/rt/etc/upgrade/shrink-transactions-table.in b/rt/etc/upgrade/shrink-transactions-table.in index c16795723..d083b8c3f 100644 --- a/rt/etc/upgrade/shrink-transactions-table.in +++ b/rt/etc/upgrade/shrink-transactions-table.in @@ -3,7 +3,7 @@ # # COPYRIGHT: # -# This software is Copyright (c) 1996-2016 Best Practical Solutions, LLC +# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC # <sales@bestpractical.com> # # (Except where explicitly superseded by other copyright notices) diff --git a/rt/etc/upgrade/split-out-cf-categories.in b/rt/etc/upgrade/split-out-cf-categories.in index 800274c60..582d7c1be 100644 --- a/rt/etc/upgrade/split-out-cf-categories.in +++ b/rt/etc/upgrade/split-out-cf-categories.in @@ -3,7 +3,7 @@ # # COPYRIGHT: # -# This software is Copyright (c) 1996-2016 Best Practical Solutions, LLC +# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC # <sales@bestpractical.com> # # (Except where explicitly superseded by other copyright notices) diff --git a/rt/etc/upgrade/switch-templates-to.in b/rt/etc/upgrade/switch-templates-to.in index e745223ce..b96f9a133 100644 --- a/rt/etc/upgrade/switch-templates-to.in +++ b/rt/etc/upgrade/switch-templates-to.in @@ -3,7 +3,7 @@ # # COPYRIGHT: # -# This software is Copyright (c) 1996-2016 Best Practical Solutions, LLC +# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC # <sales@bestpractical.com> # # (Except where explicitly superseded by other copyright notices) diff --git a/rt/etc/upgrade/time-worked-history.in b/rt/etc/upgrade/time-worked-history.in index c9c4ebdc1..6920dde74 100644 --- a/rt/etc/upgrade/time-worked-history.in +++ b/rt/etc/upgrade/time-worked-history.in @@ -3,7 +3,7 @@ # # COPYRIGHT: # -# This software is Copyright (c) 1996-2016 Best Practical Solutions, LLC +# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC # <sales@bestpractical.com> # # (Except where explicitly superseded by other copyright notices) diff --git a/rt/etc/upgrade/upgrade-articles b/rt/etc/upgrade/upgrade-articles index 1b430cb35..ed442d1c9 100755 --- a/rt/etc/upgrade/upgrade-articles +++ b/rt/etc/upgrade/upgrade-articles @@ -3,7 +3,7 @@ # # COPYRIGHT: # -# This software is Copyright (c) 1996-2016 Best Practical Solutions, LLC +# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC # <sales@bestpractical.com> # # (Except where explicitly superseded by other copyright notices) diff --git a/rt/etc/upgrade/upgrade-articles.in b/rt/etc/upgrade/upgrade-articles.in index 837e20f2c..b4a360aad 100644 --- a/rt/etc/upgrade/upgrade-articles.in +++ b/rt/etc/upgrade/upgrade-articles.in @@ -3,7 +3,7 @@ # # COPYRIGHT: # -# This software is Copyright (c) 1996-2016 Best Practical Solutions, LLC +# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC # <sales@bestpractical.com> # # (Except where explicitly superseded by other copyright notices) diff --git a/rt/etc/upgrade/upgrade-mysql-schema.pl b/rt/etc/upgrade/upgrade-mysql-schema.pl index 690ec01e9..eabc5129c 100755 --- a/rt/etc/upgrade/upgrade-mysql-schema.pl +++ b/rt/etc/upgrade/upgrade-mysql-schema.pl @@ -3,7 +3,7 @@ # # COPYRIGHT: # -# This software is Copyright (c) 1996-2016 Best Practical Solutions, LLC +# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC # <sales@bestpractical.com> # # (Except where explicitly superseded by other copyright notices) diff --git a/rt/etc/upgrade/vulnerable-passwords.in b/rt/etc/upgrade/vulnerable-passwords.in index 39c3483cb..31cf14b15 100755 --- a/rt/etc/upgrade/vulnerable-passwords.in +++ b/rt/etc/upgrade/vulnerable-passwords.in @@ -3,7 +3,7 @@ # # COPYRIGHT: # -# This software is Copyright (c) 1996-2016 Best Practical Solutions, LLC +# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC # <sales@bestpractical.com> # # (Except where explicitly superseded by other copyright notices) |