My Openfire server is pulling groups from LDAP and having shared roster groups. The issues is that users do not see themselves under their groups, which makes jabber clients show the full jid (foo@jabber.exmaple.com) as apposed to their name(Foo Bar). An example:
John (jid: john@example.com) is a member of Sales
Jack) (jid: jack@example.com) is a member of Tech Support
Mark (jid: mark@example.com) is a member of Managers
John’s roster looks like:
Tech Support
- Jack
Managers
- Mark
Jack’s roster looks like:
Sales
- John
Managers
- Mark
Mark’s roster looks like:
Sales
- John
Tech Support
- Jack
When Jack sends a message to John, the client window renders it as:
jack@example.com: <message text>
When John recieves the message from Jack, the client window renders it as:
Jack: <message text>
This occurs because Openfire is pushing Jack’s JID with name ‘Jack’ to John, but not to Jack himself.
Is there a way to force Openfire to send the JID for each users self’s list?
Thanks!