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(@Plugins,(qw(RT::Authen::ExternalAuth)));

Now, depending on the order I set the @plugins they work individually but
not together. The plugin that gets listed last works.

I have recently upgraded to the new LDAP authentication plugin. With the old
one things worked together. I have carefully followed the steps in the
README of both plugins. Both are the latest versions.

I run RT3.8.4 on an ubuntu box.

Thanks heaps for any help or pointers.
Jac

You need all of the plugins listed on the same line, not two
separate lines.

KenOn 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.

Set(@Plugins,(qw(RTx::EmailCompletion)));
Set(@Plugins,(qw(RT::Authen::ExternalAuth)));

Now, depending on the order I set the @plugins they work individually but
not together. The plugin that gets listed last works.

I have recently upgraded to the new LDAP authentication plugin. With the old
one things worked together. I have carefully followed the steps in the
README of both plugins. Both are the latest versions.

I run RT3.8.4 on an ubuntu box.

Thanks heaps for any help or pointers.
Jac


The rt-users Archives

Community help: http://wiki.bestpractical.com
Commercial support: sales@bestpractical.com

Discover RT’s hidden secrets with RT Essentials from O’Reilly Media.
Buy a copy at http://rtbook.bestpractical.com

Should be all one line, like:

Set(@Plugins, qw(RT::Authen::ExternalAuth), qw(RTx::EmailCompletion));From: rt-users-bounces@lists.bestpractical.com [mailto:rt-users-bounces@lists.bestpractical.com] On Behalf Of Jac Gubbels
Sent: Tuesday, October 13, 2009 12:58 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(@Plugins,(qw(RT::Authen::ExternalAuth)));

Now, depending on the order I set the @plugins they work individually but not together. The plugin that gets listed last works.

I have recently upgraded to the new LDAP authentication plugin. With the old one things worked together. I have carefully followed the steps in the README of both plugins. Both are the latest versions.

I run RT3.8.4 on an ubuntu box.

Thanks heaps for any help or pointers.
Jac
This e-mail message is intended only for the personal use of the recipient(s) named above. If you are not an intended recipient, you may not review, copy or distribute this message. If you have received this communication in error, please notify the Hearst Service Center (cadmin@hearstsc.com) immediately by email and delete the original message.

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.