[rt-users] Email completion and LDAP authentication

2009-10-13 Thread Jac Gubbels
Hi, I am having trouble running two plugins at the same time. Probably i am missing something stupid. Here is a snipped of my RT_SiteConfig.pm. Set(@Plugins,(qw(RTx::EmailCompletion))); Set(@Plugins,(qw(RT::Authen::ExternalAuth))); Now, depending on the order I set the @plugins they work

Re: [rt-users] Email completion and LDAP authentication

2009-10-13 Thread Kenneth Marshall
You need all of the plugins listed on the same line, not two separate lines. Ken On Tue, Oct 13, 2009 at 07:58:06PM +0300, Jac Gubbels wrote: Hi, I am having trouble running two plugins at the same time. Probably i am missing something stupid. Here is a snipped of my RT_SiteConfig.pm.

Re: [rt-users] Email completion and LDAP authentication

2009-10-13 Thread Lander, Scott
PM To: rt-users@lists.bestpractical.com Subject: [rt-users] Email completion and LDAP authentication Hi, I am having trouble running two plugins at the same time. Probably i am missing something stupid. Here is a snipped of my RT_SiteConfig.pm. Set(@Plugins,(qw(RTx::EmailCompletion))); Set

Re: [rt-users] Email completion and LDAP authentication

2009-10-13 Thread Jerrad Pierce
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,