Abstract: | This document defines a protocol to forward a stanza from one entity to another. |
Authors: | Matthew Wild, Kevin Smith |
Copyright: | © 1999 – 2017 XMPP Standards Foundation. SEE LEGAL NOTICES. |
Status: | Draft |
Type: | Standards Track |
Version: | 1.0 |
Last Updated: | 2013-10-02 |
NOTICE: The protocol defined herein is a Draft Standard of the XMPP Standards Foundation. Implementations are encouraged and the protocol is appropriate for deployment in production systems, but some changes to the protocol are possible before it becomes a Final Standard.
1. Introduction
2. Requirements
3. Forwarding a stanza
3.1. Overview
3.2. Business rules
4. Determining Support
5. IANA Considerations
6. XMPP Registrar Considerations
6.1. Protocol Namespaces
6.2. Protocol Versioning
7. Security Considerations
7.1. As-is
7.2. Extensions
8. XML Schema
9. Acknowledgements
Appendices
A: Document Information
B: Author Information
C: Legal Notices
D: Relation to XMPP
E: Discussion Venue
F: Requirements Conformance
G: Notes
H: Revision History
There are many situations is which an entity needs to forward a previously sent stanza to another entity, such as forwarding an interesting message to a friend, or a server forwarding stored messages from an archive. Here we specify a simple encapsulation method for such forwards. This format can be used in other specifications requiring the forwarding of stanzas, or used in isolation for a user to forward a message to another user (rather like email forwards).
Several properties are desirable when forwarding stanzas:
Let us suppose that a Romeo receives a message from Juliet:
Example 1. Receiving a message
<message from='juliet@capulet.lit/orchard' id='0202197' to='romeo@montague.lit' type='chat'> <body>Yet I should kill thee with much cherishing.</body> <mood xmlns='http://jabber.org/protocol/mood'> <amorous/> </mood> </message>
To forward this to Mercutio, Romeo would send a new message with a <forwarded/> payload of namespace 'urn:xmpp:forward:0'.
Example 2. Forwarding a message
<message to='mercutio@verona.lit' from='romeo@montague.lit/orchard' type='chat' id='28gs'> <body>A most courteous exposition!</body> <forwarded xmlns='urn:xmpp:forward:0'> <delay xmlns='urn:xmpp:delay' stamp='2010-07-10T23:08:25Z'/> <message from='juliet@capulet.lit/orchard' id='0202197' to='romeo@montague.lit' type='chat' xmlns='jabber:client'> <body>Yet I should kill thee with much cherishing.</body> <mood xmlns='http://jabber.org/protocol/mood'> <amorous/> </mood> </message> </forwarded> </message>
Forwarded stanzas SHOULD include all relevant child elements of the original stanza by default. However, an implementation MAY omit elements it deems irrelevant and safe to discard. An example would be omitting Chat State Notifications (XEP-0085) [1] elements from <message> stanzas which typically do not make sense outside the context of a conversation session. However it should be noted that removing such elements can invalidate any digital signature on a stanza. If preserving a signature is important in the context this extension is used then child elements SHOULD NOT be removed.
The forwarding entity SHOULD add a <delay/> child to the <forwarded/> element to indicate to the recipient the date/time that the forwarding entity received the original stanza. The format of this element is described in Delayed Delivery (XEP-0203) [2].
The namespace of the forwarded stanza MUST be preserved (this is typically 'jabber:client'). If no 'xmlns' is set for the stanza then as per XML namespacing rules it would inherit the 'urn:xmpp:forward:0' namespace, which is wrong.
When this extension is employed simply for a user to forward a given message to a contact, the outer <message/> SHOULD contain a body (even if empty) and a receiving client should pay particular attention to ensure it renders both the sender's text and the forwarded message unambiguously.
When a forwarded stanza forms part of an encapsulating protocol, the <forwarded/> element SHOULD be a child of a tag of that protocol, and SHOULD NOT be included as a direct child of the transmitted stanza.
Clients that implement this specification to display simple forwarded messages (i.e. those not part of another extension) SHOULD indicate their support via the 'urn:xmpp:forward:0' feature.
Example 3. Client requests features of a contact
<iq xmlns='jabber:client' type='get' from='romeo@montague.lit/orchard' to='juliet@capulet.lit/balcony' id='info1'> <query xmlns='http://jabber.org/protocol/disco#info'/> </iq>
Example 4. Contact responds with forwarding feature
<iq xmlns='jabber:client' type='result' to='romeo@montague.net/orchard' from='juliet@capulet.lit/balcony' id='info1'> <query xmlns='http://jabber.org/protocol/disco#info'> ... <feature var='urn:xmpp:forward:0'/> ... </query> </iq>
Senders SHOULD NOT forward messages using this protocol to recipients that have not indicated support for it. However they may still format the forward as plain text inside the <body> of a standard message stanza for compatibility with clients lacking support. Such a plain text version SHOULD NOT be included in a stanza using this extension (e.g. as a 'fallback'), as receiving entities are expected to display the <body> of a message as well as any forwarded stanza therein.
This document requires no interaction with the Internet Assigned Numbers Authority (IANA) [3].
The XMPP Registrar [4] includes 'urn:xmpp:forward:0' in its registry of protocol namespaces (see <https://xmpp.org/registrar/namespaces.html>).
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.
Forwarding stanzas can reveal information about the original sender, including possible presence leaks as well as the stanza payloads themselves. Any extensions using this format must therefore consider the implications of this.
Forwarding can either be used as-is, or in the context of another specification, with different security considerations as described below.
Receipt of a forwarded stanza from a third-party does not guarantee that the original stanza was actually received, or that the content has not been modified, by the forwarder. Integrity of the original stanza can only be determined through cryptographic signatures for example, which are beyond the scope of this specification.
Considering the above an end-user client should take special care in its rendering of forwarded stanzas, such as forwarded messages, to ensure that the user cannot mistake it for a message received directly from the original sender.
An entity SHOULD NOT trust that forwards are genuine when receiving them unprovoked (i.e. outside the scope of another specification).
Forwarded stanzas MUST NOT be processed as if they were non-forwarded stanzas. Furthermore a client SHOULD ignore non-<message> stanzas that are not embedded within another extension.
While security considerations are ultimately dependent upon the specifications using the format defined herein, forwarding introduces scope for stanza forgery such that authors of derivative specifications will need to address security considerations themselves. These need to cover which entities a client should accept forwards from, and which entities those are permitted to forward stanzas for. For example, a specification may choose to only trust forwards if they are received from the user's client, another client on the bare JID, or the user's server.
<?xml version='1.0' encoding='UTF-8'?> <xs:schema xmlns:xs='http://www.w3.org/2001/XMLSchema' targetNamespace='urn:xmpp:forward:0' xmlns='urn:xmpp:forward:0' elementFormDefault='qualified'> <xs:annotation> <xs:documentation> The protocol documented by this schema is defined in XEP-0297: http://www.xmpp.org/extensions/xep-0297.html </xs:documentation> </xs:annotation> <xs:import namespace='jabber:client' schemaLocation='http://xmpp.org/schemas/jabber-client.xsd'/> <xs:import namespace='jabber:server' schemaLocation='http://xmpp.org/schemas/jabber-server.xsd'/> <xs:import namespace='urn:xmpp:delay' schemaLocation='http://xmpp.org/schemas/delay.xsd'/> <xs:element name='forwarded'> <xs:complexType> <xs:sequence xmlns:delay='urn:xmpp:delay' xmlns:client='jabber:client' xmlns:server='jabber:server'> <xs:element ref='delay:delay' minOccurs='0' maxOccurs='1' /> <xs:choice minOccurs='0' maxOccurs='1'> <xs:choice> <xs:element ref='client:message'/> <xs:element ref='client:presence'/> <xs:element ref='client:iq'/> </xs:choice> <xs:choice> <xs:element ref='server:message'/> <xs:element ref='server:presence'/> <xs:element ref='server:iq'/> </xs:choice> </xs:choice> </xs:sequence> </xs:complexType> </xs:element> </xs:schema>
Thanks to Kim Alvefur, Jefry Lagrange, Matt Miller, Peter Saint-Andre, Kurt Zeilenga, and Florian Zeitz for their feedback.
Series: XEP
Number: 0297
Publisher: XMPP Standards Foundation
Status:
Draft
Type:
Standards Track
Version: 1.0
Last Updated: 2013-10-02
Approving Body: XMPP Council
Dependencies: XMPP Core
Supersedes: None
Superseded By: None
Short Name: forward
Schema: <http://xmpp.org/schemas/forward.xsd>
Source Control:
HTML
This document in other formats:
XML
PDF
Email:
mwild1@gmail.com
JabberID:
me@matthewwild.co.uk
Email:
kevin@kismith.co.uk
JabberID:
kevin@doomsong.co.uk
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. XEP-0085: Chat State Notifications <https://xmpp.org/extensions/xep-0085.html>.
2. XEP-0203: Delayed Delivery <https://xmpp.org/extensions/xep-0203.html>.
3. 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/>.
4. 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/
Per a vote of the XMPP Council, advanced status to Draft.
(psa)Incorporated Last Call feedback, including; clarify that client handling of non-message stanzas, add a disco feature, remove references to deferred XEPs, tighten up the schema to allow only stanzas to be forwarded.
(mw)Added recommendation that forwarded messages as part of another specification should be nested under an element of that protocol's namespace.
Adapted text to indicate that stanzas other than messages may be forwarded. Updated title to reflect this.
(mw)Made security considerations more explicit.
(ks)Corrected XML namespace to reflect official publication.
(psa)Initial published version.
(psa)First draft.
(mw/ks)END