Adding multiple Plugin lines in RT_SiteConfig.pm

I am trying to include the following plugins in RT by adding them to the
RT_SiteConfig.pm file.

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

Set(@Plugins, qw(RT::Extension::CustomField::Checkbox));

The problem is when I add the second line; it seems the 1st one is
getting overwritten and the ExternalAuth is not working.

Can somebody please send the syntax of including 2 plugins in the Config
file.

Thanks

Naweed

The information contained in this e-mail message is intended only
for the personal and confidential use of the recipient(s) named
above. This message may be an attorney-client communication and/or
work product and as such is privileged and confidential. If the
reader of this message is not the intended recipient or an agent
responsible for delivering it to the intended recipient, you are
hereby notified that you have received this document in error and
that any review, dissemination, distribution, or copying of this
message is strictly prohibited. If you have received this
communication in error, please notify us immediately by e-mail, and
delete the original message.

This should do it:

Set(@Plugins, qw(
RT::Authen::ExternalAuth
RT::Extension::CustomField::Checkbox
));From: rt-users-bounces@lists.bestpractical.com [mailto:rt-users-bounces@lists.bestpractical.com] On Behalf Of Ahmed, Mohammed Naweed (LNG-BCT)
Sent: Tuesday, October 26, 2010 6:56 AM
To: rt-users@lists.bestpractical.com
Subject: [rt-users] Adding multiple Plugin lines in RT_SiteConfig.pm

I am trying to include the following plugins in RT by adding them to the RT_SiteConfig.pm file.

Set(@Plugins, qw(RT::Authen::ExternalAuth));
Set(@Plugins, qw(RT::Extension::CustomField::Checkbox));

The problem is when I add the second line; it seems the 1st one is getting overwritten and the ExternalAuth is not working.

Can somebody please send the syntax of including 2 plugins in the Config file.

Thanks
Naweed

The information contained in this e-mail message is intended only for the personal and confidential use of the recipient(s) named above. This message may be an attorney-client communication and/or work product and as such is privileged and confidential. If the reader of this message is not the intended recipient or an agent responsible for delivering it to the intended recipient, you are hereby notified that you have received this document in error and that any review, dissemination, distribution, or copying of this message is strictly prohibited. If you have received this communication in error, please notify us immediately by e-mail, and delete the original message.