Subject: The mailing list for listmasters using Sympa
List archive
Re: [sympa-users] Using an AD Group or Exchange Distribution List as external datasource for a sympa list
- From: David Verdin <address@concealed>
- To: address@concealed
- Subject: Re: [sympa-users] Using an AD Group or Exchange Distribution List as external datasource for a sympa list
- Date: Wed, 22 Oct 2014 10:43:18 +0200
Hi Steve, Thank you so much for documenting this! I know a lof of organizations rely on AD and it has always been hard to make it work. I added your tutorial to the Sympa manual, here: https://www.sympa.org/manual/ldap Please note that you - and anybody subscribed to this list - can edit this page, as well as the rest of the Sympa manula. So anybody can improve it. Best regards, David Le 22/10/14 00:01, Steve Shipway a
écrit :
First, create a service account in your LDAP so that Sympa can connect. This only needs read-only access. You need to use a 2level query, since AD stores DNs against group membership. Also, note that if using a .incl file to define external list admins, you cannot pass a full DN as a parameter as it contains commas (I’ve logged a bug report for this).
In this example, replace [% param.0 %] with the group name (the cn, not the dn). Obviously, change the host, user and passwd to the appropriate values for your site, and also the suffix1 to match your tree base.
include_ldap_2level_query name ad_group_[% param.0 %] host uoa.auckland.ac.nz port 3269 user uoasvcsympa passwd XXXXXXXXX use_ssl yes ssl_version tls suffix1 DC=UoA,DC=auckland,DC=ac,DC=nz filter1 (&(cn=[% param.0 %])(objectClass=group)) attrs1 member select1 all timeout1 60 scope1 sub suffix2 [attrs1] filter2 (objectClass=person) attrs2 mail select2 first scope2 base timeout2 10
Note that we’re forcing TLS (since Poodle should have had you disabling SSLv2/3 on your AD LDAP!) and have a 60s timeout, which might be too low for huge groups with a slow AD. We have patched our Sympa to also retrieve displayName on the final lookup to populate the gecos data; however with vanilla Sympa you don’t get this.
Now, how about an Exchange distribution list? You can always just chain to one, but why not use the distribution list as an external datasource so that the members can be properly loaded in?
In this example, [% param.0 %] is the full email address of the distribution list, such as address@concealed. Again, we use a 2level lookup, since a distribution list holds the DN of the members rather than their email addresses. Filter1 is possibly overkill, but we want to cover all different possible configurations of AD (you might be able to simplify it for your system).
include_ldap_2level_query name exchange_[% param.0 %] host uoa.auckland.ac.nz port 3269 user uoasvcsympa passwd XXXXXXX use_ssl yes ssl_version tls suffix1 DC=UoA,DC=auckland,DC=ac,DC=nz filter1 (|(proxyAddresses=[% param.0 %])(proxyAddresses=smtp:[% param.0 %])(mailLocalAddress=[% param.0 %])(mail=[% param.0 %])) attrs1 member select1 all timeout1 60 scope1 sub suffix2 [attrs1] filter2 (objectClass=person) attrs2 mail select2 first scope2 base timeout2 10
Both of these .incl templates work for us on our Windows2013 system, and are in active use for list configurations. --
A bug in Sympa? Quick! To the bug tracker!
|
Attachment:
smime.p7s
Description: Signature cryptographique S/MIME
-
[sympa-users] Using an AD Group or Exchange Distribution List as external datasource for a sympa list,
Steve Shipway, 10/21/2014
- Re: [sympa-users] Using an AD Group or Exchange Distribution List as external datasource for a sympa list, David Verdin, 10/22/2014
Archive powered by MHonArc 2.6.19+.