> -----Original Message----- > From: [email protected] > [mailto:[email protected]] On Behalf > Of Rob Munsch > Sent: Monday, March 02, 2009 10:42 AM > To: Dhrakar > Cc: [email protected] > Subject: Re: [rt-users] *sigh* unable to get Plugins to work > > On Mon, Mar 2, 2009 at 1:32 PM, Dhrakar > <[email protected]> wrote: > > > > Hello All, > > I'm having a heck of a time getting a couple of plugins to > work with > > RT 3.8.2. I've got RT up and running, but whenever I try > to add the > > Set(@Plugins,(qw(RT::Authen::ExternAuth))); I get the error: > > I'm don't know enough about Perl to know if it'll matter, but > I noticed you have more parentheses than me. I have: > > Set(@Plugins, qw(RT::Extension::ExtractCustomFieldValues > RT::Authen::ExternalAuth)); > > no opening ( before the qw.
Yes, this is your issue, since what you're passing with the extra parenthesis is an anonymous function instead of the string scalar entry for append to the Plugins array for inclusion. -- Gary L. Greene, Jr. IT Operations Minerva Networks, Inc. Tel: (408) 240-1239 Cell: (650) 704-6633 _______________________________________________ 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
