1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277
|
<pre>Network Working Group J. Degener
Request for Comments: 3894 Sendmail, Inc.
Category: Standards Track October 2004
<span class="h1">Sieve Extension: Copying Without Side Effects</span>
Status of this Memo
This document specifies an Internet standards track protocol for the
Internet community, and requests discussion and suggestions for
improvements. Please refer to the current edition of the "Internet
Official Protocol Standards" (STD 1) for the standardization state
and status of this protocol. Distribution of this memo is unlimited.
Copyright Notice
Copyright (C) The Internet Society (2004).
Abstract
The Sieve scripting language allows users to control handling and
disposal of their incoming e-mail. By default, an e-mail message
that is processed by a Sieve script is saved in the owner's "inbox".
Actions such as "fileinto" and "redirect" cancel this default
behavior.
This document defines a new keyword parameter, ":copy", to be used
with the Sieve "fileinto" and "redirect" actions. Adding ":copy" to
an action suppresses cancellation of the default "inbox" save. It
allows users to add commands to an existing script without changing
the meaning of the rest of the script.
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
The Sieve scripting language [<a href="#ref-SIEVE" title=""Sieve: A Mail Filtering Language"">SIEVE</a>] allows users to control handling
and disposal of their incoming e-mail. Two frequently used Sieve
commands are "fileinto" (saving into a local message store, such as
an IMAP server) and "redirect" (forwarding to another e-mail
address). Both of these cancel the Sieve default behavior of saving
into the user's "inbox".
But some users have the notion of forwarding an extra copy of a
message for safekeeping to another e-mail address, or of saving a
copy in a folder - in addition to the regular message delivery, which
shouldn't be affected by the copy.
<span class="grey">Degener Standards Track [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc3894">RFC 3894</a> Sieve Extension - Copy Without Side Effects October 2004</span>
If saving an extra copy is all the user wanted to do,
fileinto "unfiltered";
keep;
would do the job. The "keep" command does explicitly what the
cancelled default behavior did. But the explicit "keep" is a poor
substitute for the implicit "keep" when more processing follows:
fileinto "unfiltered";
keep;
if header "Subject" "MAKE MONEY FAST!!!"
{
discard;
}
In this example, the "discard" is ineffective against the explicit
"keep"; the discarded message still ends up in the user's inbox.
It is possible to generate Sieve code that perfectly expresses a
user's wishes, but such code quickly grows unwieldy because it needs
to keep track of the state that the implicit "keep" would have had
without the "fileinto" or "redirect" command.
This extension tries to make life easier for user interface designers
and script writers by allowing them to express the "copy" semantics
directly.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Conventions used</span>
Conventions for notations are as in [<a href="#ref-SIEVE" title=""Sieve: A Mail Filtering Language"">SIEVE</a>] <a href="#section-1.1">section 1.1</a>, including
use of [<a href="#ref-KEYWORDS" title=""Key words for use in RFCs to Indicate Requirement Levels"">KEYWORDS</a>] and "Syntax:" label for the definition of action
and tagged arguments syntax.
The capability string associated with extension defined in this
document is "copy".
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. ":copy" extension to the "fileinto" and "redirect" commands</span>
Syntax:
"fileinto" [":copy"] <folder: string>
"redirect" [":copy"] <address: string>
If the optional ":copy" keyword is specified with "fileinto" or
"redirect", the tagged command does not cancel the implicit "keep".
Instead, it merely files or redirects a copy in addition to whatever
else is happening to the message.
<span class="grey">Degener Standards Track [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc3894">RFC 3894</a> Sieve Extension - Copy Without Side Effects October 2004</span>
Example:
require ["copy", "fileinto"];
fileinto :copy "incoming";
# ... more processing follows ...
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Security Considerations</span>
The "copy" extension makes it easier to eavesdrop on a user's message
stream without the user noticing. This was technically possible
before if an attacker gained read/write access to a user's Sieve
scripts, but now an attacker no longer needs to parse a script in
order to modify it. Write access to Sieve scripts must be protected
as strongly as read/write access to e-mail, for example by using
secure directory protocols such as correctly parameterized LDAP over
TLS [<a href="#ref-LDAP" title=""Authentication Methods for LDAP"">LDAP</a>].
Organizations that wish to monitor their users' e-mail traffic must
familiarize themselves with local data protection laws before
creating stores of old e-mail traffic without control, or perhaps
even knowledge, of the sender or intended recipients.
Organizations that legally use "redirect :copy" to eavesdrop on
correspondence (for example, by keeping a log to answer questions
about insider trading at a later time) can avoid future problems by
setting users' privacy expectations correctly.
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. IANA Considerations</span>
The following template specifies the IANA registration of the "copy"
Sieve extension specified in this document.
To: iana@iana.org
Subject: Registration of new Sieve extension
Capability name: copy
Capability keyword: copy
Capability arguments: N/A
Standards Track: <a href="./rfc3894">RFC 3894</a>
Person and email address to contact for further information:
Jutta Degener
Sendmail, Inc.
6425 Christie Ave, 4th Floor
Emeryville, CA 94608
Email: jutta@sendmail.com
<span class="grey">Degener Standards Track [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc3894">RFC 3894</a> Sieve Extension - Copy Without Side Effects October 2004</span>
This information has been added to the list of Sieve extensions given
on <a href="http://www.iana.org/assignments/sieve-extensions">http://www.iana.org/assignments/sieve-extensions</a>.
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Acknowledgments</span>
Thanks to Eric Allman, Ned Freed, Will Lee, Nigel Swinson, and Rand
Wacker for corrections and comments.
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. References</span>
<span class="h3"><a class="selflink" id="section-7.1" href="#section-7.1">7.1</a>. Normative References</span>
[<a id="ref-KEYWORDS">KEYWORDS</a>] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", <a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc2119">RFC 2119</a>, March 1997.
[<a id="ref-SIEVE">SIEVE</a>] Showalter, T., "Sieve: A Mail Filtering Language", <a href="./rfc3028">RFC</a>
<a href="./rfc3028">3028</a>, January 2001.
<span class="h3"><a class="selflink" id="section-7.2" href="#section-7.2">7.2</a>. Informative References</span>
[<a id="ref-LDAP">LDAP</a>] Wahl, M., Alvestrand, H., Hodges, J., and R. Morgan,
"Authentication Methods for LDAP", <a href="./rfc2829">RFC 2829</a>, May 2000.
Author's Address
Jutta Degener
Sendmail, Inc.
6425 Christie Ave, 4th Floor
Emeryville, CA 94608
EMail: jutta@sendmail.com
<span class="grey">Degener Standards Track [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc3894">RFC 3894</a> Sieve Extension - Copy Without Side Effects October 2004</span>
Full Copyright Statement
Copyright (C) The Internet Society (2004).
This document is subject to the rights, licenses and restrictions
contained in <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a>, and except as set forth therein, the authors
retain all their rights.
This document and the information contained herein are provided on an
"AS IS" basis and THE CONTRIBUTOR, THE ORGANIZATION HE/S HE
REPRESENTS OR IS SPONSORED BY (IF ANY), THE INTERNET SOCIETY AND THE
INTERNET ENGINEERING TASK FORCE DISCLAIM ALL WARRANTIES, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF
THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED
WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
Intellectual Property
The IETF takes no position regarding the validity or scope of any
Intellectual Property Rights or other rights that might be claimed to
pertain to the implementation or use of the technology described in
this document or the extent to which any license under such rights
might or might not be available; nor does it represent that it has
made any independent effort to identify any such rights. Information
on the IETF's procedures with respect to rights in IETF Documents can
be found in <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and <a href="https://www.rfc-editor.org/bcp/bcp79">BCP 79</a>.
Copies of IPR disclosures made to the IETF Secretariat and any
assurances of licenses to be made available, or the result of an
attempt made to obtain a general license or permission for the use of
such proprietary rights by implementers or users of this
specification can be obtained from the IETF on-line IPR repository at
<a href="http://www.ietf.org/ipr">http://www.ietf.org/ipr</a>.
The IETF invites any interested party to bring to its attention any
copyrights, patents or patent applications, or other proprietary
rights that may cover technology that may be required to implement
this standard. Please address the information to the IETF at ietf-
ipr@ietf.org.
Acknowledgement
Funding for the RFC Editor function is currently provided by the
Internet Society.
Degener Standards Track [Page 5]
</pre>
|