XEP-xxxx: Message Routing 2.0

Abstract
Allow entities to activate a message routing algorithm which forks messages to all connected clients. This allows togehter with e.g. XEP-0313: Message Archive Management to shift the converstation state from the client to the server.
Author
Florian Schmaus
Copyright
© 1999 – 2020 XMPP Standards Foundation. SEE LEGAL NOTICES.
Status

ProtoXEP

WARNING: This document has not yet been accepted for consideration or approved in any official manner by the XMPP Standards Foundation, and this document is not yet an XMPP Extension Protocol (XEP). If this document is accepted as a XEP by the XMPP Council, it will be published at <http://xmpp.org/extensions/> and announced on the <standards@xmpp.org> mailing list.
Type
Standards Track
Version
0.0.1 (2015-XX-XX)
Document Lifecycle
  1. Experimental
  2. Proposed
  3. Draft
  4. Final

1. Introduction

This extension allows XMPP servers to dispatch incoming and outgonig messages to all connected resources of an XMPP entity. This allows all devices of a user to be aware of chats which are happening or happened on other devices of that user.

2. Stream Feature

The server returns a stream header to the client along with stream features, where the features include an <mr2/> element qualified by the 'urn:xmpp:mr2:0' namespace (see Namespace Versioning regarding the possibility of incrementing the version number).

Example 1. Server sends new stream header along with stream features
S: <stream:stream
       from='example.com'
       xmlns='jabber:client'
       xmlns:stream='http://etherx.jabber.org/streams'
       version='1.0'>

S: <stream:features>
     <bind xmlns='urn:ietf:params:xml:ns:xmpp-bind'/>
     <mr2 xmlns='urn:xmpp:mr2:0'/>
   </stream:features>

3. Enabling Message Routing 2.0

To enable use of message routing 2.0, the client sends an <enable/> nonza to the server.

Example 2. Client enables message routing 2.0
C: <enable xmlns='urn:xmpp:mr2:0'/>

Upon receiving the enable request, the server MUST reply with an <enabled/> nonza or a <failed/> nonza qualified by the 'urn:xmpp:mr2:0' namespace. The <failed/> element indicates that there was a problem creating a message routing 2.0 enabled stream. The <enabled/> nonza indicates successful creation of a message routing 2.0 enabled stream.

Example 3. Server enables message routing 2.0
S: <enabled xmlns='urn:xmpp:mr2:0'/>

TODO: Now the server MUST use MR2.

The client MUST NOT attempt to negotiate message routing 2.0 until it is authenticated; i.e., it MUST NOT send an <enable/> element until after authentication (such as SASL, Non-SASL Authentication (XEP-0078) [1] or Server Dialback (XEP-0220) [2]) has been completed successfully. the client MUST enable message routing 2.0 before it has completed Resource Binding.

The server SHALL enforce this order and return a <failed/> element in response if the order is violated (see Error Handling).

Example 4. Server returns error if client attempts to enable message routing 2.0 before resource binding
S: <failed xmlns='urn:xmpp:mr2:0'>
     <unexpected-request xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/>
   </failed>

4. Message Routing 2.0

4.1 Receiving Messages to the Bare JID

When the server receives a <message/> that is not of type "groupchat" or "error" to a bare JID (localpart@domainpart), it delivers a copy to each resource using a Message Routing 2.0 enabled XMPP stream for the bare JID – in addition to delivering according to RFC 6121 § 8.5.2. This process is sometimes called "forking".

Example 5. Juliet sends Romeo an undirected message
<message xmlns='jabber:client'
         from='juliet@capulet.example/balcony'
         to='romeo@montague.example'
         type='chat'>
  <body>Wherefore art thou, Romeo?</body>
  <thread>0e3141cd80894871a68e6fe6b1ec56fa</thread>
</message>
Example 6. Message Forked to each of Romeo's Message Routing 2.0-enabled resources
<message xmlns='jabber:client'
         from='juliet@capulet.example/balcony'
         to='romeo@montague.example/garden'
         type='chat'>
  <body>Wherefore art thou, Romeo?</body>
  <thread>0e3141cd80894871a68e6fe6b1ec56fa</thread>
</message>

<message xmlns='jabber:client'
         from='juliet@capulet.example/balcony'
         to='romeo@montague.example/home'
         type='chat'>
  <body>Wherefore art thou, Romeo?</body>
  <thread>0e3141cd80894871a68e6fe6b1ec56fa</thread>
</message>

The receiving server MUST deliver a copy to every Message Routing 2.0-enabled resource, even if that resource normally would not receive <message/> stanzas addressed to the bare JID (e.g., resources which have broadcast <presence/> with a negative priority). A Message Routing 2.0-enabled resource MUST NOT receive more than one copy of the <message/>.

