use https by default
authorStephen Soltesz <soltesz@cs.princeton.edu>
Thu, 25 Jun 2009 04:43:00 +0000 (04:43 +0000)
committerStephen Soltesz <soltesz@cs.princeton.edu>
Thu, 25 Jun 2009 04:43:00 +0000 (04:43 +0000)
add Custom Logo fields.

rt3/RT_SiteConfig.pm

index cf89cf6..5c2f530 100644 (file)
@@ -47,7 +47,7 @@ Set($DatabaseRTHost , 'localhost');
 Set($WebPath , "/rt3"); # e.g. Set($WebPath , "");
 
 #URL
-Set($WebBaseURL , "http://PLC_RT_HOSTNAME"); # Set($WebBaseURL , "http://rt.PLC_RT_HOSTNAME");
+Set($WebBaseURL , "https://PLC_RT_HOSTNAME"); # Set($WebBaseURL , "http://rt.PLC_RT_HOSTNAME");
 
 #Adding plugins
 #Set(@Plugins,qw(RT::FM));
@@ -71,4 +71,10 @@ Set($ParseNewMessageForTicketCcs , 1);
 # pattern to self-identify to avoid loops to itself.
 Set($RTAddressRegexp , '^(support|monitor|legal|security)@PLC_RT_HOSTNAME$');
 
+Set($WebImagesURL , $WebPath . "/NoAuth/images/");  # need this for below 
+Set($LogoURL, "/misc/logo.gif"); 
+Set($LogoLinkURL, 'http://PLC_WWW_HOSTNAME'); 
+Set($LogoImageURL, "http://PLC_RT_HOSTNAME/misc/logo.gif"); 
+Set($LogoAltText, "PLC_NAME");
+
 1;