This question is related to Convert a Base64 LDIF file to plaintext (for import) .
A LDAP I'm using has some attributes containing multiple values. E.g. foobarStatus
has the following value:
market = "US"
mgmt.account.mode = "X12"
foo.field = "Something"
bar.field = "Something else"
(When this attribute is added or modified via a LDIF file, this value is imported encoded in Base64.)
Using Ldapadmin (a LDAP GUI client) to examine the entry shows the value of this attribute as such:
market = "US"mgmt.account.mode = "X12"foo.field = "Something"bar.field = "Something else"
which made me think about the question in the title: What is the appropriate syntax to separate multiple values in a LDAP multi-valued attribute?