HI All I am using postfix to perform LDAP lookups on an Active Directory Server. My ldap-users is below. I have noticed that the samaccountname lookup is case sensitive so that when a user sends an email, it creates a Maildir for the recipient with the samaccountname of the user. How can I turn the case sensitivity off?
server_host = 192.168.153.143 search_base = dc=domain, dc=com version = 3 server_port = 389 #query_filter = (&(objectclass=person)(mail=%s)) query_filter = (&(objectclass=person)(mail=%s)) result_attribute = samaccountname result_format = %s/Maildir/ bind = yes bind_dn = administra...@domain.com bind_pw = password Thanks for any help.