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 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669
|
<pre>Network Working Group A. Melnikov
Request for Comments: 5232 Isode Limited
Category: Standards Track January 2008
<span class="h1">Sieve Email Filtering: Imap4flags Extension</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.
Abstract
Recent discussions have shown that it is desirable to set different
IMAP (<a href="./rfc3501">RFC 3501</a>) flags on message delivery. This can be done, for
example, by a Sieve interpreter that works as a part of a Mail
Delivery Agent.
This document describes an extension to the Sieve mail filtering
language for setting IMAP flags. The extension allows setting of
both IMAP system flags and IMAP keywords.
Table of Contents
<a href="#section-1">1</a>. Introduction ....................................................<a href="#page-2">2</a>
<a href="#section-1.1">1.1</a>. Conventions Used ...........................................<a href="#page-2">2</a>
<a href="#section-2">2</a>. General Requirements for Flag Handling ..........................<a href="#page-3">3</a>
<a href="#section-3">3</a>. Actions .........................................................<a href="#page-3">3</a>
<a href="#section-3.1">3.1</a>. Action setflag .............................................<a href="#page-4">4</a>
<a href="#section-3.2">3.2</a>. Action addflag .............................................<a href="#page-4">4</a>
<a href="#section-3.3">3.3</a>. Action removeflag ..........................................<a href="#page-5">5</a>
<a href="#section-4">4</a>. Test hasflag ....................................................<a href="#page-6">6</a>
<a href="#section-5">5</a>. Tagged Argument :flags ..........................................<a href="#page-7">7</a>
<a href="#section-6">6</a>. Interaction with Other Sieve Actions ............................<a href="#page-8">8</a>
<a href="#section-7">7</a>. Security Considerations .........................................<a href="#page-8">8</a>
<a href="#section-8">8</a>. IANA Considerations .............................................<a href="#page-8">8</a>
<a href="#section-9">9</a>. Extended Example ................................................<a href="#page-8">8</a>
<a href="#section-10">10</a>. Acknowledgments ...............................................<a href="#page-10">10</a>
<a href="#section-11">11</a>. Normative References ..........................................<a href="#page-10">10</a>
<span class="grey">Melnikov Standards Track [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc5232">RFC 5232</a> Sieve: Imap4flags Extension January 2008</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
This is an extension to the Sieve language defined by [<a href="#ref-SIEVE" title=""Sieve: An Email Filtering Language"">SIEVE</a>] for
setting [<a href="#ref-IMAP" title=""INTERNET MESSAGE ACCESS PROTOCOL - VERSION 4rev1"">IMAP</a>] flags. It adds a new tagged argument to "keep" and
"fileinto" that describes the list of flags that have to be set when
the message is delivered to the specified mailbox. It also adds
several actions to help manipulate list of flags and a test to check
whether a flag belongs to a list.
From the user's perspective, this extension provides several
capabilities. First, it allows manipulation of sets of IMAP flags.
Second, it gives the ability to associate a set of IMAP flags with a
message that is delivered to a mailstore using the keep/fileinto
actions. Third, it maintains an internal variable. The internal
variable contains the default flags that will be associated with a
message that is delivered using the keep, implicit keep, or fileinto
actions, when the :flags tagged argument is not specified. When the
Sieve [<a href="#ref-VARIABLES" title=""Sieve Email Filtering: Variables Extension"">VARIABLES</a>] extension is also supported by the Sieve engine, it
enables support for multiple variables containing sets of IMAP flags.
The capability string associated with the extension defined in this
document is "imap4flags". All conformant implementations MUST
implement all Sieve actions (setflag, addflag, removeflag), the
"hasflag" test, and the ":flags" tagged argument described in this
document.
The "imap4flags" extension can be used with or without the
"variables" extension [<a href="#ref-VARIABLES" title=""Sieve Email Filtering: Variables Extension"">VARIABLES</a>]. When the "variables" extension is
enabled in a script using <require "variables">, the script can use
explicit variable names in setflag/addflag/removeflag actions and the
hasflag test. See also <a href="#section-3">Section 3</a> for more details. When the
"variables" extension is not enabled, the explicit variable name
parameter to setflag/addflag/removeflag/hasflag MUST NOT be used and
MUST cause an error according to [<a href="#ref-SIEVE" title=""Sieve: An Email Filtering Language"">SIEVE</a>].
<span class="h3"><a class="selflink" id="section-1.1" href="#section-1.1">1.1</a>. Conventions Used</span>
Conventions for notations are as in [<a href="#ref-SIEVE" title=""Sieve: An Email Filtering Language"">SIEVE</a>], Section 1.1, including
use of "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", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in <a href="./rfc2119">RFC 2119</a>.
<span class="grey">Melnikov Standards Track [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc5232">RFC 5232</a> Sieve: Imap4flags Extension January 2008</span>
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. General Requirements for Flag Handling</span>
The following notes apply to processing of addflag/removeflag/setflag
actions, the "hasflag" test and the ":flags" tagged argument.
A Sieve interpreter MUST ignore empty strings (i.e., "") in a list-
of-flags parameter.
A string containing a space-separated list of flag names is
equivalent to a string list consisting of the flags. This
requirement is to simplify amalgamation of multiple flag lists.
The Sieve interpreter SHOULD check the list of flags for validity as
described by [<a href="#ref-IMAP" title=""INTERNET MESSAGE ACCESS PROTOCOL - VERSION 4rev1"">IMAP</a>] ABNF. In particular, according to [<a href="#ref-IMAP" title=""INTERNET MESSAGE ACCESS PROTOCOL - VERSION 4rev1"">IMAP</a>], non-
ASCII characters are not allowed in flag names. However, spaces MUST
always be allowed as delimiters in strings representing a list of
flags. In such strings, multiple spaces between flag names MUST be
treated as a single space character, and leading and trailing spaces
MUST be ignored.
If a flag validity check fails, the flag MUST be ignored.
Note that it is not possible to use this extension to set or clear
the \Recent flag or any other special system flag that is not
settable in [<a href="#ref-IMAP" title=""INTERNET MESSAGE ACCESS PROTOCOL - VERSION 4rev1"">IMAP</a>]. Any such flags MUST be ignored if included in a
flag list.
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Actions</span>
All actions described in this specification (setflag, addflag,
removeflag) operate on string variables that contain a set of [<a href="#ref-IMAP" title=""INTERNET MESSAGE ACCESS PROTOCOL - VERSION 4rev1"">IMAP</a>]
flags. On variable substitution, a set of flags is represented as a
string containing a space-separated list of flag names.
Any setflag/addflag/removeflag action MAY alter the flag list in any
way that leaves its semantics as a set of case-insensitive words
unaltered. For example, it may reorder the flags, alter the case of
the letters in them, or add or remove duplicates or extraneous
spaces. Scripts MUST NOT make assumptions about the ordering of
flags in lists or the preservation of their case.
Note that the parameter specifying a variable name to
setflag/addflag/removeflag actions and the hasflag test is optional.
If the parameter is not specified, the actions operate on the
internal variable, which has the empty value when the script starts
execution. If the SIEVE interpreter doesn't support the "variables"
extension [<a href="#ref-VARIABLES" title=""Sieve Email Filtering: Variables Extension"">VARIABLES</a>], the presence of the variable name parameter
will cause a runtime error [<a href="#ref-SIEVE" title=""Sieve: An Email Filtering Language"">SIEVE</a>].
<span class="grey">Melnikov Standards Track [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc5232">RFC 5232</a> Sieve: Imap4flags Extension January 2008</span>
The "addflag" action adds flags to an existing set. The "removeflag"
action removes flags from an existing set. The "setflag" action
replaces an existing set of flags with a new set. The "set" action
defined in [<a href="#ref-VARIABLES" title=""Sieve Email Filtering: Variables Extension"">VARIABLES</a>] can be used to replace an existing set of
flags with a new set as well. However, it should be noted that the
"set" action can't perform any flag reordering, duplicate
elimination, etc.
The :flags tagged argument to "keep" and "fileinto" actions is used
to associate a set of flags with the current message. If the :flags
tagged argument is not specified with those two actions, the current
value of the internal variable is used instead. The value of the
internal variable also applies to the implicit keep.
Note that when keep/fileinto is used multiple times in a script and
duplicate message elimination is performed (as described in <a href="#section-2.10.3">Section</a>
<a href="#section-2.10.3">2.10.3</a> of [<a href="#ref-SIEVE" title=""Sieve: An Email Filtering Language"">SIEVE</a>]), the last flag list value MUST win.
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. Action setflag</span>
Usage: setflag [<variablename: string>]
<list-of-flags: string-list>
Setflag is used for setting [<a href="#ref-IMAP" title=""INTERNET MESSAGE ACCESS PROTOCOL - VERSION 4rev1"">IMAP</a>] system flags or keywords.
Setflag replaces any previously set flags.
Example: if size :over 500K {
setflag "\\Deleted";
}
A more substantial example is the following:
Example:
if header :contains "from" "boss@frobnitzm.example.edu" {
setflag "flagvar" "\\Flagged";
fileinto :flags "${flagvar}" "INBOX.From Boss";
}
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a>. Action addflag</span>
Usage: addflag [<variablename: string>]
<list-of-flags: string-list>
Addflag is used to add flags to a list of [<a href="#ref-IMAP" title=""INTERNET MESSAGE ACCESS PROTOCOL - VERSION 4rev1"">IMAP</a>] flags. It doesn't
replace any previously set flags. This means that multiple
occurrences of addflag are treated additively.
<span class="grey">Melnikov Standards Track [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc5232">RFC 5232</a> Sieve: Imap4flags Extension January 2008</span>
The following examples demonstrate requirements described in <a href="#section-2.1">Section</a>
<a href="#section-2.1">2.1</a>. The following two actions
addflag "flagvar" "\\Deleted";
addflag "flagvar" "\\Answered";
produce the same result as the single action
addflag "flagvar" ["\\Deleted", "\\Answered"];
or
addflag "flagvar" "\\Deleted \\Answered";
or
addflag "flagvar" "\\Answered \\Deleted";
<span class="h3"><a class="selflink" id="section-3.3" href="#section-3.3">3.3</a>. Action removeflag</span>
Usage: removeflag [<variablename: string>]
<list-of-flags: string-list>
Removeflag is used to remove flags from a list of [<a href="#ref-IMAP" title=""INTERNET MESSAGE ACCESS PROTOCOL - VERSION 4rev1"">IMAP</a>] flags.
Removeflag clears flags previously set by "set"/"addflag". Calling
removeflag with a flag that wasn't set before is not an error and is
ignored. Note that if an implementation doesn't perform automatic
duplicate elimination, it MUST remove all occurrences of the flags
specified in the second parameter to removeflag. Empty strings in
the list-of-flags MUST be ignored. Also note that flag names are
case-insensitive, as described in [<a href="#ref-IMAP" title=""INTERNET MESSAGE ACCESS PROTOCOL - VERSION 4rev1"">IMAP</a>]. Multiple removeflag
actions are treated additively.
Example:
if header :contains "Disposition-Notification-To"
"mel@example.com" {
addflag "flagvar" "$MDNRequired";
}
if header :contains "from" "imap@cac.washington.example.edu" {
removeflag "flagvar" "$MDNRequired";
fileinto :flags "${flagvar}" "INBOX.imap-list";
}
<span class="grey">Melnikov Standards Track [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc5232">RFC 5232</a> Sieve: Imap4flags Extension January 2008</span>
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Test hasflag</span>
Usage: hasflag [MATCH-TYPE] [COMPARATOR]
[<variable-list: string-list>]
<list-of-flags: string-list>
The hasflag test evaluates to true if any of the variables matches
any flag name. The type of match defaults to ":is". If the list of
variables is omitted, value of the internal variable is used instead.
The default comparator is "i;ascii-casemap", which is the same case-
insensitive comparison as defined for IMAP flags by [<a href="#ref-IMAP" title=""INTERNET MESSAGE ACCESS PROTOCOL - VERSION 4rev1"">IMAP</a>].
The "relational" extension [<a href="#ref-RELATIONAL" title=""Sieve Email Filtering: Relational Extension"">RELATIONAL</a>] adds a match type called
":count". The :count of a variable returns the number of distinct
flags in it. The count of a list of variables is the sum of the
counts of the member variables.
Example:
If the internal variable has the value "A B", the following test
hasflag :is "b A"
evaluates to true. The above test can also be written as
hasflag ["b","A"]
Example:
If the variable "MyVar" has value "NonJunk Junk gnus-forward
$Forwarded NotJunk JunkRecorded $Junk $NotJunk", the following
tests evaluate to true:
hasflag :contains "MyVar" "Junk"
hasflag :contains "MyVar" "forward"
hasflag :contains "MyVar" ["label", "forward"]
hasflag :contains "MyVar" ["junk", "forward"]
Note that the last of these tests can be rewritten
as
hasflag :contains "MyVar" "junk forward"
or
hasflag :contains "MyVar" "forward junk"
However, the last two forms are not recommended.
<span class="grey">Melnikov Standards Track [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc5232">RFC 5232</a> Sieve: Imap4flags Extension January 2008</span>
And the following tests will evaluate to false:
hasflag :contains "MyVar" "label"
hasflag :contains "MyVar" ["label1", "label2"]
Example:
If the variable "MyFlags" has the value "A B", the following test
hasflag :count "ge" :comparator "i;ascii-numeric"
"MyFlags" "2"
evaluates to true, as the variable contains 2 distinct flags.
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Tagged Argument :flags</span>
This specification adds a new optional tagged argument ":flags" that
alters the behavior of actions "keep" and "fileinto".
The :flags tagged argument specifies that the flags provided in the
subsequent argument should be set when fileinto/keep delivers the
message to the target mailbox/user's main mailbox. If the :flags
tagged argument is not specified, "keep" or "fileinto" will use the
current value of the internal variable when delivering the message to
the target mailbox.
Usage: ":flags" <list-of-flags: string-list>
The copy of the message filed into the mailbox will have only flags
listed after the :flags tagged argument.
The Sieve interpreter MUST ignore all flags that it can't store
permanently. This means that the interpreter MUST NOT treat failure
to store any flag as a runtime failure to execute the Sieve script.
For example, if the mailbox "INBOX.From Boss" can't store any flags,
then
fileinto :flags "\\Deleted" "INBOX.From Boss";
and
fileinto "INBOX.From Boss";
are equivalent.
This document doesn't dictate how the Sieve interpreter will set the
[<a href="#ref-IMAP" title=""INTERNET MESSAGE ACCESS PROTOCOL - VERSION 4rev1"">IMAP</a>] flags. In particular, the Sieve interpreter may work as an
IMAP client or may have direct access to the mailstore.
<span class="grey">Melnikov Standards Track [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc5232">RFC 5232</a> Sieve: Imap4flags Extension January 2008</span>
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Interaction with Other Sieve Actions</span>
This extension works only on the message that is currently being
processed by Sieve; it doesn't affect another message generated as a
side effect of any action or any other message already in the
mailstore.
The extension described in this document doesn't change the implicit
keep (see Section 2.10.2 of [<a href="#ref-SIEVE" title=""Sieve: An Email Filtering Language"">SIEVE</a>]).
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. Security Considerations</span>
Security considerations are discussed in [<a href="#ref-IMAP" title=""INTERNET MESSAGE ACCESS PROTOCOL - VERSION 4rev1"">IMAP</a>], [<a href="#ref-SIEVE" title=""Sieve: An Email Filtering Language"">SIEVE</a>], and
[<a href="#ref-VARIABLES" title=""Sieve Email Filtering: Variables Extension"">VARIABLES</a>].
This extension intentionally doesn't allow setting [<a href="#ref-IMAP" title=""INTERNET MESSAGE ACCESS PROTOCOL - VERSION 4rev1"">IMAP</a>] flags on an
arbitrary message in the [<a href="#ref-IMAP" title=""INTERNET MESSAGE ACCESS PROTOCOL - VERSION 4rev1"">IMAP</a>] message store.
It is believed that this extension doesn't introduce any additional
security concerns.
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. IANA Considerations</span>
The following template specifies the IANA registration of the
variables Sieve extension specified in this document:
To: iana@iana.org
Subject: Registration of new Sieve extension
Capability name: imap4flags
Description: Adds actions and tests for manipulating IMAP flags
RFC number: <a href="./rfc5232">RFC 5232</a>
Contact address: The Sieve discussion list <ietf-mta-filters@imc.org>
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-9" href="#section-9">9</a>. Extended Example</span>
#
# Example Sieve Filter
# Declare any optional features or extension used by the script
#
require ["fileinto", "imap4flags", "variables"];
#
# Move large messages to a special mailbox
#
<span class="grey">Melnikov Standards Track [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc5232">RFC 5232</a> Sieve: Imap4flags Extension January 2008</span>
if size :over 1M
{
addflag "MyFlags" "Big";
if header :is "From" "boss@company.example.com"
{
# The message will be marked as "\Flagged Big" when filed into
# mailbox "Big messages"
addflag "MyFlags" "\\Flagged";
}
fileinto :flags "${MyFlags}" "Big messages";
}
if header :is "From" "grandma@example.net"
{
addflag "MyFlags" ["\\Answered", "$MDNSent"];
# If the message is bigger than 1Mb it will be marked as
# "Big \Answered $MDNSent" when filed into mailbox "grandma".
# If the message is shorter than 1Mb it will be marked as
# "\Answered $MDNSent"
fileinto :flags "${MyFlags}" "GrandMa";
}
#
# Handle messages from known mailing lists
# Move messages from IETF filter discussion list to filter folder
#
if header :is "Sender" "owner-ietf-mta-filters@example.org"
{
set "MyFlags" "\\Flagged $Work";
# Message will have both "\Flagged" and $Work flags
keep :flags "${MyFlags}";
}
#
# Keep all messages to or from people in my company
#
elsif anyof address :domain :is ["From", "To"] "company.example.com"
{
keep :flags "${MyFlags}"; # keep in "Inbox" folder
}
# Try to catch unsolicited email. If a message is not to me,
# or it contains a subject known to be spam, file it away.
#
elsif anyof (not address :all :contains
["To", "Cc"] "me@company.example.com",
header :matches "subject"
["*make*money*fast*", "*university*dipl*mas*"])
<span class="grey">Melnikov Standards Track [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc5232">RFC 5232</a> Sieve: Imap4flags Extension January 2008</span>
{
remove "MyFlags" "\\Flagged";
fileinto :flags "${MyFlags}" "spam";
}
else
{
# Move all other external mail to "personal"
# folder.
fileinto :flags "${MyFlags}" "personal";
}
<span class="h2"><a class="selflink" id="section-10" href="#section-10">10</a>. Acknowledgments</span>
This document has been revised in part based on comments and
discussions that took place on and off the Sieve mailing list.
The help of those who took the time to review the document and make
suggestions is appreciated, especially that of Tim Showalter, Barry
Leiba, Randall Gellens, Ken Murchison, Cyrus Daboo, Matthew Elvey,
Jutta Degener, Ned Freed, Marc Mutz, Nigel Swinson, Kjetil Torgrim
Homme, Mark E. Mallett, Dave Cridland, Arnt Gulbrandsen, Philip
Guenther, Rob Austein, Sam Hartman, Eric Gray, and Cullen Jennings.
Special thanks to Tony Hansen and David Lamb for helping me better
explain the concept.
<span class="h2"><a class="selflink" id="section-11" href="#section-11">11</a>. Normative References</span>
[<a id="ref-SIEVE">SIEVE</a>] Guenther, P., Ed., and T. Showalter, Ed., "Sieve: An
Email Filtering Language", <a href="./rfc5228">RFC 5228</a>, January 2008.
[<a id="ref-IMAP">IMAP</a>] Crispin, M., "INTERNET MESSAGE ACCESS PROTOCOL - VERSION
4rev1", <a href="./rfc3501">RFC 3501</a>, March 2003.
[<a id="ref-VARIABLES">VARIABLES</a>] Homme, K., "Sieve Email Filtering: Variables Extension",
<a href="./rfc5229">RFC 5229</a>, January 2008.
[<a id="ref-RELATIONAL">RELATIONAL</a>] Segmuller, W. and B. Leiba "Sieve Email Filtering:
Relational Extension", <a href="./rfc5231">RFC 5231</a>, January 2008.
<span class="grey">Melnikov Standards Track [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc5232">RFC 5232</a> Sieve: Imap4flags Extension January 2008</span>
Author's Address
Alexey Melnikov
Isode Limited
5 Castle Business Village
Hampton, Middlesex
United Kingdom, TW12 2BX
EMail: alexey.melnikov@isode.com
<span class="grey">Melnikov Standards Track [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc5232">RFC 5232</a> Sieve: Imap4flags Extension January 2008</span>
Full Copyright Statement
Copyright (C) The IETF Trust (2008).
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/SHE REPRESENTS
OR IS SPONSORED BY (IF ANY), THE INTERNET SOCIETY, THE IETF TRUST 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 procedures with respect to rights in RFC 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.
Melnikov Standards Track [Page 12]
</pre>
|