LDAP vcard errors if results contain $

Description

Reported by badriram in the forum:

http://www.igniterealtime.org/community/thread/33211

I had an issue with my openfire server showing errors everytime we would lookup a person's profile. It turned out that since a few of ldap fields results contained $ it failed. So I changed the following

org.jivesoftware.openfire.ldap.LdapVCardProvider$VCard.treeWalk in file LdapVCardProvider.java at line 521

from

format = format.replaceFirst("({)(" + field + ")(})", value);

to

format = format.replaceFirst("({)(" + field + ")(})", java.util.regex.Matcher.quoteReplacement(value));

Environment

None

Activity

Show:

Daniel Henninger July 16, 2008 at 1:12 AM

Same issue.

Fixed

Details

Assignee

Reporter

Fix versions

Affects versions

Priority

Created June 5, 2008 at 12:48 AM
Updated July 17, 2008 at 9:37 PM
Resolved July 17, 2008 at 9:37 PM