Documentation of invisible presence.
WARNING: This document has been Rejected by the XMPP Council. Implementation of the protocol described herein is not recommended under any circumstances.
Series: XEP
Number: 0018
Publisher: XMPP Standards Foundation
Status:
Rejected
Type:
Informational
Version: 0.2
Last Updated: 2003-09-26
Approving Body: XMPP Council
Dependencies: None
Supersedes: None
Superseded By: None
Short Name: N/A
Wiki Page: <http://wiki.jabber.org/index.php/Invisible Presence (XEP-0018)>
Email:
ben@blahr.com
JabberID:
rynok@jabber.com
Email:
jer@jabber.org
JabberID:
jer@jabber.org
The preferred venue for discussion of this document is the Standards discussion list: <http://mail.jabber.org/mailman/listinfo/standards>.
Errata may be sent to <editor@xmpp.org>.
The Extensible Messaging and Presence Protocol (XMPP) is defined in the XMPP Core (RFC 3920) and XMPP IM (RFC 3921) 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 following 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. Introduction
2. Requirements
3. Use Cases
3.1. User Becomes Invisible to All Contacts
3.2. User Becomes Visible to All Contacts
3.3. User Becomes Invisible to Selected Contact
3.4. User Becomes Visible to Selected Contact
4. Server Implementation Details
4.1. Undirected Presence While Invisible to Selected Contacts
5. Security Considerations
6. IANA Considerations
7. XMPP Registrar Considerations
Notes
Revision History
Jabber users have long wanted the ability to come online using Jabber, but appear "unavailable" to a subset of their roster, an ability which is commonly referred to as invisible mode. While several current implementations have various ways of providing this functionality, the systems currently in place often lack clear behavior and documentation. This document provides requirements for invisible mode and clarifies the existing protocol-in-use to provide the desired functionality.
Note well: The functionality described herein can and should be implemented by means of the Privacy Rules namespace defined in XMPP IM [1]. This document is provided for historical purposes only.
The requirements for invisible mode are basic:
For the purposes of this discussion, we will assume this terminology.
Assuming the user's client has authenticated with the system normally, it would send the following presence stanza to become invisible (note: this can be the initial presence stanza sent by the user). To do so, the client will send undirected presence with a type="invisible" attribute.
Example 1. Invisible presence stanza
<presence type="invisible"/>
If a user chooses to become visible after being invisible, the client will send undirected presence with a type="visible" attribute.
Example 2. Visible presence stanza
<presence type="visible"/>
If a user is visible to all of their contacts, and wishes to become invisible to selected contacts on their roster, then their client will send the following directed presence stanza.
Example 3. User becomes invisible to joe@foo.com
<presence to="joe@foo.com" type="invisible"/>
In this case, the server begins to track that the user is invisible to the contact joe@foo.com, and does not forward further presence updates to joe@foo.com. If the user wishes joe@foo.com to received further presence updates, then their client must send either an undirected presence stanza with a type="visible" attribute (see Example 2), or a directed presence stanza to joe@foo.com with a type="visible" attribute as below.
Example 4. User becomes visible to joe@foo.com
<presence to="joe@foo.com" type="visible"/>
The opposite behavior of the previous section should, also, be present in the server. For example, if a user is invisible to all of their contacts, they should be able to become visible to a selected contact by send a stanza similar to the one in Example 4.
As with the previous section, a user can later choose to hide his presence updates for joe@foo.com by either sending an undirected presence stanza (see Example 1), or by sending a directed presence stanza to joe@foo.com (see Example 3).
The above section documents the major points of the invisible mode protocol. It is important to understand how the server should interact with the protocol documented above.
Normally, when a server receives a presence stanza, it stamps the appropriate 'from' attribute on the stanza and sends it on its way. If the stanza does not possess a 'to' attribute, the process of sending the stanza on its way involves broadcasting that stanza to all contacts listed in the user's roster. If the stanza does have a 'to' attribute, the stanza is simply routed to the correct contact. With the addition of invisible mode presence, the server MUST now verify that a stanza should be directed to contacts on a user's roster before sending it on. In addition, stanzas that are directly related to invisible presence (stanzas with a 'type' attribute of either "visible" or "invisible") MUST NOT be sent to any contacts, but MAY cause other presence stanzas to be sent instead.
One of the biggest failings of older invisible mode implementations were client features like auto-away. In most cases, these auto-away stanza would inadvertently cause a user to become visible (although away) to all contacts on its roster. This invisible presence protocol has been designed to deal with that problem elegantly.
Consider the following situation (the protocol for which is shown in the examples below):
Example 5. joe@foo.com sends initial presence stanza
<presence type="invisible"/>
Since joe@foo.com has just come online, the server SHOULD NOT forward any presence stanzas to contacts on his roster.
Example 6. joe@foo.com sends visible presence to rynok@foo.com
<presence to="rynok@foo.com" type="visible"/>
Example 7. Server forwards presence update to rynok@foo.com
<presence from="joe@foo.com/resource" to="rynok@foo.com"/>
Example 8. joe@foo.com sets his presence to extended away
<presence><show>xa</show><status>Away (due to idle)</status></presence>
Example 9. Server forwards presence update to rynok@foo.com
<presence from="joe@foo.com/resource" to="rynok@foo.com">
<show>away</show><status>Meeting</status>
</presence>Note that in this example, presence updates from joe@foo.com are routed only to rynok@foo.com, despite the fact that stpeter@foo.com and pgmillard@foo.com are both online and available. This is because joe@foo.com has chosen to be visible only to rynok@foo.com. If joe@foo.com chooses to become visible to his entire roster, he simply sends an undirected presence stanza with the type="visible" attribute. In this case the server SHOULD forward the last undirected presence stanza received to stpeter@foo.com and pgmillard@foo.com.
Example 10. joe@foo.com sends undirected visible stanza
<presence type="visible"/>
Example 11. Server forwards last presence update to stpeter@foo.com and pgmillard@foo.com
<presence from="joe@foo.com/resource" to="stpeter@foo.com"/> <presence from="joe@foo.com/resource" to="pgmillard@foo.com"/>
Now Joe has decided that he doesn't want pgmillard@foo.com to receive further presence updates. Since he is currently visible to all contacts, he simply needs to send a directed presence stanza to pgmillard@foo.com with the type="invisible" attribute set.
Example 12. joe@foo.com sends directed presence stanza to pgmillard@foo.com
<presence to="pgmillard@foo.com" type="invisible"/>
In this case, the server will send a directed presence stanza to pgmillard@foo.com with the type="unavailable" attribute set, which indicates to pgmillard@foo.com's client that joe@foo.com has gone "offline."
Example 13. Server sends unavailable presence stanza to pgmillard@foo.com
<presence from="joe@foo.com/resource" to="pgmillard@foo.com" type="unavailable"/>
Further presence updates sent by joe@foo.com will now be forwarded to stpeter@foo.com and rynok@foo.com, and MUST NOT be forwarded pgmillard@foo.com.
Example 14. joe@foo.com set his presence to free to chat
<presence><show>chat</show></presence>
Example 15. Server forwards presence update to stpeter@foo.com and rynok@foo.com
<presence from="joe@foo.com/resource" to="stpeter@foo.com">
<show>chat</show>
</presence>
<presence from="joe@foo.com/resource" to="rynok@foo.com/resource">
<show>chat</show>
</presence>The server MUST NOT forward presence stanzas containing the type="visible" or type="invisible" attribute to a client.
There are no security features or concerns related to this proposal.
No interaction with the Internet Assigned Numbers Authority (IANA) [2] is required as a result of this document.
No namespaces or parameters need to be registered with the XMPP Registrar [3] as a result of this document.
1. RFC 3921: Extensible Messaging and Presence Protocol (XMPP): Instant Messaging and Presence <http://tools.ietf.org/html/rfc3921>.
2. 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/>.
3. 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 <http://www.xmpp.org/registrar/>.
END