4.2 Receiving Messages to the Full JID

When the server receives a <message/> of type "chat" addressed to a full JID (localpart@domainpart/resourcepart), it delivers the <message/> according to RFC 6121 § 8.5.3, and delivers a forwarded copy to each Message Routing 2.0-enabled resource for the matching bare JID recipient.

Each forwarded copy is wrapped using Stanza Forwarding (XEP-0297) [3]. The wrapping message SHOULD maintain the same 'type' attribute value; the 'from' attribute MUST be the Message Routing 2.0-enabled user's bare JID (e.g., "localpart@domainpart"); and the 'to' attribute MUST be the full JID of the resource receiving the copy. The content of the wrapping message MUST contain a <received/> element qualified by the namespace "urn:xmpp:mr2:0", which itself contains a <forwarded/> element qualified by the namespace "urn:xmpp:forward:0" that contains the original <message/>.

Example 7. Juliet sends Romeo a directed message
<message xmlns='jabber:client'
         from='juliet@capulet.example/balcony'
         to='romeo@montague.example/garden'
         type='chat'>
  <body>What man art thou that, thus bescreen'd in night, so stumblest on my counsel?</body>
  <thread>0e3141cd80894871a68e6fe6b1ec56fa</thread>
</message>
Example 8. Server sends carbon to Romeo's other clients
<message xmlns='jabber:client'
         from='romeo@montague.example'
         to='romeo@montague.example/home'
         type='chat'>
  <received xmlns='urn:xmpp:mr2:0'>
    <forwarded xmlns='urn:xmpp:forward:0'>
      <message xmlns='jabber:client'
               from='juliet@capulet.example/balcony'
               to='romeo@montague.example/garden'
               type='chat'>
        <body>What man art thou that, thus bescreen'd in night, so stumblest on my counsel?</body>
        <thread>0e3141cd80894871a68e6fe6b1ec56fa</thread>
      </message>
    </forwarded>
  </received>
</message>

The receiving server MUST NOT send a forwarded copy to the full JID the original <message/> stanza was addressed to, as that recipient receives the original <message/> stanza.

4.3 Sending Messages

When a client sends a <message/> of type "chat", its sending server delivers the <message/> according to RFC 6120 and RFC 6121, and delivers a forwarded copy to each Message Routing 2.0-enabled resource for the matching bare JID sender.

Each forwarded copy is wrapped using Stanza Forwarding (XEP-0297) [3]. The wrapping message SHOULD maintain the same 'type' attribute value; the 'from' attribute MUST be the Message Routing 2.0-enabled user's bare JID (e.g., "localpart@domainpart"); and the 'to' attribute SHOULD be the full JID of the resource receiving the copy. The content of the wrapping message MUST contain a <sent/> element qualified by the namespace "urn:xmpp:mr2:0", which itself contains a <forwarded/> qualified by the namespace "urn:xmpp:forward:0" that contains the original <message/> stanza.

Example 9. Romeo responds to Juliet
<message xmlns='jabber:client'
         from='romeo@montague.example/home'
         to='juliet@capulet.example/balcony'
         type='chat'>
  <body>Neither, fair saint, if either thee dislike.</body>
  <thread>0e3141cd80894871a68e6fe6b1ec56fa</thread>
</message>
Example 10. Romeo's other Message Routing 2.0-enabled clients receive a copy
<message xmlns='jabber:client'
        from='romeo@montague.example'
        to='romeo@montague.example/garden'
        type='chat'>
  <sent xmlns='urn:xmpp:mr2:0'>
    <forwarded xmlns='urn:xmpp:forward:0'>
      <message xmlns='jabber:client'
               to='juliet@capulet.example/balcony'
               from='romeo@montague.example/home'
               type='chat'>
        <body>Neither, fair saint, if either thee dislike.</body>
        <thread>0e3141cd80894871a68e6fe6b1ec56fa</thread>
      </message>
    </forwarded>
  </sent>
</message>

The sending server SHOULD NOT send a forwarded copy to the sending full JID if it is a Message Routing 2.0-enabled resource.

5. Differences from similar standards

Unlike carbons:

6. Business Rules

The Message Routing 2.0 state is kept if the stream is resumed by means of Stream Management (XEP-0198) [4]. That is, clients are not required to enable Message Routing 2.0 if the stream is resumed. They MUST however, enable Message Routing 2.0 if stream resumption failed and they wish to use Message Routing 2.0.

TODO should Client State Indication (XEP-0352) [5] delay certain forked messages, e.g. the onces caused by a message send to a full JID?

6.1 Interaction with Chat States

Note that Chat State Notifications (XEP-0085) [6] recommends sending chat state notifications as chat type messages, which means that they will be subject to MR2-copying. This is intentional.

Additionally, there are other considerations for clients that implement MR2s and XEP-0085:

6.2 Handling of Errors

When a receiving server attempts to deliver a forked message, and that message bounces with an error for any reason, the receiving server MUST NOT forward that error back to the original sender. The receiving server SHOULD use the sent element in the bounce to determine that an error is from a forked message.

This rule is used to prevent some of the half-failure modes that have been an issue in other prototocols.

6.3 Auto-responses

Clients that automatically respond to messages for any reason (e.g., when in the "dnd" presence show state) MUST take adequate care when enabling MR2s in order to prevent storms or loops. MR2 copies of messages MUST NOT be auto-replied to under any circumstances. Forked inbound messages MUST NOT be auto-replied to unless the client has some way of ensuring no more than one auto-reply is sent from all of its user's resources.

6.4 Mobile Considerations

Enabling this protocol on mobile devices needs to be undertaken with care. This protocol can result in additional bandwidth and power usage, possibly decreasing battery lifetime and increasing monetary costs. Additional mechanisms for controlling the MR2-copying or forking of individual conversations might need to be added to deal with mobile clients in the future.

7. Security Considerations

As the notifications defined in this document contain full <message/> stanzas, it is important for implementations to take care that the receiving entities of such notifications are allowed to see that information. This usually means they receiving entities share the same bare JID with the intended receiver. (TODO wording)

8. IANA Considerations

This document requires no interaction with the Internet Assigned Numbers Authority (IANA) [7].

9. XMPP Registrar Considerations

9.1 Protocol Namespaces

The XMPP Registrar [8] includes 'urn:xmpp:mr2:0' in its registry of protocol namespaces (see <https://xmpp.org/registrar/namespaces.html>).

9.2 Protocol Versioning

If the protocol defined in this specification undergoes a revision that is not fully backwards-compatible with an older version, the XMPP Registrar shall increment the protocol version number found at the end of the XML namespaces defined herein, as described in Section 4 of XEP-0053.

10. XML Schema

REQUIRED for protocol specifications.


Appendices

Appendix A: Document Information

Series
XEP
Number
xxxx
Publisher
XMPP Standards Foundation
Status
ProtoXEP
Type
Standards Track
Version
0.0.1
Last Updated
2015-XX-XX
Approving Body
XMPP Council
Dependencies
XMPP Core, XEP-0297
Supersedes
None
Superseded By
None
Short Name
NOT_YET_ASSIGNED (suggested: 'mr2')

This document in other formats: XML  PDF

Appendix B: Author Information

Florian Schmaus
Email
flo@geekplace.eu
JabberID
flo@geekplace.eu

Copyright

This XMPP Extension Protocol is copyright (c) 1999 - 2014 by the XMPP Standards Foundation (XSF).

Permissions

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.

Disclaimer of Warranty

## 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 shall the XMPP Standards Foundation or the authors of this Specification be liable for any claim, damages, or other liability, whether in an action of contract, tort, or otherwise, arising from, out of, or in connection with the Specification or the implementation, deployment, or other use of the Specification. ##

Limitation of Liability

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 out of the use or inability to use 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.

IPR Conformance

This XMPP Extension Protocol has been contributed in full conformance with the XSF's Intellectual Property Rights Policy (a copy of which may be found at <http://xmpp.org/extensions/ipr-policy.shtml> or obtained by writing to XSF, P.O. Box 1641, Denver, CO 80201 USA).

Visual Presentation

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.

Appendix D: Relation to XMPP

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.

Appendix E: Discussion Venue

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>.

Appendix F: Requirements Conformance

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".

Appendix G: Notes

1. XEP-0078: Non-SASL Authentication <https://xmpp.org/extensions/xep-0078.html>.

2. XEP-0220: Server Dialback <https://xmpp.org/extensions/xep-0220.html>.

3. XEP-0297: Stanza Forwarding <https://xmpp.org/extensions/xep-0297.html>.

4. XEP-0198: Stream Management <https://xmpp.org/extensions/xep-0198.html>.

5. XEP-0352: Client State Indication <https://xmpp.org/extensions/xep-0352.html>.

6. XEP-0085: Chat State Notifications <https://xmpp.org/extensions/xep-0085.html>.

7. 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/>.

8. 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/>.

Appendix H: Revision History

Note: Older versions of this specification might be available at http://xmpp.org/extensions/attic/

  1. Version 0.0.1 (2015-XX-XX)

    First draft.

    fs

END