0
votes

I'm using the XMPPFramework, bridging from Swift, and when I successfully connect and authenticate, the offline messages are not coming through. They sit in the ejabberd interface as "offline messages". I thought this would empty out once I authenticate.

1

1 Answers

2
votes

You have to send an online presence once you're authenticated.

var presence = XMPPPresence()
Static.xmppStream!.sendElement(presence)