<title>Best Practices for Resource Locking</title>
<abstract>This document specifies best practices to be followed by Jabber/XMPP clients about when to lock into, and unlock away from, resources.</abstract>
<remark><p>Expanded intro with a short problem description; moved chat states considerations to their own section; tightened requirement regarding a message from different resource from MAY to SHOULD; loosened requirement regarding a message with 'gone' from MUST to SHOULD; added missing but required sections</p></remark>
<p>The goal of this specification is to provide implementation guidance for XMPP clients to improve the user experience when maintaining a chat conversation between the user and a conversee. Section 5.1 of &xmppim; defines the concept of a "one-to-one chat session" and recommends that clients support the behavior described there, including:</p>
<p>However, following only these guidelines can still lead to "disjointed" chat conversations in clients, epsecially if multiple resources are in play.</p>
<p>This specification reinforces the recommendations from XMPP-IM and provides additional implementation guidance to developers of XMPP clients.</p>
<p>A client MUST start conversations in the unlocked state. In this state, a client MUST send &MESSAGE;s to a conversee's bare JID.</p>
</section2>
<section2topic='Locking a Conversation'anchor='general-lock'>
<p>Once a client receives a chat &MESSAGE; from the conversee, whether or not this client initiated the conversation, it MUST lock the conversation. The client MUST remember the conversee's full JID and send further correspondence to this full JID until one of the unlocking conditions are met.</p>
</section2>
<section2topic='Unlocking a Conversation'anchor='general-unlock'>
<p>A client MUST unlock a chat session from a resource when one of the following conditions is met:</p>
<li>A &MESSAGE; from the same bare JID, but a different resource, is received. In this case, the client SHOULD lock to the new resource; or the client MAY revert to the initial state, sending any following correspondence to the conversee's bare JID.</li>
<li>any &PRESENCE; update from any resource for the conversee's bare JID, including <presence type='unavailable'/>. The client SHOULD revert to the initial state, sending any following correspondence to the conversee's bare JID.</li>
<p>If a client supports &xep0085;, then the following additional considerations apply:</p>
<ul>
<li>If a client receives a &MESSAGE; with a <gone xmlns='http://jabber.org/protocol/chatstates'/> chat state, it SHOULD unlock the coversation.</li>
<p>To further improve the user experience, clients are strongly encouraged to implement Chat State Notifications and adhere to the recommendations from &xep0201;.</p>
<p>A client MAY take into account the lack of activity of a conversation. Exactly how much inactivity constitutes an idle conversation is left to implementations to determine.</p>
<p>A client MAY take into account the overall lack of activity of a user, in which case it is RECOMMENDED the client send a &PRESENCE; update to trigger any conversations to unlock. The exact conditions and &PRESENCE; information conveyed is left to implementations to determine.</p>