Re: [rt-users] RT 4.2.10 and ExternalAuth using LDAP

2015-04-20 Thread Trev
Hello Indrek, I had some problems with External Auth as well. I ended up going with LDAP Import, authentication works based on LDAP credentials being imported. You have a bit more control as you can filter on groups or user names if you choose that route. I threw together a how to:

Re: [rt-users] RT 4.2.10 and ExternalAuth using LDAP

2015-04-20 Thread Jeff Blaine
https://metacpan.org/pod/RT::Authen::ExternalAuth::LDAP says: filter The filter to use to match RT users. You must specify it and it must be a valid LDAP filter encased in parentheses. For example: filter = '(objectClass=*)', On 4/20/2015 5:16 AM, Indrek Paas wrote: Hi,

[rt-users] RT 4.2.10 and ExternalAuth using LDAP

2015-04-20 Thread Indrek Paas
Hi, I'm setting up an RT server on: CentOS 7.1 x64 Apache 2.4 PostgreSQL Perl v5.16.3 Trying to use ExternalAuth to LDAP (Microsoft AD) using these settings in RT_SiteConfig.pm: Plugin( RT::Authen::ExternalAuth ); Set( $ExternalAuthPriority, [My_LDAP] ); Set( $ExternalInfoPriority, [My_LDAP]

Re: [rt-users] RT 4.2.10 and ExternalAuth using LDAP

2015-04-20 Thread Indrek Paas
Hi, messing with the filter = '(objectClass=*)', gave me FAILED LOGIN as did =person. Then tested the LDAP Import plugin and it worked. Now I need to see about AD user permissions (create tickets etc). Thank you for the suggestions and thank you Trev for making it more understandable. Your