[Rt-commit] r14152 - in rt/branches/3.999-DANGEROUS: etc

sunnavy at bestpractical.com sunnavy at bestpractical.com
Wed Jul 16 08:53:11 EDT 2008


Author: sunnavy
Date: Wed Jul 16 08:53:00 2008
New Revision: 14152

Modified:
   rt/branches/3.999-DANGEROUS/   (props changed)
   rt/branches/3.999-DANGEROUS/etc/RT_Config.pm

Log:
 r14540 at sunnavys-mb:  sunnavy | 2008-07-16 17:35:36 +0800
 name fixes in etc/RT_Config.pm


Modified: rt/branches/3.999-DANGEROUS/etc/RT_Config.pm
==============================================================================
--- rt/branches/3.999-DANGEROUS/etc/RT_Config.pm	(original)
+++ rt/branches/3.999-DANGEROUS/etc/RT_Config.pm	Wed Jul 16 08:53:00 2008
@@ -34,7 +34,7 @@
 
 =cut
 
-Set($rtname , "example.com");
+set($rtname , "example.com");
 
 
 =item C<$EmailSubjectTagRegex>
@@ -47,18 +47,18 @@
 token matching and that you should use only "non-capturing" parenthesis
 grouping. For example:
 
-C<Set($EmailSubjectTagRegex, qr/(?:example.com|example.org)/i );>
+C<set($EmailSubjectTagRegex, qr/(?:example.com|example.org)/i );>
 
 and NOT
 
-C<Set($EmailSubjectTagRegex, qr/(example.com|example.org)/i );>
+C<set($EmailSubjectTagRegex, qr/(example.com|example.org)/i );>
 
 This setting would make RT behave exactly as it does without the 
 setting enabled.
 
 =cut
 
-#Set($EmailSubjectTagRegex, qr/\Q$rtname\E/i );
+#set($EmailSubjectTagRegex, qr/\Q$rtname\E/i );
 
 
 
@@ -70,7 +70,7 @@
 
 =cut
 
-Set($Organization , "example.com");
+set($Organization , "example.com");
 
 =item C<$MinimumPasswordLength>
 
@@ -79,7 +79,7 @@
 
 =cut
 
-Set($MinimumPasswordLength , "5");
+set($MinimumPasswordLength , "5");
 
 =item C<$Timezone>
 
@@ -88,7 +88,7 @@
 
 =cut
 
-Set($Timezone , 'US/Eastern');
+set($Timezone , 'US/Eastern');
 
 =back
 
@@ -104,7 +104,7 @@
 
 =cut
 
-Set($DatabaseType , 'SQLite');
+set($DatabaseType , 'SQLite');
 
 =item C<$DatabaseHost>, C<$DatabaseRTHost>
 
@@ -115,8 +115,8 @@
 
 =cut
 
-Set($DatabaseHost   , 'localhost');
-Set($DatabaseRTHost , 'localhost');
+set($DatabaseHost   , 'localhost');
+set($DatabaseRTHost , 'localhost');
 
 =item C<$DatabasePort>
 
@@ -125,7 +125,7 @@
 
 =cut
 
-Set($DatabasePort , '');
+set($DatabasePort , '');
 
 =item C<$DatabaseUser>
 
@@ -133,7 +133,7 @@
 
 =cut
 
-Set($DatabaseUser , 'rt_user');
+set($DatabaseUser , 'rt_user');
 
 =item C<$DatabasePassword>
 
@@ -141,7 +141,7 @@
 
 =cut
 
-Set($DatabasePassword , 'rt_pass');
+set($DatabasePassword , 'rt_pass');
 
 =item C<$DatabaseName>
 
@@ -149,7 +149,7 @@
 
 =cut
 
-Set($DatabaseName , 'rt3');
+set($DatabaseName , 'rt3');
 
 =item C<$DatabaseRequireSSL>
 
@@ -158,7 +158,7 @@
 
 =cut
 
-Set($DatabaseRequireSSL , undef);
+set($DatabaseRequireSSL , undef);
 
 =back
 
@@ -174,7 +174,7 @@
 
 =cut
 
