EXTRA | K. Murchison |
Internet-Draft | B. Gondwana |
Updates: 5230, 5435 (if approved) | FastMail |
Intended status: Standards Track | January 11, 2018 |
Expires: July 15, 2018 |
Sieve Extension: File Carbon Copy (Fcc)
draft-ietf-extra-sieve-fcc-01
The Sieve Email Filtering Language provides a number of action commands, some of which can generate additional messages on behalf of the user. This document defines an extension to such commands to allow a copy of any generated message to be filed into a target mailbox.
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 July 15, 2018.
Copyright (c) 2018 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.
The Sieve Email Filtering Language provides a number of action commands, some of which can generate additional messages on behalf of the user. Two such commands are defined by the Vacation and Notify extensions. It is sometimes desirable to have an archive of the messages generated by these commands.
This extension defines a new optional tagged argument ":fcc" to action commands which generate additional messages to allow a copy of the generated message to be filed into a target mailbox.
The capability string associated with this extension is "fcc".
Conventions for notations are as in Section 1.1 of [RFC5228], including use of the "Usage:" label for the definition of action and tagged arguments syntax.
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 [RFC2119].
Usage: ":fcc" FCC-OPTIONS <mailbox: string>
The positional FCC-OPTIONS argument is defined here in ABNF syntax so that it can be modified by other extensions.
FCC-OPTIONS = "" ; empty string
If the optional ":fcc" argument is specified with an action that generates an additional message, it instructs the Sieve interpreter to file a copy of the generated message into the target mailbox. If the specified mailbox doesn't exist, the implementation MAY treat it as an error, create the mailbox, or file the message into an implementation-defined mailbox.
This document extends the "vacation" action (see also "vacation-seconds") to optionally store a copy of the auto-reply messages into a target mailbox.
Usage: vacation [":days" number | ":seconds" number] [":subject" string] [":from" string] [":addresses" string-list] [":mime"] [":handle" string] [":fcc" FCC-OPTIONS <mailbox: string>] <reason: string>
Example:
require ["vacation", "fcc"]; vacation :days 7 :fcc "INBOX.Sent" :from "hemingway@example.com" "Gone Fishin'";
This document extends the "notify" action to optionally store a copy of the notification messages into a target mailbox.
Usage: notify [":from" string] [":importance" <"1" / "2" / "3">] [":options" string-list] [":message" string] [":fcc" FCC-OPTIONS <mailbox: string>] <method: string>
Example:
require ["enotify", "fcc"]; notify :message "You got mail!" :fcc "INBOX.Sent" "mailto:ken@example.com";
"fcc" MUST be incompatible with the "reject" and "ereject" actions. Making "fcc" compatible with these actions violates the SMTP principle that a message is either delivered or bounced back to the sender. Namely, the saved copy of the rejection message will contain the original message.
It is an error for a script to use the ":fcc" tagged argument with either "reject" or "ereject".
The "fcc" extension is not compatible with any Sieve action that does not generate an additional message on behalf of the user. It is an error for a script to use the ":fcc" tagged argument with any such action.
Future extensions that define actions that generate additional messages on behalf of the user should describe their compatibility with ":fcc".
The "fcc" extension can be used with some tagged arguments defined in extensions to the "fileinto" action. The sections below describe its interaction with currently defined extensions. Tagged arguments in future extensions to the "fileinto" command should describe their interaction with ":fcc", if any.
This document extends the definition of the ":flags" tagged argument so that it can be used as an FCC-OPTIONS to the ":fcc" argument.
FCC-OPTIONS =/ [":flags" <list-of-flags: string-list>]
If the optional ":flags" argument is specified with ":fcc", it instructs the Sieve interpreter to set the IMAP4 flags provided in the subsequent argument when the generated message is filed into the target mailbox.
This document extends the definition of the ":create" tagged argument so that it can be used as an FCC-OPTIONS to the ":fcc" argument.
FCC-OPTIONS =/ [":create"]
If the optional ":create" argument is specified with ":fcc", it instructs the Sieve interpreter to create the target mailbox, if needed, before attempting to file the generated message into the target mailbox.
This document extends the definition of the ":specialuse" tagged argument so that it can be used as an FCC-OPTIONS to the ":fcc" argument.
FCC-OPTIONS =/ [":specialuse <special-use-flag: string>"]
If the optional ":specialuse" argument is specified with ":fcc", it instructs the Sieve interpreter to check whether a mailbox exists with the specific special-use flag assigned to it. If such a mailbox exists, the generated message is filed into the special-use mailbox. Otherwise, the generated message is filed into the target mailbox.
If both the optional ":specialuse" and ":create" arguments are specified with ":fcc", the Sieve interpreter is instructed to create the target mailbox per Section 4.1 of [I-D.ietf-extra-sieve-special-use], if needed.
require ["vacation", "fcc", "mailbox", "special-use", "imap4flags"]; vacation :days 7 :fcc :specialuse "\\Sent" :create :flags ["\\Seen"] "INBOX.Sent" :from "hemingway@example.com" "Gone Fishin'";
The "fcc" extension does not raise any other security considerations that are not already present in [RFC5228], [RFC5230], [RFC5435], and [RFC6131].
The authors would like to thank the following individuals for contributing their ideas and support for writing this specification: Ned Freed, Stan Kalisch.
[RFC5321] | Klensin, J., "Simple Mail Transfer Protocol", RFC 5321, DOI 10.17487/RFC5321, October 2008. |
[RFC5429] | Stone, A., "Sieve Email Filtering: Reject and Extended Reject Extensions", RFC 5429, DOI 10.17487/RFC5429, March 2009. |
[RFC6131] | George, R. and B. Leiba, "Sieve Vacation Extension: "Seconds" Parameter", RFC 6131, DOI 10.17487/RFC6131, July 2011. |
Changes since draft-ietf-extra-sieve-fcc-00: