> Set(@Plugins, qw(RT::Authen::ExternalAuth), qw(RTx::EmailCompletion));
qw means "quote words" so that would be better written: Set(@Plugins, qw(RT::Authen::ExternalAuth RTx::EmailCompletion RTx::Calendar RTx::Tags RT::Extension::BecomUser)); Otherwise, just write Set(@Plugins, 'RT::Authen::ExternalAuth', 'RTx::EmailCompletion'); -- Cambridge Energy Alliance: Save money. Save the planet. _______________________________________________ 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
