[Rt-commit] r19521 - in rt/3.999/trunk: .

sunnavy at bestpractical.com sunnavy at bestpractical.com
Thu May 7 03:19:26 EDT 2009


Author: sunnavy
Date: Thu May  7 03:19:26 2009
New Revision: 19521

Modified:
   rt/3.999/trunk/   (props changed)
   rt/3.999/trunk/etc/RT_Config.pm

Log:
 r20778 at sunnavys-mb (orig r19225):  sunnavy | 2009-04-16 16:01:44 +0800
 rescue the unfinished change for RT_Config.pm


Modified: rt/3.999/trunk/etc/RT_Config.pm
==============================================================================
--- rt/3.999/trunk/etc/RT_Config.pm	(original)
+++ rt/3.999/trunk/etc/RT_Config.pm	Thu May  7 03:19:26 2009
@@ -443,7 +443,7 @@
 
 =cut
 
-set(mail_params, []);
+set(mail_params => []);
 
 =item C<correspond_address>, C<comment_address>
 
@@ -599,10 +599,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>
@@ -616,9 +618,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',
@@ -673,7 +675,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<$LogStackTraces>
@@ -696,7 +698,7 @@
 
 =cut
 
-set(log_to_syslog_conf, []);
+set(log_to_syslog_conf => []);
 
 =item C<statement_log>,
 
@@ -1095,11 +1097,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>
 
@@ -1173,7 +1175,7 @@
 
 =cut
 
-set(active_make_clicky, []);
+set(active_make_clicky => []);
 
 =item C<default_queue>
 
@@ -1183,7 +1185,7 @@
 
 =cut
 
-#set(default_queue => 'General');
+set(default_queue => 'General');
 
 =back
 
@@ -1229,11 +1231,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
 
@@ -1250,7 +1252,7 @@
 
 =cut
 
-set(lexicon_languages, [qw(*)]);
+set(lexicon_languages => [qw(*)]);
 
 =item C<email_input_encodings>
 
@@ -1260,7 +1262,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>
 
@@ -1335,8 +1337,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>
 
@@ -1386,7 +1388,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