I am in the process of creating a new ldif file to import some entries. I have a customized schema with an object class that includes the following attribute definition. The problem is when I try to import my ldif file.
Definition:
attributetype ( 1.3.6.1.4.1.xxx.xxx.xxx
NAME 'myBoolean'
EQUALITY booleanMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.7
SINGLE-VALUE )
Example ldif attribute:
myBoolean: false
I get "error code 21 - value contains invalid data"
Everything works fine if this is any kind of string syntax ( obviously ). Why can't I import the boolean value? Any ideas?
oh, I'm running version 2.0.7
Bryan