[Date Prev][Date Next] [Chronological] [Thread] [Top]

Re: syncrepl mangles operational attributes (ITS#3259)



Please apply the following patch for the entryUUID normalization issue.

http://ftp.openldap.org/incoming/ITS3259.patch


In order to replicate all operational attributes, you can add the following
line in the consumer's slapd.conf.

syncrepl rid=%d
    .....
    attrs="*,+"
    .....

In order to include only a subset of the operational attributes, you can
list them in the attrs=... line

syncrepl rid=%d
    .....
    attrs="*,creatorsName,createTimestamp"
    .....

Thanks.