Internet-Draft | JMAP Sieve | September 2020 |
Murchison | Expires 26 March 2021 | [Page] |
This document specifies a data model for managing Sieve scripts on a server using JMAP.¶
This Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79.¶
Internet-Drafts are working documents of the Internet Engineering Task Force (IETF). Note that other groups may also distribute working documents as Internet-Drafts. The list of current Internet-Drafts is at https://datatracker.ietf.org/drafts/current/.¶
Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as "work in progress."¶
This Internet-Draft will expire on 26 March 2021.¶
Copyright (c) 2020 IETF Trust and the persons identified as the document authors. All rights reserved.¶
This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (https://trustee.ietf.org/license-info) in effect on the date of publication of this document. Please review these documents carefully, as they describe your rights and restrictions with respect to this document. Code Components extracted from this document must include Simplified BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Simplified BSD License.¶
JMAP ([RFC8620] - JSON Meta Application Protocol) is a generic protocol for synchronizing data, such as mail, calendars or contacts, between a client and a server. It is optimized for mobile and web environments, and aims to provide a consistent interface to different data types.¶
This specification defines a data model for managing Sieve [RFC5228] scripts on a server using JMAP. The data model is designed to allow a server to provide consistent access to the same scripts via ManageSieve [RFC5804] as well as JMAP, however the functionality offered over the two protocols may differ.¶
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in BCP 14 [RFC2119] [RFC8174] when, and only when, they appear in all capitals, as shown here.¶
Type signatures, examples, and property descriptions in this document follow the conventions established in Section 1.1 of [RFC8620]. Data types defined in the core specification are also used in this document.¶
The same terminology is used in this document as in the core JMAP specification, see [RFC8620], Section 1.6.¶
The term SieveScript (with this specific capitalization) is used to refer to the data type defined in this document and instances of those data types.¶
The capabilities object is returned as part of the JMAP Session object; see [RFC8620], Section 2. This document defines one additional capability URI.¶
This represents support for the SieveScript data type and associated API methods. The value of this property in the JMAP Session capabilities property is an empty object.¶
The value of this property in an account's accountCapabilities property is an object that MUST contain the following information on server capabilities:¶
supportsTest:
Boolean
¶
If true, the server supports the SieveScript/test (Section 2.5) method.¶
maxNumberRedirects:
UnsignedInt|null
¶
The maximum number of Sieve "redirect" actions a
script can perform during a single evaluation
(see [RFC5804], Section 1.7),
or null
for no limit.¶
maxNumberScripts:
UnsignedInt|null
¶
The maximum number of Sieve scripts the server is
willing to store for the user,
or null
for no limit.¶
maxSizeScript:
UnsignedInt|null
¶
The maximum size (in octets) of a Sieve script the
server is willing to store for the user,
or null
for no limit.¶
sieveExtensions:
String[]
¶
A list of case-sensitive Sieve capability strings (as listed in Sieve "require" action [RFC5228], Section 3.2) indicating the extensions supported by the Sieve engine.¶
notificationMethods:
String[]|null
¶
A list of URI schema parts [RFC3986]
for notification methods supported by the Sieve
"enotify" extension [RFC5435],
or null
if the extension
is not supported by the Sieve engine.¶
externalLists:
String[]|null
¶
A list of URI schema parts [RFC3986]
for externally stored list types supported by the
Sieve "extlists" extension [RFC6134],
or null
if the extension
is not supported by the Sieve engine.¶
A SieveScript object represents a single Sieve [RFC5228] script. A user may have multiple SieveScripts on the server, yet only one script may be used for filtering of incoming messages. This is the active script. Users may have zero or one active script. The SieveScript/set (Section 2.2) method described below is used for changing the active script or disabling Sieve processing.¶
A SieveScript object has the following properties:¶
id:
Id
(immutable; server-set)¶
The id of the script.¶
name:
String
¶
The unique user-visible name for the script, subject to the requirements in [RFC5804], Section 1.6.¶
content:
String
¶
The raw octets of the script [RFC5228].¶
Note that both Sieve and JSON require encoding of special characters which MUST be done in the following order:¶
blobId:
Id
(immutable)¶
The id of the blob containing the raw octets of the script [RFC5228].¶
isActive:
Boolean
(server-set; default: false)¶
Is this the user's active script?¶
Example (using the Imap4Flags [RFC5232] Extension):¶
{ "id": "Sabc", "blobId": "Bxyz", "name": "example.siv", "content": "require [ \"imap4flags\" ];\r\nkeep :flags \"\\\\flagged\";", "isActive": false }¶
This is a standard "/get" method as described in
[RFC8620], Section 5.1.
The ids argument may be
null
to fetch all at once.¶
This method provides similar functionality to the GETSCRIPT and LISTSCRIPTS commands in [RFC5804].¶
This is a standard "/set" method as described in [RFC8620], Section 5.3 but with the following additional request arguments, either of which may be omitted:¶
replaceOnCreate:
Boolean
(default: false)¶
If false, any attempt to create a SieveScript having the same "name" property as an existing SieveScript MUST be rejected with a "scriptNameExists" SetError. If true, the existing SieveScript will be destroyed and the new SieveScript created as a single atomic action. The id of the replaced SieveScript MUST be reported in the "destroyed" argument in the response.¶
onSuccessActivateScript:
Id|null
¶
The id of the SieveScript to activate if the
create/update/destroy succeeds.
(For references to SieveScript creations, this is
equivalent to a creation-reference, so the id will be the
creation id prefixed with a "#".)
If null
, the currently active
script (if any) will be deactivated.
If this argument is not present in the request, the
currently active script (if any) will remain as such.
The id of the activated acript MUST be reported in the
"created" or "updated" argument in the response as
appropriate.
The id of the deactivated script, if any, MUST be reported
in the "updated" argument in the response unless the
script was also destroyed.¶
This method provides similar functionality to the PUTSCRIPT, DELETESCRIPT, RENAMESCRIPT, and SETACTIVE commands in [RFC5804].¶
When creating or updating a script, a client MUST include either a content or a blobId property. A request that includes neither or both properties MUST be rejected with an "invalidProperties" SetError. The server MUST check the script content for syntactic validity, which includes checking that all Sieve extensions mentioned in Sieve script "require" statement(s) are supported by the Sieve interpreter. (Note that if the Sieve interpreter supports the Sieve "ihave" extension [RFC5463], any unrecognized/unsupported extension mentioned in the "ihave" test MUST NOT cause the syntactic validation failure.) A script of zero length SHOULD be considered invalid. If the script content is invalid the request MUST be rejected with a "invalidScript" SetError.¶
Note that simply activating or deactivating a script
without changing any script content is accomplished via a
request containing an "onSuccessActivateScript" argument and
null
"create", "update", and
"delete" arguments.¶
The following extra SetError types are defined:¶
For "create":¶
scriptNameExists:¶
A SieveScript already exists with the given name property, and the "replaceOnCreate" argument was false. An existingId property of type Id MUST be included on the SetError object with the id of the existing SieveScript.¶
tooManyScripts:¶
Creating the SieveScript would exceed the maxNumberScripts limit (see Section 1.3.1).¶
For "create" and "update":¶
invalidScript:¶
The SieveScript violates the Sieve grammar [RFC5228] and/or one or more extensions mentioned in the script's "require" statement(s) are not supported by the Sieve interpreter. The description property on the SetError object SHOULD contain a specific error message giving the line number of the first error.¶
For "destroy":¶
This is a standard "/query" method as described in [RFC8620], Section 5.5. A FilterCondition object has the following properties, any of which may be omitted:¶
name:
String
¶
The SieveScript "name" property contains the given string.¶
isActive:
Boolean
¶
The "isActive" property of the SieveScript must be identical to the value given to match the condition.¶
The following SieveScript properties MUST be supported for sorting:¶
This method is used by the client to verify Sieve script validity without storing the script on the server.¶
The method provides similar functionality to the CHECKSCRIPT command in [RFC5804].¶
The SieveScript/validate method takes the following arguments:¶
accountId:
Id
¶
The id of the account to use.¶
content:
String
¶
blobId:
Id
(immutable)¶
The id of the blob containing the raw octets of the script [RFC5228].¶
A client MUST include either a content or a blobId property. A request that includes neither or both properties MUST be rejected with an "invalidProperties" SetError. The content property, if used, MUST be encoded following the same procedure as for the content property in the SieveScript (Section 2) object. The server MUST check the script content for syntactic validity, which includes checking that all Sieve extensions mentioned in Sieve script "require" statement(s) are supported by the Sieve interpreter. (Note that if the Sieve interpreter supports the Sieve "ihave" extension [RFC5463], any unrecognized/unsupported extension mentioned in the "ihave" test MUST NOT cause the syntactic validation failure.)¶
The response has the following arguments:¶
This method is used by the client to ask the Sieve interpreter to evaluate a Sieve script against a set of emails and report what actions would be performed for each.¶
The SieveScript/test method takes the following arguments:¶
accountId:
Id
¶
The id of the account to use.¶
scriptBlobId:
Id
¶
The id of the blob containing the SieveScript to test against.¶
emailBlobIds:
Id[]
¶
The ids of the blobs containing the Emails [RFC8621] to test against.¶
envelope:
Envelope|null
¶
Information that the Sieve interpreter should assume was
present in the SMTP transaction that delivered the
email when evaluating "envelope" tests.
If null
, all "envelope"
tests MUST eveluate to false.
See Section 7 of Email [RFC8621] for
the contents of the Envelope object.¶
lastVacationResponse:
Date|null
¶
The date-time at which the Sieve interpreter should
assume that it last auto-replied to the sender of the
email, or null
if the Sieve
interpreter should assume that it has not auto-replied
to the sender.¶
The response has the following arguments:¶
accountId:
Id
¶
The id of the account used for this call.¶
completed:
Id[Action[]]|null
¶
A map of the blob id to a set of
Action types for each Email
successfully processed by the script, or
null
if none.
The Action data type is a
tuple, represented as a JSON array containing two elements:¶
notCompleted:
Id[SetError]|null
¶
A map of the blob id to a SetError object for each Email
that was not successfully processed by the script, or
null
if none.
A "serverFail" SetError (see Section 3.6.2 of
[RFC8620]) MUST be used to indicate a
Sieve interpreter run-time error.¶
The following additional errors may be returned instead of the "SieveScript/test" response:¶
The name to use for each argument is a direct mapping of the argument names as given in the specification of each action. Tagged and optional arguments MUST use the name of the tag, minus the leading ":". Positional arguments MUST use the name of the argument inside of the angle brackets ("<" and ">") in the "Usage" line in the specification for the action.¶
The JSON data type to use for each argument value is a direct mapping from its Sieve data type, per the following table:¶
Sieve Type | JSON Type |
---|---|
Number | Number |
String | String |
String List | String[] |
no value | Boolean (true) |
Recommendations for constructing the list of arguments are as follows:¶
Assume that the following script has been uploaded and assigned blob id "B123".¶
require [ "imapflags", "editheader", "vacation", "fcc" ]; setflag "$SieveFiltered"; addheader :last "X-Sieve-Filtered" "yes"; vacation :days 3 :fcc "INBOX.Sent" :flags "\\Answered" text: Gone fishing. . ;¶
Assume that the following email has been uploaded and assigned blob id "B456".¶
From: "Some Example Sender" <example@example.net> To: test@example.com Subject: test email Date: Wed, 23 Sep 2020 12:11:11 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" This is a test email.¶
The following request executes the script against the email and provides envelope information for use by the "vacation" action.¶
{ "using": [ "urn:ietf:params:jmap:core", "urn:ietf:params:jmap:sieve", "urn:ietf:params:jmap:mail" ], "methodCalls": [ [ "SieveScript/test", { "scriptBlobId": "B123", "emailBlobIds": [ "B456" ], "envelope": { "mailFrom": { "email": "example@example.net", "parameters": null }, "rcptTo": [ { "email": "test@example.com", "parameters": null } ] }, "lastVacationResponse": null }, "R1" ] ] }¶
The following response lists the actions that would be performed by the script.¶
{ "methodResponses": [ [ "SieveScript/test", { "accountId": "test", "completed": { "B456": [ [ "addheader", { "last": true, "field-name": "X-Sieve-Filtered", "value": "yes" } ], [ "vacation", { "fcc": "INBOX.Sent", "flags": [ "\\answered" ], "subject": "Auto: test email", "from": "test@example.com", "reason": "Gone fishing." } ], [ "keep", { "flags": [ "$SieveFiltered" ] } ] ] }, "notCompleted": null }, "R1" ] ], "sessionState": "0" }¶
All security considerations of JMAP [RFC8620] apply to this specification.¶
IANA will register the "sieve" JMAP Capability as follows:¶
Capability Name:
urn:ietf:params:jmap:sieve
¶
Specification document: this document¶
Intended use: common¶
Change Controller: IETF¶
Security and privacy considerations: this document, Section 3¶
The following sub-section register several new error codes in the JMAP Error Codes registry, as defined in [RFC8620].¶
JMAP Error Code: scriptNameExists¶
Intended use: common¶
Change controller: IETF¶
Reference: This document, Section 2.2¶
Description: The client tried to create a SieveScript with the same "name" property as an existing SieveScript and the "replaceOnCreate" argument was false. present.¶
JMAP Error Code: tooManyScripts¶
Intended use: common¶
Change controller: IETF¶
Reference: This document, Section 2.2¶
Description: Creating the SieveScript would exceed the "maxNumberScripts" limit.¶
JMAP Error Code: invalidScript¶
Intended use: common¶
Change controller: IETF¶
Reference: This document, Section 2.2¶
Description: The SieveScript violates the Sieve grammar [RFC5228] and/or one or more extensions mentioned in the script's "require" statement(s) are not supported by the Sieve interpreter.¶
JMAP Error Code: scriptIsActive¶
Intended use: common¶
Change controller: IETF¶
Reference: This document, Section 2.2¶
Description: The client tried to destroy the active SieveScript, but the "OnSuccessActivateScript" argument was not present.¶
The concepts in this document are based largely on those in [RFC5804]. The author would like to thank the authors of that document for providing both inspiration and some borrowed text for this document.¶
The author would also like to thank the following individuals for contributing their ideas and support for writing this specification: Bron Gondwana, Alexey Melnikov, and Ricardo Signes.¶
Changes since ietf-00:¶
Changes since murchison-01:¶
Changes since murchison-00:¶