-Set($OwnerEmail , 'root');
+set($OwnerEmail , 'root');
 
 =item C<$LoopsToRTOwner>
 
@@ -183,7 +183,7 @@
 
 =cut
 
-Set($LoopsToRTOwner , 1);
+set($LoopsToRTOwner , 1);
 
 =item C<$StoreLoops>
 
@@ -195,7 +195,7 @@
 
 =cut
 
-Set($StoreLoops , undef);
+set($StoreLoops , undef);
 
 =item C<$MaxAttachmentSize>
 
@@ -209,7 +209,7 @@
 =cut
 
 
-Set($MaxAttachmentSize , 10000000);
+set($MaxAttachmentSize , 10000000);
 
 =item C<$TruncateLongAttachments>
 
@@ -218,7 +218,7 @@
 
 =cut
 
-Set($TruncateLongAttachments , undef);
+set($TruncateLongAttachments , undef);
 
 =item C<$DropLongAttachments>
 
@@ -227,7 +227,7 @@
 
 =cut
 
-Set($DropLongAttachments , undef);
+set($DropLongAttachments , undef);
 
 =item C<$ParsenewMessageForTicketCcs>
 
@@ -239,7 +239,7 @@
 
 =cut
 
-Set($ParseNewMessageForTicketCcs , undef);
+set($ParseNewMessageForTicketCcs , undef);
 
 =item C<$RTAddressRegexp> 
 
@@ -248,7 +248,7 @@
 
 =cut
 
-Set($RTAddressRegexp , '^rt\@example.com$');
+set($RTAddressRegexp , '^rt\@example.com$');
 
 =item C<$CanonicalizeEmailAddressMatch>, C<$CanonicalizeEmailAddressReplace>
 
@@ -264,8 +264,8 @@
 
 =cut
 
-#Set($CanonicalizeEmailAddressMatch , '@subdomain\.example\.com$');
-#Set($CanonicalizeEmailAddressReplace , '@example.com');
+#set($CanonicalizeEmailAddressMatch , '@subdomain\.example\.com$');
+#set($CanonicalizeEmailAddressReplace , '@example.com');
 
 =item C<$CanonicalizeEmailAddressMatch>
 
@@ -275,7 +275,7 @@
 
 =cut
 
-Set($CanonicalizeOnCreate, 0);
+set($CanonicalizeOnCreate, 0);
 
 =item C<$SenderMustExistInExternalDatabase>
 
@@ -293,7 +293,7 @@
 
 =cut
 
-Set($SenderMustExistInExternalDatabase , undef);
+set($SenderMustExistInExternalDatabase , undef);
 
 =item C<@MailPlugins>
 
@@ -319,8 +319,8 @@
 
 =cut
 
