Displaying 1 result from an estimated 1 matches for "ldap_nam".
Did you mean:
  ldap_name
  
2006 Oct 15
1
Authenticating dovecot against Active Directory using bsdauth and login_ldap
...earch -h 10.0.0.23 \
           -D cn=UnixUser,cn=Users,dc=my,dc=domain,dc=co,dc=uk \
           -b cn=Users,dc=my,dc=domain,dc=co,dc=uk \
           -w mypassword \
           -v \
           -x "(objectClass=user)" |
while read key value ; do
  if [ "$key" == name: ]; then
    ldap_name="$value"
  fi
  # User Mail field as Unix name - remove @my.domain.co.uk if necessary
  if [ "$key" == mail: ]; then
    ldap_mail=$( echo "$value" | sed 's/@.*//g' )
    if ( id 2>/dev/null >/dev/null $ldap_mail ); then
      usermod -c "$ldap_nam...