[Rt-commit] r19225 - rt/3.999/branches/config-in-db/etc

sunnavy at bestpractical.com sunnavy at bestpractical.com
Thu Apr 16 04:01:44 EDT 2009


Author: sunnavy
Date: Thu Apr 16 04:01:44 2009
New Revision: 19225

Modified:
   rt/3.999/branches/config-in-db/etc/RT_Config.pm

Log:
rescue the unfinished change for RT_Config.pm

Modified: rt/3.999/branches/config-in-db/etc/RT_Config.pm
==============================================================================
--- rt/3.999/branches/config-in-db/etc/RT_Config.pm	(original)
+++ rt/3.999/branches/config-in-db/etc/RT_Config.pm	Thu Apr 16 04:01:44 2009
@@ -185,7 +185,7 @@
 
 =cut
 
-set( full_text_search,
+set( full_text_search =>
     {
         enable  => 0,
         indexed => 0,
@@ -465,7 +465,7 @@
 
 =cut
 
-set(mail_params, []);
+set(mail_params => []);
 
 =item C<correspond_address>, C<comment_address>
 
@@ -621,10 +621,12 @@
 
 =cut
 
-set( %gnupg,
-    enable => 1,
-    outgoing_messages_format => 'RFC', # Inline
-    allow_encrypt_data_in_db   => 0,
+set( gnupg =>
+    {
+        enable                   => 1,
+        outgoing_messages_format => 'RFC',    # Inline
+        allow_encrypt_data_in_db => 0,
+    }
 );
 
 =item C<gnupg_options>
@@ -638,9 +640,9 @@
 
 =cut
 
-set( gnupg_options,
+set( gnupg_options =>
     {
-        homedir => '/home/jesse/svk/3.999-DANGEROUS/var/data/gpg',
+        # homedir => '/home/jesse/svk/3.999-DANGEROUS/var/data/gpg',
 
         # URL of a keyserver
         #    keyserver => 'hkp://subkeys.pgp.net',
@@ -695,7 +697,7 @@
 =cut
 
 set(log_to_file => '');
-set(log_dir => '/home/jesse/svk/3.999-DANGEROUS/var/log');
+set(log_dir => '');
 set(log_to_file_named => "rt.log");    #log to rt.log
 
 =item C<log_to_syslog_conf>
@@ -708,7 +710,7 @@
 
 =cut
 
-set(log_to_syslog_conf, []);
+set(log_to_syslog_conf => []);
 
 =item C<statement_log>,
 
@@ -1107,11 +1109,11 @@
 for debugging, eg. profiling individual components with:
 
     use MasonX::Profiler; # available on CPAN
-    set(mason_parameters, [preamble => 'my $p = MasonX::Profiler->new($m, $r);']);
+    set(mason_parameters => [preamble => 'my $p = MasonX::Profiler->new($m, $r);']);
 
 =cut
 
-set(mason_parameters, []);
+set(mason_parameters => []);
 
 =item C<default_search_result_format>
 
@@ -1185,7 +1187,7 @@
 
 =cut
 
-set(active_make_clicky, []);
+set(active_make_clicky => []);
 
 =item C<default_queue>
 
@@ -1195,7 +1197,7 @@
 
 =cut
 
-#set(default_queue => 'General');
+set(default_queue => 'General');
 
 =back
 
@@ -1241,11 +1243,11 @@
 L<Net::Server/DEFAULT ARGUMENTS>. For example, you could set
 reverse_lookups to get the hostnames for all users with:
 
-C<set(%net_server_options, (reverse_lookups => 1));>
+C<set(net_server_options => {reverse_lookups => 1});>
 
 =cut
 
-set(net_server_options, []);
+set(net_server_options => {});
 
 =back
 
@@ -1262,7 +1264,7 @@
 
 =cut
 
-set(lexicon_languages, [qw(*)]);
+set(lexicon_languages => [qw(*)]);
 
 =item C<email_input_encodings>
 
@@ -1272,7 +1274,7 @@
 
 =cut
 
-set(email_input_encodings, [qw(utf-8 iso-8859-1 us-ascii)]);
+set(email_input_encodings => [qw(utf-8 iso-8859-1 us-ascii)]);
 
 =item C<email_output_encoding>
 
@@ -1348,8 +1350,8 @@
 
 =cut
 
-set(active_status, [qw(new open stalled)]);
-set(inactive_status, [qw(resolved rejected deleted)]);
+set(active_status => [qw(new open stalled)]);
+set(inactive_status => [qw(resolved rejected deleted)]);
 
 =item C<link_transactions_run1_scrip>
 
@@ -1399,7 +1401,7 @@
 
 =cut
 
-set(custom_field_values_sources, []);
+set(custom_field_values_sources => []);
 
 =item C<canonicalize_redirect_ur_ls>
 


More information about the Rt-commit mailing list