add RTx::Calendar 0.07
[freeside.git] / rt / etc / RT_Config.pm
index a5dacd3..a976fb3 100644 (file)
@@ -104,7 +104,7 @@ Valid types are "mysql", "Oracle" and "Pg"
 
 =cut
 
-Set($DatabaseType , 'mysql');
+Set($DatabaseType , 'Pg');
 
 =item C<$DatabaseHost>, C<$DatabaseRTHost>
 
@@ -133,7 +133,7 @@ The name of the database user (inside the database)
 
 =cut
 
-Set($DatabaseUser , 'rt_user');
+Set($DatabaseUser , 'freeside');
 
 =item C<$DatabasePassword>
 
@@ -141,7 +141,7 @@ Password the C<$DatabaseUser> should use to access the database
 
 =cut
 
-Set($DatabasePassword , 'rt_pass');
+Set($DatabasePassword , '');
 
 =item C<$DatabaseName>
 
@@ -150,7 +150,7 @@ it's SID, DB objects are created in L<$DatabaseUser>'s schema.
 
 =cut
 
-Set($DatabaseName , 'rt3');
+Set($DatabaseName , 'freeside');
 
 =item C<$DatabaseRequireSSL>
 
@@ -738,7 +738,7 @@ NOTE that options with '-' character MUST be quoted.
 =cut
 
 Set(%GnuPGOptions,
-    homedir => 'var/data/gpg',
+    homedir => '/opt/rt3/var/data/gpg',
 
 # URL of a keyserver
 #    keyserver => 'hkp://subkeys.pgp.net',
@@ -792,7 +792,7 @@ direct file logging.
 =cut
 
 Set($LogToFile      , undef);
-Set($LogDir, 'var/log');
+Set($LogDir, '/opt/rt3/var/log');
 Set($LogToFileNamed , "rt.log");    #log to rt.log
 
 =item C<$LogStackTraces>
@@ -846,6 +846,9 @@ RT ships with several themes by default:
   3.4-compat      A 3.4 compatibility stylesheet to make RT look
                   (mostly) like 3.4
 
+This bundled distibution of RT also includes (enabled by default):
+  freeside2.1     Integration with Freeside
+
 This value actually specifies a directory in F<share/html/NoAuth/css/>
 from which RT will try to load the file main.css (which should
 @import any other files the stylesheet needs).  This allows you to
@@ -854,7 +857,7 @@ option can be overridden by users in their preferences.
 
 =cut
 
-Set($WebDefaultStylesheet, 'web2');
+Set($WebDefaultStylesheet, 'freeside2.1');
 
 =item C<$UsernameFormat>
 
@@ -987,7 +990,7 @@ login if you change it.
 
 =cut
 
-Set($WebNoAuthRegex, qr{^ (?:/+NoAuth/ | /+REST/\d+\.\d+/NoAuth/) }x );
+Set($WebNoAuthRegex, qr{^ /rt (?:/+NoAuth/ | /+REST/\d+\.\d+/NoAuth/) }x );
 
 =item C<$SelfServiceRegex>
 
@@ -1343,7 +1346,7 @@ customized homepage ("RT at a glance").
 
 =cut
 
-Set($HomepageComponents, [qw(QuickCreate Quicksearch MyAdminQueues MySupportQueues MyReminders RefreshHomepage Dashboards)]);
+Set($HomepageComponents, [qw(QuickCreate Quicksearch MyCalendar MyAdminQueues MySupportQueues MyReminders RefreshHomepage Dashboards)]);
 
 =item C<@MasonParameters>
 
@@ -1775,7 +1778,7 @@ C<Set(@Plugins, (qw(Extension::QuickDelete RT::FM)));>
 
 =cut
 
-Set(@Plugins, ());
+Set(@Plugins, (qw(RTx::Calendar)));
 
 =back