如何<feature var='urn:xmpp:receipts'/>
在 xmpp 中启用?
当我发送此节时使用xmpp.js
<iq type='get'
from='user@localhost'
to='localhost'
id='1'>
<query xmlns='http://jabber.org/protocol/disco#info'/>
</iq>
响应带有启用的功能列表,如下所示
<iq xmlns="jabber:client" xml:lang="en" to="admin@localhost/example" from="localhost" type="result" id="1">
<query xmlns="http://jabber.org/protocol/disco#info">
...
<feature var="http://jabber.org/protocol/offline" />
<feature var="http://jabber.org/protocol/pubsub" />
....
</query>
</iq>
为了使用XEP-0184: Message Delivery Receipts我必须启用该功能如何做到这一点?