-Set($ExtractSubjectTagMatch, qr/\[.+? #\d+\]/);
-Set($ExtractSubjectTagNoMatch, ( ${RT::EmailSubjectTagRegex}
+set($ExtractSubjectTagMatch, qr/\[.+? #\d+\]/);
+set($ExtractSubjectTagNoMatch, ( ${RT::EmailSubjectTagRegex}
        ? qr/\[(?:${RT::EmailSubjectTagRegex}) #\d+\]/
        : qr/\[\Q$RT::rtname\E #\d+\]/));
 
@@ -342,7 +342,7 @@
 
 =cut
 
-Set($MailCommand , 'sendmailpipe');
+set($MailCommand , 'sendmailpipe');
 
 =back
 
@@ -360,11 +360,11 @@
 These options are good for most sendmail wrappers and workalikes
 
 These arguments are good for sendmail brand sendmail 8 and newer
-C<Set($SendmailArguments,"-oi -t -ODeliveryMode=b -OErrorMode=m");>
+C<set($SendmailArguments,"-oi -t -ODeliveryMode=b -OErrorMode=m");>
 
 =cut
 
-Set($SendmailArguments , "-oi -t");
+set($SendmailArguments , "-oi -t");
 
 
 =item C<$SendmailBounceArguments>
@@ -374,7 +374,7 @@
 
 =cut
 
-Set($SendmailBounceArguments , '-f "<>"');
+set($SendmailBounceArguments , '-f "<>"');
 
 =item C<$SendmailPath>
 
@@ -383,7 +383,7 @@
 
 =cut
 
-Set($SendmailPath , "/usr/sbin/sendmail");
+set($SendmailPath , "/usr/sbin/sendmail");
 
 
 =back
@@ -400,7 +400,7 @@
 
 =cut
 
-Set($SMTPServer, undef);
+set($SMTPServer, undef);
 
 =item C<$SMTPFrom>
 
@@ -409,7 +409,7 @@
 
 =cut
 
-Set($SMTPFrom, undef);
+set($SMTPFrom, undef);
 
 =item C<$SMTPDebug> 
 
@@ -417,7 +417,7 @@
 
 =cut
 
-Set($SMTPDebug, 0);
+set($SMTPDebug, 0);
 
 =back
 
@@ -432,7 +432,7 @@
 
 =cut
 
-Set(@MailParams, ());
+set(@MailParams, ());
 
 =item C<$CorrespondAddress>, C<$CommentAddress>
 
@@ -446,9 +446,9 @@
 
 =cut
 
-Set($CorrespondAddress , '');
+set($CorrespondAddress , '');
 
-Set($CommentAddress , '');
+set($CommentAddress , '');
 
 =item C<UseFriendlyFromLine>
 
@@ -457,7 +457,7 @@
 
 =cut
 
-Set($UseFriendlyFromLine, 1);
+set($UseFriendlyFromLine, 1);
 
 =item C<$FriendlyFromLineFormat>
 
@@ -466,7 +466,7 @@
 
 =cut
 
-Set($FriendlyFromLineFormat, "\"%s via RT\" <%s>");
+set($FriendlyFromLineFormat, "\"%s via RT\" <%s>");
 
 =item C<$UseFriendlyToLine>
 
@@ -479,7 +479,7 @@
 
 =cut
 
-Set($UseFriendlyToLine, 0);
+set($UseFriendlyToLine, 0);
 
 =item C<$FriendlyToLineFormat>
 
@@ -488,7 +488,7 @@
 
 =cut
 
-Set($FriendlyToLineFormat, "\"%s of ". RT->Config->Get('rtname') ." Ticket #%s\":;");
+set($FriendlyToLineFormat, "\"%s of ". RT->config->get('rtname') ." Ticket #%s\":;");
 
 =item C<$NotifyActor>
 
@@ -498,7 +498,7 @@
 
 =cut
 
-Set($NotifyActor, 0);
+set($NotifyActor, 0);
 
 =item C<$RecordOutgoingEmail>
 
@@ -507,7 +507,7 @@
 
 =cut
 
-Set($RecordOutgoingEmail, 1);
+set($RecordOutgoingEmail, 1);
 
 =item C<$VERPPrefix>, C<$VERPPrefix>
 
@@ -521,8 +521,8 @@
 
 =cut
 
-# Set($VERPPrefix, 'rt-');
-# Set($VERPDomain, $RT::Organization);
+# set($VERPPrefix, 'rt-');
+# set($VERPDomain, $RT::Organization);
 
 
 =item C<$ForwardFromUser>
@@ -535,7 +535,7 @@
 
 =cut
 
-Set($ForwardFromUser, 0);
+set($ForwardFromUser, 0);
 
 =item C<$ShowBccHeader>
 
@@ -546,7 +546,7 @@
 
 =cut
 
-Set($ShowBccHeader, 0);
+set($ShowBccHeader, 0);
 
 =back
 
@@ -568,7 +568,7 @@
 
 =cut
 
-Set( %GnuPG,
+set( %GnuPG,
     Enable => 1,
     OutgoingMessagesFormat => 'RFC', # Inline
     AllowEncryptDataInDB   => 0,
@@ -585,7 +585,7 @@
 
 =cut
 
-Set(%GnuPGOptions,
+set(%GnuPGOptions,
     homedir => '/home/jesse/svk/3.999-DANGEROUS/var/data/gpg',
 
 # URL of a keyserver
@@ -623,8 +623,8 @@
 
 =cut
 
-Set($LogToSyslog    , 'debug');
-Set($LogToScreen    , 'info');
+set($LogToSyslog    , 'debug');
+set($LogToScreen    , 'info');
 
 =item C<$LogToFile>, C<$LogDir>, C<$LogToFileNamed>
 
@@ -639,9 +639,9 @@
 
 =cut
 
-Set($LogToFile      , undef);
-Set($LogDir, '/home/jesse/svk/3.999-DANGEROUS/var/log');
-Set($LogToFileNamed , "rt.log");    #log to rt.log
+set($LogToFile      , undef);
+set($LogDir, '/home/jesse/svk/3.999-DANGEROUS/var/log');
+set($LogToFileNamed , "rt.log");    #log to rt.log
 
 =item C<$LogStackTraces>
 
@@ -651,7 +651,7 @@
 
 =cut
 
-Set($LogStackTraces, '');
+set($LogStackTraces, '');
 
 =item C<@LogToSyslogConf>
 
@@ -663,7 +663,7 @@
 
 =cut
 
-Set(@LogToSyslogConf, ());
+set(@LogToSyslogConf, ());
 
 =item C<$StatementLog>,
 
@@ -673,7 +673,7 @@
 
 =cut
 
-Set($StatementLog, undef);
+set($StatementLog, undef);
 
 =back
 
@@ -698,7 +698,7 @@
 
 =cut
 
-Set($WebDefaultStylesheet, 'web2');
+set($WebDefaultStylesheet, 'web2');
 
 =item C<$UsernameFormat>
 
@@ -709,7 +709,7 @@
 
 =cut
 
-  Set($UsernameFormat, 'concise');
+  set($UsernameFormat, 'concise');
 
 
 =item C<$WebPath>
@@ -724,7 +724,7 @@
 
 =cut
 
-Set($WebPath, "");
+set($WebPath, "");
 
 =item C<$WebPort>
 
@@ -733,7 +733,7 @@
 
 =cut
 
-Set($WebPort, 80);# + ($< * 7274) % 32766 + ($< && 1024));
+set($WebPort, 80);# + ($< * 7274) % 32766 + ($< && 1024));
 
 =item C<$WebDomain>
 
@@ -741,7 +741,7 @@
 
 =cut
 
-Set( $WebDomain, 'localhost' );
+set( $WebDomain, 'localhost' );
 
 =item C<$WebBaseURL>, C<$WebURL>
 
@@ -750,9 +750,9 @@
 
 =cut
 
-Set($WebBaseURL, 'http://' . RT->Config->Get('WebDomain') . ':' . RT->Config->Get('WebPort'));
+set($WebBaseURL, 'http://' . RT->config->get('WebDomain') . ':' . RT->config->get('WebPort'));
 
-Set($WebURL, RT->Config->Get('WebBaseURL') . RT->Config->Get('WebPath') . "/");
+set($WebURL, RT->config->get('WebBaseURL') . RT->config->get('WebPath') . "/");
 
 =item C<$WebImagesURL>
 
@@ -762,7 +762,7 @@
 
 =cut
 
-Set($WebImagesURL, RT->Config->Get('WebPath') . "/NoAuth/images/");
+set($WebImagesURL, RT->config->get('WebPath') . "/NoAuth/images/");
 
 =item C<$LogoURL>
 
@@ -770,7 +770,7 @@
 
 =cut
 
-Set($LogoURL, $Config->Get('WebImagesURL') . "bplogo.gif");
+set($LogoURL, RT->config->get('WebImagesURL') . "bplogo.gif");
 
 =item C<$WebNoAuthRegex>
 
@@ -778,7 +778,7 @@
 
 =cut
 
-Set($WebNoAuthRegex, qr{^ (?:/+NoAuth/ | /+REST/\d+\.\d+/NoAuth/) }x );
+set($WebNoAuthRegex, qr{^ (?:/+NoAuth/ | /+REST/\d+\.\d+/NoAuth/) }x );
 
 =item C<$MessageBoxWidth>, C<$MessageBoxHeight>
 
@@ -790,8 +790,8 @@
 
 =cut
 
-Set($MessageBoxWidth, 72);
-Set($MessageBoxHeight, 15);
+set($MessageBoxWidth, 72);
+set($MessageBoxHeight, 15);
 
 =item C<$MessageBoxWrap>
 
@@ -799,7 +799,7 @@
 
 =cut
 
-Set($MessageBoxWrap, "HARD");
+set($MessageBoxWrap, "HARD");
 
 =item C<$MessageBoxRichText>
 
@@ -807,7 +807,7 @@
 
 =cut
 
-Set($MessageBoxRichText, 1);
+set($MessageBoxRichText, 1);
 
 =item C<$WikiImplicitLinks>
 
@@ -818,7 +818,7 @@
 
 =cut
 
-Set($WikiImplicitLinks, 0);
+set($WikiImplicitLinks, 0);
 
 =item C<$TrustHTMLAttachments>
 
@@ -828,7 +828,7 @@
 
 =cut
 
-Set($TrustHTMLAttachments, undef);
+set($TrustHTMLAttachments, undef);
 
 =item C<$RedistributeAutoGeneratedMessages>
 
@@ -841,7 +841,7 @@
 
 =cut
 
-Set($RedistributeAutoGeneratedMessages, 'privileged');
+set($RedistributeAutoGeneratedMessages, 'privileged');
 
 =item C<$PreferRichText>
 
@@ -852,7 +852,7 @@
 
 =cut
 
-Set($PreferRichText, undef);
+set($PreferRichText, undef);
 
 =item C<$WebExternalAuth>
 
@@ -861,7 +861,7 @@
 
 =cut
 
-Set($WebExternalAuth, undef);
+set($WebExternalAuth, undef);
 
 =item C<$WebFallbackToInternalAuth>
 
@@ -870,7 +870,7 @@
 
 =cut
 
-Set($WebFallbackToInternalAuth , undef);
+set($WebFallbackToInternalAuth , undef);
 
 =item C<$WebExternalGecos>
 
@@ -879,7 +879,7 @@
 
 =cut
 
-Set($WebExternalGecos , undef);
+set($WebExternalGecos , undef);
 
 =item C<$WebExternalAuto>
 
@@ -888,7 +888,7 @@
 
 =cut
 
-Set($WebExternalAuto , undef);
+set($WebExternalAuto , undef);
 
 =item C<$AutoCreate>
 
@@ -899,7 +899,7 @@
 
 =cut
 
-Set($AutoCreate, undef);
+set($AutoCreate, undef);
 
 =item C<$WebSessionClass>
 
@@ -910,7 +910,7 @@
 
 =cut
 
-# Set($WebSessionClass , 'Apache::Session::File');
+# set($WebSessionClass , 'Apache::Session::File');
 
 =item C<$AutoLogoff>
 
@@ -921,7 +921,7 @@
 
 =cut
 
-Set($AutoLogoff, 0);
+set($AutoLogoff, 0);
 
 =item C<$WebSecureCookies>
 
@@ -934,7 +934,7 @@
 
 =cut
 
-Set($WebSecureCookies, 0);
+set($WebSecureCookies, 0);
 
 =item C<$WebFlushDbCacheEveryRequest>
 
@@ -947,7 +947,7 @@
 
 =cut
 
-Set($WebFlushDbCacheEveryRequest, '1');
+set($WebFlushDbCacheEveryRequest, '1');
 
 
 =item C<$MaxInlineBody>
@@ -959,7 +959,7 @@
 
 =cut
 
-Set($MaxInlineBody, 12000);
+set($MaxInlineBody, 12000);
 
 =item C<$DefaultSummaryRows>
 
@@ -968,7 +968,7 @@
 
 =cut
 
-Set($DefaultSummaryRows, 10);
+set($DefaultSummaryRows, 10);
 
 =item C<$OldestTransactionsFirst>
 
@@ -978,7 +978,7 @@
 
 =cut
 
-Set($OldestTransactionsFirst, '1');
+set($OldestTransactionsFirst, '1');
 
 =item C<$ShowTransactionImages>
 
@@ -987,7 +987,7 @@
 
 =cut
 
-Set($ShowTransactionImages, 1);
+set($ShowTransactionImages, 1);
 
 
 =item C<$ShowUnreadMessageNotifications>
@@ -999,7 +999,7 @@
 
 =cut
 
-Set($ShowUnreadMessageNotifications, 1);
+set($ShowUnreadMessageNotifications, 1);
 
 
 =item C<$HomepageComponents>
@@ -1009,7 +1009,7 @@
 
 =cut
 
-Set($HomepageComponents, [qw(QuickCreate Quicksearch MyAdminQueues MySupportQueues MyReminders RefreshHomepage)]);
+set($HomepageComponents, [qw(QuickCreate Quicksearch MyAdminQueues MySupportQueues MyReminders RefreshHomepage)]);
 
 =item C<@MasonParameters>
 
@@ -1018,11 +1018,11 @@
 for debugging, eg. profiling individual components with:
 
     use MasonX::Profiler; # available on CPAN
-    Set(@MasonParameters, (preamble => 'my $p = MasonX::Profiler->new($m, $r);'));
+    set(@MasonParameters, (preamble => 'my $p = MasonX::Profiler->new($m, $r);'));
 
 =cut
 
-Set(@MasonParameters, ());
+set(@MasonParameters, ());
 
 =item C<$DefaultSearchResultFormat>
 
@@ -1030,7 +1030,7 @@
 
 =cut
 
-Set ($DefaultSearchResultFormat, qq{
+set($DefaultSearchResultFormat, qq{
    '<B><A HREF="__WebPath__/Ticket/Display.html?id=__id__">__id__</a></B>/TITLE:#',
    '<B><A HREF="__WebPath__/Ticket/Display.html?id=__id__">__Subject__</a></B>/TITLE:Subject',
    Status,
@@ -1054,7 +1054,7 @@
 
 =cut
 
-Set($SuppressInlineTextFiles, undef);
+set($SuppressInlineTextFiles, undef);
 
 =item C<DontSearchFileAttachments>
 
@@ -1064,7 +1064,7 @@
 
 =cut
 
-Set($DontSearchFileAttachments, undef);
+set($DontSearchFileAttachments, undef);
 
 =item C<$ChartFont>
 
@@ -1075,7 +1075,7 @@
 
 =cut
 
-Set($ChartFont, undef);
+set($ChartFont, undef);
 
 
 =item C<@Active_MakeClicky>
@@ -1096,7 +1096,7 @@
 
 =cut
 
-Set(@Active_MakeClicky, qw());
+set(@Active_MakeClicky, qw());
 
 =item C<$DefaultQueue>
 
@@ -1106,7 +1106,7 @@
 
 =cut
 
-#Set($DefaultQueue, 'General');
+#set($DefaultQueue, 'General');
 
 =back
 
@@ -1122,8 +1122,8 @@
 
 =cut
 
-Set($StandaloneMinServers, 1);
-Set($StandaloneMaxServers, 1);
+set($StandaloneMinServers, 1);
+set($StandaloneMaxServers, 1);
 
 =item C<$StandaloneMinSpareServers>, C<$StandaloneMaxSpareServers>
 
@@ -1133,8 +1133,8 @@
 
 =cut
 
-Set($StandaloneMinSpareServers, 0);
-Set($StandaloneMaxSpareServers, 0);
+set($StandaloneMinSpareServers, 0);
+set($StandaloneMaxSpareServers, 0);
 
 =item C<$StandaloneMaxRequests>
 
@@ -1144,7 +1144,7 @@
 
 =cut
 
-#Set($StandaloneMaxRequests, 50);
+#set($StandaloneMaxRequests, 50);
 
 =item C<%NetServerOptions>
 
@@ -1152,11 +1152,11 @@
 L<Net::Server/DEFAULT ARGUMENTS>. For example, you could set
 reverse_lookups to get the hostnames for all users with:
 
-C<Set(%NetServerOptions, (reverse_lookups => 1));>
+C<set(%NetServerOptions, (reverse_lookups => 1));>
 
 =cut
 
-Set(%NetServerOptions, ());
+set(%NetServerOptions, ());
 
 =back
 
@@ -1173,7 +1173,7 @@
 
 =cut
 
-Set(@LexiconLanguages, qw(*));
+set(@LexiconLanguages, qw(*));
 
 =item C<@EmailInputEncodings>
 
@@ -1183,7 +1183,7 @@
 
 =cut
 
-Set(@EmailInputEncodings, qw(utf-8 iso-8859-1 us-ascii));
+set(@EmailInputEncodings, qw(utf-8 iso-8859-1 us-ascii));
 
 =item C<$EmailOutputEncoding>
 
@@ -1191,7 +1191,7 @@
 
 =cut
 
-Set($EmailOutputEncoding, 'utf-8');
+set($EmailOutputEncoding, 'utf-8');
 
 
 =back
@@ -1207,13 +1207,13 @@
 be overridden by users in their preferences.
 Some examples:
 
-C<Set($DateTimeFormat, { Format => 'ISO', Seconds => 0 });>
-C<Set($DateTimeFormat, 'RFC2822');>
-C<Set($DateTimeFormat, { Format => 'RFC2822', Seconds => 0, DayOfWeek => 0 });>
+C<set($DateTimeFormat, { Format => 'ISO', Seconds => 0 });>
+C<set($DateTimeFormat, 'RFC2822');>
+C<set($DateTimeFormat, { Format => 'RFC2822', Seconds => 0, DayOfWeek => 0 });>
 
 =cut
 
-Set($DateTimeFormat, 'DefaultFormat');
+set($DateTimeFormat, 'DefaultFormat');
 
 # Next two options are for Time::ParseDate
 
@@ -1224,7 +1224,7 @@
 
 =cut
 
-Set($DateDayBeforeMonth , 1);
+set($DateDayBeforeMonth , 1);
 
 =item C<$AmbiguousDayInPast>, C<$AmbiguousDayInFuture>
 
@@ -1240,8 +1240,8 @@
 
 =cut
 
-Set($AmbiguousDayInPast, 0);
-Set($AmbiguousDayInFuture, 0);
+set($AmbiguousDayInPast, 0);
+set($AmbiguousDayInFuture, 0);
 
 =back
 
@@ -1258,8 +1258,8 @@
 
 =cut
 
-Set(@ActiveStatus, qw(new open stalled));
-Set(@InactiveStatus, qw(resolved rejected deleted));
+set(@ActiveStatus, qw(new open stalled));
+set(@InactiveStatus, qw(resolved rejected deleted));
 
 =item C<$LinkTransactionsRun1Scrip>
 
@@ -1269,7 +1269,7 @@
 
 =cut
 
-Set($LinkTransactionsRun1Scrip, 0);
+set($LinkTransactionsRun1Scrip, 0);
 
 =item C<$StrictLinkACL>
 
@@ -1279,7 +1279,7 @@
 
 =cut
 
-Set($StrictLinkACL, 1);
+set($StrictLinkACL, 1);
 
 =item C<$PreviewScripMessages>
 
@@ -1288,7 +1288,7 @@
 
 =cut
 
-Set($PreviewScripMessages, 0);
+set($PreviewScripMessages, 0);
 
 =item C<$UseTransactionBatch>
 
@@ -1299,7 +1299,7 @@
 
 =cut
 
-Set($UseTransactionBatch, 0);
+set($UseTransactionBatch, 0);
 
 =item C<@CustomFieldValuesSources>
 
@@ -1309,7 +1309,7 @@
 
 =cut
 
-Set(@CustomFieldValuesSources, ());
+set(@CustomFieldValuesSources, ());
 
 =item C<$CanonicalizeRedirectURLs>
 
@@ -1321,14 +1321,14 @@
 
 =cut
 
-Set($CanonicalizeRedirectURLs, 0);
+set($CanonicalizeRedirectURLs, 0);
 =item C<$EnableReminders>
 
 Hide links/portlets related to Reminders by setting this to 0
 
 =cut
 
-Set($EnableReminders,1);
+set($EnableReminders,1);
 
 =back
 
@@ -1351,7 +1351,7 @@
 
 =cut
 
-Set($DevelMode, '1');
+set($DevelMode, '1');
 
 
 =back


More information about the Rt-commit mailing list