[rt-users] Hide Resolve in 4.0.5

Christopher Lasater CLasater at taleo.com
Wed Feb 15 10:01:34 EST 2012


I removed the External Auth Config, LDAP Importer, and Logging, since they should not be related.  I removed the lifecycles for testing and the issues still occurs, and also tested with and without devel mode.  I do not see much in here that could affect this.


Set($HideResolveActionsWithDependencies, 1); #Hides the Resolve action when tickets 
                                             #have dependecies
Set($ForceApprovalsView, 1);   # Redirects user to approval page when they try to 
                               # view an approval ticket

### Full Text Search
#Postgres
Set( %FullTextSearch,
    Enable     => 1,
    Indexed    => 1,
    Column     => 'ContentIndex',
    Table      => 'Attachments',
);

### Plugins
Set ( %GnuPG, Enable => 0);
Set ( @Plugins, qw(RT::Authen::ExternalAuth) );

### WebServer

Set ($WebPort , 2080);
Set ( $rtname, 'ourwebpage'); # change will impact RTAddressRegexp
Set ( $LogoLinkURL, "http://ourwebpage.com");
Set ($WebPath , "");
Set ($WebBaseURL , "http://ourwebpage.com");
Set ($WebURL , $WebBaseURL . ":3001/");
Set ($WebDomain, "ourserver.fq.dn");
Set ($CanonicalizeRedirectURLs, 1);
Set ($Timezone , 'US/Eastern');

### General Settings
Set ($Organization, "company");
#Set ($DevelMode => 1); # Dev mode for making Web changes instant
Set ($RememberDefaultQueue => 1); # Drop down Queue will stay the same
Set ($ShowMoreAboutPrivilegedUsers => 1); 
Set ($RTAddressRegexp, $rtname . '$');
Set ($SimplifiedRecipients, 1); # Shows simple list of who will receive and email
Set ($UseSQLForACLChecks, 1);



More information about the rt-users mailing list