ejabberd MAM 不适用于 MUC
ejabberd MAM does not work for MUC
xep-0313 适用于花名册,但不适用于聊天室。
我可以收到花名册的存档消息,但收不到房间的存档消息,为什么?
<iq type='set' id='juliet1'>
<query xmlns='urn:xmpp:mam:0'>
<x xmlns='jabber:x:data' type='submit'>
<field var='FORM_TYPE' type='hidden'>
<value>urn:xmpp:mam:0</value>
</field>
<field var='with'>
<value>roomJid@conference.host</value>
</field>
</x>
</query>
</iq>
收到的消息是:
<message xmlns="jabber:client" from="test3@192.168.1.67" to="test3@192.168.1.67/iPhone" id="dHS0oejBDWHp”>
<fin xmlns="urn:xmpp:mam:0" complete="true”>
<set xmlns="http://jabber.org/protocol/rsm”/>
</fin>
<no-copy xmlns="urn:xmpp:hints”/>
</message>
我猜你正在使用 ejabberd 贡献的模块。但是,官方 ejabberd 中添加了一个新的官方 MAM 模块,它支持最新版本的 MAM(截至今天为 0.4)和 MUC 归档。
已于ejabberd 15.06. You can can also get direct access to source from ejabberd Github repository. The module is here: https://github.com/processone/ejabberd/blob/master/src/mod_mam.erl
发布
xep-0313 适用于花名册,但不适用于聊天室。 我可以收到花名册的存档消息,但收不到房间的存档消息,为什么?
<iq type='set' id='juliet1'>
<query xmlns='urn:xmpp:mam:0'>
<x xmlns='jabber:x:data' type='submit'>
<field var='FORM_TYPE' type='hidden'>
<value>urn:xmpp:mam:0</value>
</field>
<field var='with'>
<value>roomJid@conference.host</value>
</field>
</x>
</query>
</iq>
收到的消息是:
<message xmlns="jabber:client" from="test3@192.168.1.67" to="test3@192.168.1.67/iPhone" id="dHS0oejBDWHp”>
<fin xmlns="urn:xmpp:mam:0" complete="true”>
<set xmlns="http://jabber.org/protocol/rsm”/>
</fin>
<no-copy xmlns="urn:xmpp:hints”/>
</message>
我猜你正在使用 ejabberd 贡献的模块。但是,官方 ejabberd 中添加了一个新的官方 MAM 模块,它支持最新版本的 MAM(截至今天为 0.4)和 MUC 归档。
已于ejabberd 15.06. You can can also get direct access to source from ejabberd Github repository. The module is here: https://github.com/processone/ejabberd/blob/master/src/mod_mam.erl
发布