Hello,
The user I use to bind to my LDAP server have a '&' character in its password. When this character is parsed, the string that correspond with the password in ldap-users.cf gets cut in two with bind_pw = admin
Let's say my password is ABC&DEF:
docker-compose.yml
[...]
environment:
- LDAP_BIND_PW=ABC&DEF
[...]
/etc/postfix/ldap-users.cf
[...]
bind_pw = ABCbind_pw = adminDEF
[...]
Even with quotes and double quotes, it stays the same.
Is there any way I can fix this other than entering it manually?
Hello,
The user I use to bind to my LDAP server have a '&' character in its password. When this character is parsed, the string that correspond with the password in ldap-users.cf gets cut in two with
bind_pw = adminLet's say my password is ABC&DEF:
docker-compose.yml
[...] environment: - LDAP_BIND_PW=ABC&DEF [...]/etc/postfix/ldap-users.cf
Even with quotes and double quotes, it stays the same.
Is there any way I can fix this other than entering it manually?