mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_server_contact_info: Apply JID normalization
This commit is contained in:
parent
a7fef46789
commit
a87492d53c
3 changed files with 29 additions and 1 deletions
|
@ -124,8 +124,10 @@ hide_os_type = true -- absence tested for in version.scs
|
|||
|
||||
Component "conference.localhost" "muc"
|
||||
storage = "memory"
|
||||
admins = { "Admin@localhost" }
|
||||
modules_enabled = {
|
||||
"muc_mam";
|
||||
"server_contact_info";
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -53,4 +53,29 @@ Romeo receives:
|
|||
</query>
|
||||
</iq>
|
||||
|
||||
|
||||
Romeo sends:
|
||||
<iq type='get' id='lx2' to='conference.localhost'>
|
||||
<query xmlns='http://jabber.org/protocol/disco#info'/>
|
||||
</iq>
|
||||
|
||||
<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'/>
|
||||
<field type='list-multi' var='admin-addresses'>
|
||||
<value>xmpp:admin@localhost</value>
|
||||
</field>
|
||||
<field type='list-multi' var='feedback-addresses'/>
|
||||
<field type='list-multi' var='sales-addresses'/>
|
||||
<field type='list-multi' var='security-addresses'/>
|
||||
<field type='list-multi' var='status-addresses'/>
|
||||
<field type='list-multi' var='support-addresses'/>
|
||||
</x>
|
||||
</query>
|
||||
</iq>
|
||||
|
||||
Romeo disconnects
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue