--On Thursday, February 20, 2025 9:27 AM -0500 Dino Edwards dino.edwards@mydirectmail.net wrote:
I cannot figure out how to get remoteauth to work. I would appreciate some help. I'm trying to use remoteauth against an AD domain. Using the docs and the examples, this is the config that I have but it's not authenticating to the AD domain:
olcRemoteAuthTLS: starttls=no tls_reqcert=never
AD pretty much always requires TLS, but you've turned it off entirely. I would expect this to fail.
You either need to use ldaps:// + port 636 & starttls=no
OR
ldap:// + port 389
and starttls=yes
--Quanah