An IM user may want to be informed when a contact creates an IM account. If the user knows some information about the contact (e.g., a phone number or email address), the user's service can use that information to place the contact on a "waiting list", then inform the user when the contact creates an IM account. This document defines an extension to XMPP Core [1] and XMPP IM [2] that enables such "waiting list" functionality, including the ability to add contacts on other domains if service providers agree to interoperate (e.g., to add a contact who uses a different mobile telephony service provider).
Note: The protocol defined herein is currently in use at several large service providers in Europe. Others are welcome to use the protocol.
This protocol is designed so that an IM User can:
In addition, this protocol is designed so that a ServiceProvider can:
Before adding or removing Contacts from its WaitingList, an IM User SHOULD retrieve its current WaitingList. The activity flow is as follows:
An IM User may know a URI for a Contact (e.g., a phone number or email address) but not the Contact's JID. In order to subscribe to the Contact's presence or otherwise communicate with the Contact over an instant messaging system, the IM User first needs to discover the Contact's JID based on a URI for the Contact. However, the Contact may not yet have an IM account. Because the IM User may therefore need to wait until the Contact creates an account, the IM User needs to add the Contact to a WaitingList. The activity flow is as follows:
An IM User should remove a contact from the WaitingList after the IM User Adds Contact to WaitingList use case ends (either successfully or unsuccessfully), and may remove a contact from the WaitingList at any other time.
This section of the document is provided for the sake of domains that implement XMPP as their local protocol; domains that implement another protocol will use their service-specific protocol to complete the user-to-domain interaction.
It is RECOMMENDED for an IM User's client to retrieve the WaitingList immediately after logging in. However, first it must discover its local WaitingListService. An IM User MAY use either Service Discovery (XEP-0030) [6] or the deprecated Agent Information (XEP-0094) [7] protocol.
<iq type='get' id='agent1'> <query xmlns='jabber:iq:agents'/> </iq>
<iq type='result' id='agent1'> <query xmlns='jabber:iq:agents'> ... <agent jid='waitlist.service-provider.com'> <name>Waiting List Service</name> <service>waitinglist</service> </agent> ... </query> </iq>
<iq type='get' id='disco1'> <query xmlns='http://jabber.org/protocol/disco#items'/> </iq>
<iq type='result' id='disco1'> <query xmlns='http://jabber.org/protocol/disco#items'> ... <item jid='waitlist.service-provider.com' name='Waiting List Service'/> ... </query> </iq>
<iq type='get' from='user@service-provider.com/resource' to='waitlist.service-provider.com' id='disco2'> <query xmlns='http://jabber.org/protocol/disco#info'/> </iq>
The WaitingListService SHOULD return detailed information about the service it provides, including the URI schemes it supports (see also the Service Discovery Features section of this document).
<iq type='result' from='waitlist.service-provider.com' to='user@service-provider.com/resource' id='disco2'> <query xmlns='http://jabber.org/protocol/disco#info'> <identity category='directory' type='waitinglist'/> <feature var='http://jabber.org/protocol/waitinglist'/> <feature var='http://jabber.org/protocol/waitinglist/schemes/mailto'/> <feature var='http://jabber.org/protocol/waitinglist/schemes/tel'/> </query> </iq>
Once an IM User has discovered the WaitingListService, the user's client SHOULD request its current Waiting List. This is done by sending an IQ-get to the WaitingListService containing an empty <query/> element qualified by the 'http://jabber.org/protocol/waitinglist' namespace:
<iq type='get' from='user@service-provider.com/resource' to='waitlist.service-provider.com' id='request1'> <query xmlns='http://jabber.org/protocol/waitinglist'/> </iq>
Upon request, the WaitingListService MUST return the current WaitingList to the IM User:
<iq type='result' from='waitlist.service-provider.com' to='user@service-provider.com/resource' id='request1'> <query xmlns='http://jabber.org/protocol/waitinglist'> <item id='12345'> <uri scheme='tel'>3033083282</uri> <name>PSA</name> </item> <item id='23456'> <uri scheme='mailto'>editor@xmpp.org</uri> <name>XMPP Extensions Editor</name> </item> </query> </iq>
Each ItemID MUST be unique within the scope of the client's WaitingList items. The value of the ItemID is an opaque string; an implementation MAY assign semantic meaning to the ItemID (e.g., id="John Smith (mobile)" rather than id="12345"), but such meaning is implementation-specific and outside the scope of the protocol defined herein. The user MAY include a <name/> element containing a natural-language name for the Contact.
The WaitingList MAY contain an item for which a JID has been discovered.
<iq type='get' from='user@service-provider.com/resource' to='waitlist.service-provider.com' id='jidask1'> <query xmlns='http://jabber.org/protocol/waitinglist'/> </iq> <iq type='result' from='waitlist.service-provider.com' to='user@service-provider.com/resource' id='jidask1'> <query xmlns='http://jabber.org/protocol/waitinglist'> <item id='12345' jid='stpeter@jabber.org'> <uri scheme='tel'>3033083282</uri> <name>PSA</name> </item> <item id='23456'> <uri scheme='mailto'>editor@xmpp.org</uri> <name>XMPP Extensions Editor</name> </item> </query> </iq>
Once an IM User's client has discovered the WaitingListService and requested the user's WaitingList, the user can add Contacts to the WaitingList based on the Contact's URI. (Note: This document uses the example of phone numbers via the 'tel' URI scheme, but the same rules apply to WaitingList items based on email addresses or other URI schemes.)
<iq type='set' to='waitlist.service-provider.com' id='waitinglist1'> <query xmlns='http://jabber.org/protocol/waitinglist'> <item> <uri scheme='tel'>contact-number</uri> <name>contact-name</name> </item> </query> </iq>
As described below, various error conditions may occur. (For information about error syntax, refer to RFC 6120 and Error Condition Mappings (XEP-0086) [8].)
If the IM User provided a URI whose scheme is not supported, WaitingListService MUST return a <bad-request/> error to the IM User and MUST NOT add the Contact to the WaitingList.
<iq type='error' from='waitlist.service-provider.com' to='user@service-provider.com/resource' id='waitinglist1'> <query xmlns='http://jabber.org/protocol/waitinglist'> <item> <uri scheme='tag'>shakespeare.lit,2005-08:waitlist1</uri> <name>contact-name</name> </item> </query> <error code='400' type='modify'> <bad-request xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/> </error> </iq>
If the IM User included a JID in the request, WaitingListService MUST return a <bad-request/> error to IM User and MUST NOT add the Contact to the WaitingList. (Note: A WaitingListService MUST NOT return a non-XMPP URI to an IM User based on the Contact's JID; see the Security Considerations section of this document.)
<iq type='error' from='waitlist.service-provider.com' to='user@service-provider.com/resource' id='waitinglist1'> <query xmlns='http://jabber.org/protocol/waitinglist'> <item jid='some-jid'> <uri scheme='tel'>contact-number</uri> <name>contact-name</name> </item> </query> <error code='400' type='modify'> <bad-request xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/> </error> </iq>
If the IM User provided an invalid URI (e.g., a phone number with too many digits or an email address with no '@' character), WaitingListService MUST return a <not-acceptable/> error to the IM User and MUST NOT add the Contact to the WaitingList.
<iq type='error' from='waitlist.service-provider.com' to='user@service-provider.com/resource' id='waitinglist1'> <query xmlns='http://jabber.org/protocol/waitinglist'> <item> <uri scheme='tel'>+1234563033083283</uri> <name>contact-name</name> </item> </query> <error code='406' type='modify'> <not-acceptable xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/> </error> </iq>
If one of the foregoing errors was generated (all of which have a type of "modify"), IM User SHOULD modify the request and re-submit it.
If none of the "modify" errors was generated, WaitingListService MUST inform the IM User that the request was successfully received, including a unique ID number for the new WaitingList item.
<iq type='result' from='waitlist.service-provider.com' to='user@service-provider.com/resource' id='waitinglist1'> <query xmlns='http://jabber.org/protocol/waitinglist'> <item id='34567'/> </query> </iq>
If none of the "modify" errors was generated and WaitingListService knows Contact JID when the IQ result is returned to the user (e.g., because Contact is served by ServiceProvider), WaitingListService MAY include the WaitingList item in the IQ result: [9]
<iq type='result' from='waitlist.service-provider.com' to='user@service-provider.com/resource' id='waitinglist1'> <query xmlns='http://jabber.org/protocol/waitinglist'> <item id='34567' jid='contact@service-provider.com'> <uri scheme='tel'>contact-number</uri> <name>contact-name</name> </item> </query> </iq>
If none of the "modify" errors was generated and WaitingListService does not know Contact JID when the IQ result is returned to the user, it needs to contact InteropPartners in order to determine if the Contact is associated with one of the InteropPartners. Thus before it returns the Contact JID to the IM User, it needs to wait for the one of the InteropPartners to return Contact JID or for all of the InteropPartners to return errors.
If all of the InteropPartners return an error of type "cancel" (typically <item-not-found/> and/or <not-authorized/>) to WaitingListService, WaitingListService MUST return an <item-not-found/> error (or local equivalent) to the IM User (and IM User SHOULD complete IM User Removes Contact from WaitingList use case).
<message type='error' from='waitlist.service-provider.com' to='user@service-provider.com/resource' id='waitinglist1'> <waitlist xmlns='http://jabber.org/protocol/waitinglist'> <item> <uri scheme='tel'>+1234563033083283</uri> <name>contact-name</name> </item> </waitlist> <error code='404' type='cancel'> <item-not-found xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/> </error> </message>
If the connection to at least one of the InteropPartners times out (a <remote-server-timeout/> error), WaitingListService MUST return an IQ-result as described above (indicating that the request was received) and resend the request to the InteropPartners that timed out. If connections continue to time out (over some configurable time period and for some configurable number of retries), WaitingListService SHOULD then return a <remote-server-timeout/> error to IM User via a "JID push" message as shown below.
If InterPartner's WaitingListService knows the Contact JID, it sends it to ServiceProvider's WaitingListService as shown in the ServiceProvider's WaitingListService Adds Contact to WaitingList section of this document.
If WaitingListService knows Contact JID (or learns Contact JID from InteropPartner), it MUST inform IM User through a "JID push" message, which consists of a message stanza that contains a <waitlist/> element qualified by the 'http://jabber.org/protocol/waitinglist' namespace: [10]
<message from='waitlist.service-provider.com' to='user@service-provider.com'> <body>This message contains a WaitingList item.</body> <waitlist xmlns='http://jabber.org/protocol/waitinglist'> <item id='34567' jid='contact@service-provider.com'> <uri scheme='tel'>contact-number</uri> <name>contact-name</name> </item> </waitlist> </message>
Note: The JID push uses an XMPP <message/> stanza because the WaitingListService has no knowledge of the user's presence and therefore cannot assume that an <iq/> stanza will be received by the user at a specific resource.
If WaitingListService learns that Contact's URI is not handled by any InteropPartner, it MUST inform IM User through a "JID push" message:
<message from='waitlist.service-provider.com' to='user@service-provider.com'> <body>Sorry, we cannot find this contact.</body> <waitlist xmlns='http://jabber.org/protocol/waitinglist'> <item id='34567' jid='contact@service-provider.com' type='error'> <uri scheme='tel'>contact-number</uri> <name>contact-name</name> <error code='404' type='cancel' xmlns='jabber:client'> <item-not-found xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/> </error> </item> </waitlist> </message>
After receiving the "JID push" message, IM User SHOULD complete the IM User Removes Contact from WaitingList use case.
In order to remove the item from the WaitingList, the IM User MUST complete the Remove Contact from WaitingList use case.
<iq type='set' from='user@service-provider.com/resource' to='waitlist.service-provider.com' id='remove1'> <query xmlns='http://jabber.org/protocol/waitinglist'> <item id='34567'> <remove/> </item> </query> </iq>
If WaitingListService previously recorded request, WaitingListService removes request from list and returns result to IM User.
<iq type='result' from='waitlist.service-provider.com' to='user@service-provider.com/resource' id='remove1'/>
If WaitingListService did not previously record this request, WaitingListService MUST return an <item-not-found/> error to the IM User.
<iq type='error' id='remove1'> <query xmlns='http://jabber.org/protocol/waitinglist'> <item id='34567'> <remove/> </item> </query> <error code='404' type='cancel'> <item-not-found xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/> </error> </iq>
This section of the document describes the inter-domain protocol for communication between WaitingListServices. The protocol defined in this section MUST be implemented by ServiceProviders.
A ServiceProvider's WaitingListService MUST be configured with a "whitelist" of InteropPartner's WaitingListServices with which it communicates. Therefore service discovery SHOULD NOT be necessary. However, if necessary it MAY use either the Agent Information protocol or the Service Discovery protocol as described in the following examples.
Note: The InteropPartner's WaitingListService is not required to be hosted by InteropPartner, and could be hosted by a third party (e.g., a neutral phone number translation service). In this case, InteropPartner would simply advertise 'waitlist.third-party.com' as its WaitingListService.
<iq type='get' from='waitlist.service-provider.com' to='interop-partner.com' id='agent2'> <query xmlns='jabber:iq:agents'/> </iq>
<iq type='result' from='interop-partner.com' to='waitlist.service-provider.com' id='agent2'> <query xmlns='jabber:iq:agents'> ... <agent jid='waitlist.interop-partner.com'> <name>Waiting List Service</name> <service>waitinglist</service> </agent> ... </query> </iq>
<iq type='get' from='waitlist.service-provider.com' to='interop-partner.com' id='disco3'> <query xmlns='http://jabber.org/protocol/disco#items'/> </iq>
<iq type='result' id='disco3'> <query xmlns='http://jabber.org/protocol/disco#items'> ... <item jid='waitlist.service-provider.com' name='Waiting List Service'/> ... </query> </iq>
<iq type='get' from='waitlist.service-provider.com' to='waitlist.interop-partner.com' id='disco4'> <query xmlns='http://jabber.org/protocol/disco#info'/> </iq>
<iq type='result' from='waitlist.interop-partner.com' to='waitlist.service-provider.com' id='disco4'> <query xmlns='http://jabber.org/protocol/disco#info'> <identity category='directory' type='waitinglist'/> <feature var='http://jabber.org/protocol/waitinglist'/> </query> </iq>
Once a ServiceProvider's WaitingListService has discovered the InteropPartner's WaitingListService and requested its WaitingList, the ServiceProvider's WaitingListService can add items to its WaitingList based on URI.
<iq type='set' from='waitlist.service-provider.com' to='waitlist.interop-partner.com' id='waitinglist2'> <query xmlns='http://jabber.org/protocol/waitinglist'> <item> <uri scheme='tel'>contact-number</uri> </item> </query> </iq>
If InteropPartner refuses to provide service to ServiceProvider, it MUST return a <not-authorized/> error to the ServiceProvider:
<iq type='error' from='waitlist.interop-partner.com' to='waitlist.service-provider.com' id='waitinglist2'> <query xmlns='http://jabber.org/protocol/waitinglist'> <item> <uri scheme='tel'>contact-number</uri> </item> </query> <error code='401' type='cancel'> <not-authorized xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/> </error> </iq>
If Contact's URI is not associated with a person served by this InteropPartner, the InteropPartner MUST return an <item-not-found/> error to the ServiceProvider.
<iq type='error' from='waitlist.interop-partner.com' to='waitlist.service-provider.com' id='waitinglist2'> <query xmlns='http://jabber.org/protocol/waitinglist'> <item> <uri scheme='tel'>contact-number</uri> </item> </query> <error code='404' type='cancel'> <item-not-found xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/> </error> </iq>
If ServiceProvider's WaitingListService receives <not-authorized/> and/or <item-not-found/> errors from all InteropPartners, it returns a <item-not-found/> error to IM User:
<message type='error' from='waitlist.service-provider.com' to='user@service-provider.com/resource' id='waitinglist1'> <waitlist xmlns='http://jabber.org/protocol/waitinglist'> <item> <uri scheme='tel'>+1234563033083283</uri> <name>contact-name</name> </item> </waitlist> <error code='404' type='cancel'> <item-not-found xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/> </error> </message>
If Contact's URI is associated with a person served by this InteropPartner, InteropPartner MUST return acknowledgement of the WaitingList addition to the ServiceProvider's WaitingListService.
<iq type='result' from='waitlist.interop-partner.com' to='waitlist.service-provider.com' id='waitinglist2'> <query xmlns='http://jabber.org/protocol/waitinglist'> <item id='34567'/> </query> </iq>
If Contact is an IM User served by InteropPartner, InteropPartner's WaitingListService pushes Contact's JID to ServiceProvider's WaitingListService.
<iq type='set' from='waitlist.interop-partner.com' to='waitlist.service-provider.com' id='jidpush1'> <query xmlns='http://jabber.org/protocol/waitinglist'> <item id='34567' jid='user@domain'> <uri scheme='tel'>contact-number</uri> </item> </query> </iq>
<iq type='result' from='waitlist.service-provider.com' to='waitlist.interop-partner.com' id='jidpush1'/>
After receiving acknowledgement (but not before), InteropPartner's WaitingListService MUST remove that item from the WaitingList for the ServiceProvider's WaitingListService.
<iq type='set' from='waitlist.service-provider.com' to='waitlist.interop-partner.com' id='remove2'> <query xmlns='http://jabber.org/protocol/waitinglist'> <item id='34567'> <remove/> </item> </query> </iq>
If item exists on WaitingList, InteropPartner's WaitingListService removes item from list and returns result to ServiceProvider's WaitingListService.
<iq type='result' from='waitlist.interop-partner.com' to='waitlist.service-provider.com' id='remove2'/>
If item does not exist on WaitingList, InteropPartner's WaitingListService MUST return an <item-not-found/> error to the ServiceProvider's WaitingListService.
<iq type='error' from='waitlist.interop-partner.com' to='waitlist.service-provider.com' id='remove2'> <query xmlns='http://jabber.org/protocol/waitinglist'> <item id='34567'> <remove/> </item> </query> <error code='404' type='cancel'> <item-not-found xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/> </error> </iq>
Protocols and mechanisms for inviting a Contact to register as an IM User are out of scope for this document and shall be determined by each InteropPartner individually.
A ServiceProvider's WaitingListService MUST record which of its IM Users have requested the JID associated with Contact's URI, and an InteropPartner's WaitingListService MUST record that Service Provider's WaitingListService (not User) has requested JID associated with Contact's URI. Therefore when Contact registers, InteropPartner's WaitingListService informs its local users as well as ServiceProvider's WaitingListService, and ServiceProvider's WaitingListService informs its local users.
The InteropPartner's WaitingListService is not required to be hosted by InteropPartner, and could be hosted by a third party (e.g., a neutral phone number translation service). In this case, InteropPartner would simply advertise 'waitlist.third-party.com' as its WaitingListService.
Once an IM User learns a Contact's JID, the IM User MAY send a normal subscription request to the Contact, setting the "to" address to Contact's JID. This interaction is defined in the base XMPP specifications and is out of scope for this document.
For historical reasons, implementations MUST support the older Agent Information protocol (XEP-0094) and SHOULD support Service Discovery (XEP-0030). Note well that the Agent Information protocol will eventually be deprecated in favor of Service Discovery.
An IM User's client receives WaitingList information either through a "JID push" message (received from WaitingListService at any time) or in the IQ result received after requesting the WaitingList (since one or more of the WaitingList items may contain a JID). (The same rule applies to a ServiceProvider's WaitingListService that receives an IQ set from an InteropPartner's WaitingListService.)
When an IM User logs in, the user's client SHOULD request the current WaitingList.
Although the examples in this document show the hostname of the WaitingListService as 'waitlist.third-party.com' (etc.), this is for convenience only; the hostname MAY be any valid DNS hostname.
When sending JID pushes, an implementation MAY specify a message type of 'headline', which in some deployments will prevent such messages from being stored offline for later delivery.
It can happen that WaitingListService does not receive a reply from InteropPartner within a certain amount of time or the connection to InteropPartner times out. Because such behavior is often transient, WaitingListService MAY attempt to reconnect and then resend the request (although any retry logic to handle these cases is a matter of implementation). However, WaitingListService SHOULD NOT return an <item-not-found/> error to IM User unless it knows definitively that the Contact's InteropPartner is permanently unavailable, since returning an <item-not-found/> error in response to temporary connection timeouts is likely to be misleading.
A ServiceProvider's WaitingListService MUST be configured with a "whitelist" of InteropPartners with which it communicates. The WaitingListService SHOULD NOT communicate with any InteropPartners that are not on the whitelist.
Requesting JIDs via WaitingLists is not bidirectional; i.e., a service MUST NOT allow an IM User to discover a Contact's non-XMPP URI based on the Contact's JID.
A service MAY require a Contact to approve the disclosure of the Contact's JID, either as a global preference or for each request; however, this is a local policy matter.
This document requires no interaction with the Internet Assigned Numbers Authority (IANA) [11].
The XMPP Registrar [12] includes 'http://jabber.org/protocol/waitinglist' in its registry of protocol namespaces.
The Jabber Registar includes a type of "waitinglist" in the "directory" category in its registry of service discovery identities.
The XMPP Registrar includes supported URI schemes in its registry of service discovery features. These features shall be of the form 'http://jabber.org/protocol/waitlist/schemes/SCHEME-NAME'.
This document registers the following two namespace names for URI schemes, but others MAY be registered in the future using standard registration procedures:
<?xml version='1.0' encoding='UTF-8'?> <xs:schema xmlns:xs='http://www.w3.org/2001/XMLSchema' targetNamespace='http://jabber.org/protocol/waitinglist' xmlns='http://jabber.org/protocol/waitinglist' elementFormDefault='qualified'> <xs:annotation> <xs:documentation> The protocol documented by this schema is defined in XEP-0130: http://www.xmpp.org/extensions/xep-0130.html </xs:documentation> </xs:annotation> <xs:import namespace='jabber:client' schemaLocation='http://xmpp.org/schemas/jabber-client.xsd'/> <xs:annotation> <xs:documentation> Note: there are two allowable root elements for the 'http://jabber.org/protocol/waitinglist' namespace, query and waitlist. The query element is used within IQ stanzas and the waitlist element is used within message stanzas. See XEP-0130 for details. </xs:documentation> </xs:annotation> <xs:element name='waitlist'> <xs:complexType> <xs:sequence> <xs:element ref='item' minOccurs='0' maxOccurs='unbounded'/> </xs:sequence> </xs:complexType> </xs:element> <xs:element name='query'> <xs:complexType> <xs:sequence> <xs:element ref='item' minOccurs='0' maxOccurs='unbounded'/> </xs:sequence> </xs:complexType> </xs:element> <xs:element name='item'> <xs:complexType> <xs:choice minOccurs='0' maxOccurs='unbounded' xmlns:xmpp='jabber:client'> <xs:sequence> <xs:element ref='uri'/> <xs:element ref='name' minOccurs='0'/> <xs:element ref='xmpp:error' minOccurs='0'/> </xs:sequence> <xs:element ref='remove'/> </xs:choice> <xs:attribute name='id' type='xs:string' use='optional'/> <xs:attribute name='jid' type='xs:string' use='optional'/> <xs:attribute name='type' use='optional'> <xs:simpleType> <xs:restriction base='xs:NCName'> <xs:enumeration value='error'/> </xs:restriction> </xs:simpleType> </xs:attribute> </xs:complexType> </xs:element> <xs:element name='uri'> <xs:complexType> <xs:simpleContent> <xs:extension base='xs:string'> <xs:attribute name='scheme' type='xs:NCName' use='required'/> </xs:extension> </xs:simpleContent> </xs:complexType> </xs:element> <xs:element name='name' type='string1023'/> <xs:element name='remove' type='empty'/> <xs:simpleType name='string1023'> <xs:restriction base='xs:string'> <xs:maxLength value='1023'/> </xs:restriction> </xs:simpleType> <xs:simpleType name='empty'> <xs:restriction base='xs:string'> <xs:enumeration value=''/> </xs:restriction> </xs:simpleType> </xs:schema>
This document in other formats: XML PDF
This XMPP Extension Protocol is copyright © 1999 – 2020 by the XMPP Standards Foundation (XSF).
Permission is hereby granted, free of charge, to any person obtaining a copy of this specification (the "Specification"), to make use of the Specification without restriction, including without limitation the rights to implement the Specification in a software program, deploy the Specification in a network service, and copy, modify, merge, publish, translate, distribute, sublicense, or sell copies of the Specification, and to permit persons to whom the Specification is furnished to do so, subject to the condition that the foregoing copyright notice and this permission notice shall be included in all copies or substantial portions of the Specification. Unless separate permission is granted, modified works that are redistributed shall not contain misleading information regarding the authors, title, number, or publisher of the Specification, and shall not claim endorsement of the modified works by the authors, any organization or project to which the authors belong, or the XMPP Standards Foundation.
## NOTE WELL: This Specification is provided on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. ##
In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall the XMPP Standards Foundation or any author of this Specification be liable for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising from, out of, or in connection with the Specification or the implementation, deployment, or other use of the Specification (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if the XMPP Standards Foundation or such author has been advised of the possibility of such damages.
This XMPP Extension Protocol has been contributed in full conformance with the XSF's Intellectual Property Rights Policy (a copy of which can be found at <https://xmpp.org/about/xsf/ipr-policy> or obtained by writing to XMPP Standards Foundation, P.O. Box 787, Parker, CO 80134 USA).
The HTML representation (you are looking at) is maintained by the XSF. It is based on the YAML CSS Framework, which is licensed under the terms of the CC-BY-SA 2.0 license.
The Extensible Messaging and Presence Protocol (XMPP) is defined in the XMPP Core (RFC 6120) and XMPP IM (RFC 6121) specifications contributed by the XMPP Standards Foundation to the Internet Standards Process, which is managed by the Internet Engineering Task Force in accordance with RFC 2026. Any protocol defined in this document has been developed outside the Internet Standards Process and is to be understood as an extension to XMPP rather than as an evolution, development, or modification of XMPP itself.
The primary venue for discussion of XMPP Extension Protocols is the <standards@xmpp.org> discussion list.
Discussion on other xmpp.org discussion lists might also be appropriate; see <http://xmpp.org/about/discuss.shtml> for a complete list.
Errata can be sent to <editor@xmpp.org>.
The following requirements keywords as used in this document are to be interpreted as described in RFC 2119: "MUST", "SHALL", "REQUIRED"; "MUST NOT", "SHALL NOT"; "SHOULD", "RECOMMENDED"; "SHOULD NOT", "NOT RECOMMENDED"; "MAY", "OPTIONAL".
1. RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core <http://tools.ietf.org/html/rfc6120>.
2. RFC 6121: Extensible Messaging and Presence Protocol (XMPP): Instant Messaging and Presence <http://tools.ietf.org/html/rfc6121>.
3. RFC 3966: The tel URI for Telephone Numbers <http://tools.ietf.org/html/rfc3966>.
4. RFC 2368: The mailto URL scheme <http://tools.ietf.org/html/rfc2368>.
5. RFC 3986: Uniform Resource Identifiers (URI): Generic Syntax <http://tools.ietf.org/html/rfc3986>.
6. XEP-0030: Service Discovery <https://xmpp.org/extensions/xep-0030.html>.
7. XEP-0094: Agent Information <https://xmpp.org/extensions/xep-0094.html>.
8. XEP-0086: Error Condition Mappings <https://xmpp.org/extensions/xep-0086.html>.
9. Even if WaitingListService returns Contact JID in the IQ-result, it MUST also send a "JID push" message.
10. When waiting list information is included in a message stanza, the root element for the 'http://jabber.org/protocol/waitinglist' namespace is <waitlist/> rather than <query/> (as used within IQ stanzas). This disparity is historical and tracks the protocol syntax that was most widely implemented, as defined in version 0.4 of this specification. In the interest of interoperability, the IQ usage was changed back to <query/> in version 1.1 of this specification. If this document were not historical, the root element usage would be harmonized to use only the <waitlist/> element.
11. The Internet Assigned Numbers Authority (IANA) is the central coordinator for the assignment of unique parameter values for Internet protocols, such as port numbers and URI schemes. For further information, see <http://www.iana.org/>.
12. The XMPP Registrar maintains a list of reserved protocol namespaces as well as registries of parameters used in the context of XMPP extension protocols approved by the XMPP Standards Foundation. For further information, see <https://xmpp.org/registrar/>.
Note: Older versions of this specification might be available at http://xmpp.org/extensions/attic/
Changed status to Deprecated, per a vote of the XMPP Council.
END