[Rt-commit] r7590 - in rt/branches/3.7-EXPERIMENTAL: .

ruz at bestpractical.com ruz at bestpractical.com
Fri Apr 20 14:01:05 EDT 2007


Author: ruz
Date: Fri Apr 20 14:01:05 2007
New Revision: 7590

Modified:
   rt/branches/3.7-EXPERIMENTAL/   (props changed)
   rt/branches/3.7-EXPERIMENTAL/etc/RT_SiteConfig.pm

Log:
 r5038 at cubic-pc:  cubic | 2007-04-20 21:59:48 +0400
 * revert to default state


Modified: rt/branches/3.7-EXPERIMENTAL/etc/RT_SiteConfig.pm
==============================================================================
--- rt/branches/3.7-EXPERIMENTAL/etc/RT_SiteConfig.pm	(original)
+++ rt/branches/3.7-EXPERIMENTAL/etc/RT_SiteConfig.pm	Fri Apr 20 14:01:05 2007
@@ -1,22 +1,18 @@
+# Any configuration directives you include  here will override 
+# RT's default configuration file, RT_Config.pm
+#
+# To include a directive here, just copy the equivalent statement
+# from RT_Config.pm and change the value. We've included a single
+# sample value below.
+#
+# This file is actually a perl module, so you can include valid
+# perl code, as well.
+#
+# The converse is also true, if this file isn't valid perl, you're
+# going to run into trouble. To check your SiteConfig file, use
+# this comamnd:
+#
+#   perl -c /path/to/your/etc/RT_SiteConfig.pm
 
 Set( $rtname, 'example.com');
-Set( $WebPort , 11235);
-Set( $WebBaseURL , "http://localhost:$WebPort");
-
-   $RTIR_CONFIG_FILE = $RT::LocalEtcPath."/IR/RTIR_Config.pm";
-
-   require $RTIR_CONFIG_FILE
-     || die ("Couldn't load RTIR config file '$RTIR_CONFIG_FILE'\n$@");
-
-Set( %GnuPG,
-    Enable => 1,
-    OutgoingMessagesFormat => 'RFC', # Inline
-);
-
-
-Set(%GnuPGOptions, homedir => '/home/clkao/.gnupg');
-Set(@MailPlugins, 'Auth::GnuPGNG');
-
-
 1;
-


More information about the Rt-commit mailing list