blob: 15537e1160fa920a75dc871eedd04de484d06f51 (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# XEP-0157: Contact Addresses for XMPP Services
# mod_server_contact_info
[Client] Romeo
jid: romeo@localhost
password: password
-----
Romeo connects
Romeo sends:
<iq type='get' id='lx2' to='localhost'>
<query xmlns='http://jabber.org/protocol/disco#info'/>
</iq>
# Ignore other disco#info features, identities etc
Romeo receives:
<iq from='localhost' id='lx2' type='result'>
<query xmlns='http://jabber.org/protocol/disco#info' scansion:strict='false'>
<x xmlns='jabber:x:data' type='result'>
<field type='hidden' var='FORM_TYPE'>
<value>http://jabber.org/network/serverinfo</value>
</field>
<field type='list-multi' var='abuse-addresses'>
<value>mailto:abuse@localhost</value>
<value>xmpp:abuse@localhost</value>
</field>
<field type='list-multi' var='admin-addresses'>
<value>mailto:admin@localhost</value>
<value>xmpp:admin@localhost</value>
</field>
<field type='list-multi' var='feedback-addresses'>
<value>http://localhost/feedback.html</value>
<value>mailto:feedback@localhost</value>
<value>xmpp:feedback@localhost</value>
</field>
<field type='list-multi' var='sales-addresses'>
<value>xmpp:sales@localhost</value>
</field>
<field type='list-multi' var='security-addresses'>
<value>xmpp:security@localhost</value>
</field>
<field type='list-multi' var='support-addresses'>
<value>https://localhost/support.html</value>
<value>xmpp:support@localhost</value>
</field>
</x>
</query>
</iq>
Romeo disconnects
|