On Jul 6, 2009, at 4:33 PM, Michael Ellis wrote: > Set(@Plugins,qw(RT::FM)); > Set( @Plugins, qw(RT::Authen::ExternalAuth));
The second line here tells RT to ignore the first one, so you only actually have RT::Authen::ExternalAuth active (which is visible from System Configuration) You need to enable your plugins all at the same time Set(@Plugins, qw(RT::FM RT::Authen::ExternalAuth) ); -kevin _______________________________________________ http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users Community help: http://wiki.bestpractical.com Commercial support: [email protected] Discover RT's hidden secrets with RT Essentials from O'Reilly Media. Buy a copy at http://rtbook.bestpractical.com
