blob: 1175a6de937c771cf2bc6747d3665a59c9850d65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# mod_mam should apply JIDprep in prefs
[Client] Romeo
jid: romeo@localhost
password: password
-----
Romeo connects
Romeo sends:
<iq id="lx2" type="set">
<prefs xmlns="urn:xmpp:mam:2" default="roster">
<always>
<jid>JULIET@MONTAGUE.LIT</jid>
</always>
<never>
<jid>MONTAGUE@MONTAGUE.LIT</jid>
</never>
</prefs>
</iq>
Romeo receives:
<iq id="lx2" type="result">
<prefs xmlns="urn:xmpp:mam:2" default="roster">
<always>
<jid>juliet@montague.lit</jid>
</always>
<never>
<jid>montague@montague.lit</jid>
</never>
</prefs>
</iq>
Romeo disconnects
|