1
2
3
4
5
6
7Network Working Group C. Daboo
8Request for Comments: 5257 Apple Inc.
9Category: Experimental R. Gellens
10 QUALCOMM Incorporated
11 June 2008
12
13
14 Internet Message Access Protocol - ANNOTATE Extension
15
16Status of This Memo
17
18 This memo defines an Experimental Protocol for the Internet
19 community. It does not specify an Internet standard of any kind.
20 Discussion and suggestions for improvement are requested.
21 Distribution of this memo is unlimited.
22
23Abstract
24
25 The ANNOTATE extension to the Internet Message Access Protocol
26 permits clients and servers to maintain "meta data" for messages, or
27 individual message parts, stored in a mailbox on the server. For
28 example, this can be used to attach comments and other useful
29 information to a message. It is also possible to attach annotations
30 to specific parts of a message, so that, for example, they could be
31 marked as seen, or important, or a comment added.
32
33 Note that this document was the product of a WG that had good
34 consensus on how to approach the problem. Nevertheless, the WG felt
35 it did not have enough information on implementation and deployment
36 hurdles to meet all of the requirements of a Proposed Standard. The
37 IETF solicits implementations and implementation reports in order to
38 make further progress.
39
40 Implementers should be aware that this specification may change in an
41 incompatible manner when going to Proposed Standard status. However,
42 any incompatible changes will result in a new capability name being
43 used to prevent problems with any deployments of the experimental
44 extension.
45
46
47
48
49
50
51
52
53
54
55
56
57
58Daboo & Gellens Experimental [Page 1]
59
60RFC 5257 IMAP ANNOTATE Extension June 2008
61
62
63Table of Contents
64
65 1. Introduction and Overview .......................................3
66 2. Conventions Used in This Document ...............................4
67 3. Data Model ......................................................4
68 3.1. Overview ...................................................4
69 3.2. Namespace of Entries and Attributes ........................4
70 3.2.1. Entry Names .........................................5
71 3.2.2. Attribute Names .....................................7
72 3.3. Private Versus Shared ......................................7
73 3.4. Access Control .............................................8
74 3.5. Access to Standard IMAP Flags and Keywords ................11
75 4. IMAP Protocol Changes ..........................................11
76 4.1. General Considerations ....................................11
77 4.2. ANNOTATE Parameter with the SELECT/EXAMINE Commands .......12
78 4.3. ANNOTATION Message Data Item in FETCH Command .............12
79 4.4. ANNOTATION Message Data Item in FETCH Response ............14
80 4.5. ANNOTATION Message Data Item in STORE .....................16
81 4.6. ANNOTATION Interaction with COPY ..........................18
82 4.7. ANNOTATION Message Data Item in APPEND ....................18
83 4.8. ANNOTATION Criterion in SEARCH ............................19
84 4.9. ANNOTATION Key in SORT ....................................20
85 4.10. New ACL Rights ...........................................21
86 5. Formal Syntax ..................................................21
87 6. IANA Considerations ............................................23
88 6.1. Entry and Attribute Registration Template .................23
89 6.2. Entry Registrations .......................................24
90 6.2.1. /comment ...........................................24
91 6.2.2. /flags .............................................24
92 6.2.3. /altsubject ........................................25
93 6.2.4. /<section-part>/comment ............................25
94 6.2.5. /<section-part>/flags/seen .........................26
95 6.2.6. /<section-part>/flags/answered .....................26
96 6.2.7. /<section-part>/flags/flagged ......................27
97 6.2.8. /<section-part>/flags/forwarded ....................27
98 6.3. Attribute Registrations ...................................28
99 6.3.1. value ..............................................28
100 6.3.2. size ...............................................28
101 6.4. Capability Registration ...................................28
102 7. Internationalization Considerations ............................29
103 8. Security Considerations ........................................29
104 9. References .....................................................29
105 9.1. Normative References ......................................29
106 9.2. Informative References ....................................30
107 10. Acknowledgments ...............................................30
108
109
110
111
112
113
114Daboo & Gellens Experimental [Page 2]
115
116RFC 5257 IMAP ANNOTATE Extension June 2008
117
118
1191. Introduction and Overview
120
121 The ANNOTATE extension is present in any IMAP [RFC3501]
122 implementation that returns "ANNOTATE-EXPERIMENT-1" as one of the
123 supported capabilities in the CAPABILITY response.
124
125 This extension makes the following changes to the IMAP protocol:
126
127 a. adds a new ANNOTATION message data item for use in FETCH.
128
129 b. adds a new ANNOTATION message data item for use in STORE.
130
131 c. adds a new ANNOTATION search criterion for use in SEARCH.
132
133 d. adds a new ANNOTATION sort key for use in the SORT extension.
134
135 e. adds a new ANNOTATION data item for use in APPEND.
136
137 f. adds a new requirement on the COPY command.
138
139 g. adds a new ANNOTATE parameter for use with the SELECT/EXAMINE
140 commands.
141
142 h. adds two new response codes to indicate store failures of
143 annotations.
144
145 i. adds a new untagged response code for the SELECT or EXAMINE
146 commands to indicate the maximum sized annotation that can be
147 stored.
148
149 j. adds a new Access Control List (ACL) "bit" for use with the ACL
150 extensions [RFC2086] and [RFC4314].
151
152 The data model used for the storage of annotations is based on the
153 Application Configuration Access Protocol [RFC2244]. Note that there
154 is no inheritance in annotations.
155
156 If a server supports annotations, then it MUST store all annotation
157 data permanently, i.e., there is no concept of "session only"
158 annotations that would correspond to the behavior of "session" flags
159 as defined in the IMAP base specification.
160
161 In order to provide optimum support for a disconnected client (one
162 that needs to synchronize annotations for use when offline), servers
163 SHOULD also support the Conditional STORE [RFC4551] extension.
164
165 The rest of this document describes the data model and protocol
166 changes more rigorously.
167
168
169
170Daboo & Gellens Experimental [Page 3]
171
172RFC 5257 IMAP ANNOTATE Extension June 2008
173
174
1752. Conventions Used in This Document
176
177 The examples in this document use "C:" and "S:" to indicate lines
178 sent by the client and server, respectively.
179
180 The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
181 "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
182 document are to be interpreted as described in [RFC2119].
183
1843. Data Model
185
1863.1. Overview
187
188 The data model for annotations in ANNOTATE uses a uniquely named
189 entry that contains a set of standard attributes. Thus, a single
190 coherent unit of "meta data" for a message is stored as a single
191 entry, made up of several attributes.
192
193 For example, a comment annotation added to a message has an entry
194 name of "/comment". This entry is composed of several attributes
195 such as "value", "size", etc., that contain the properties and data
196 of the entry.
197
198 The protocol changes to IMAP, described below, allow a client to
199 access or change the values of any attribute in any entry in a
200 message annotation, assuming it has sufficient access rights to do so
201 (see Section 3.4 for specifics).
202
2033.2. Namespace of Entries and Attributes
204
205 A message may contain zero or more annotations, each of which is a
206 single uniquely named entry. Each entry has a hierarchical name,
207 with each component of the name separated by a slash ("/"). An entry
208 name MUST NOT contain two consecutive "/" characters and MUST NOT end
209 with a "/" character.
210
211 Each entry is made up of a set of attributes. Each attribute has a
212 hierarchical name, with each component of the name separated by a
213 period ("."). An attribute name MUST NOT contain two consecutive "."
214 characters and MUST NOT end with a "." character.
215
216 The value of an attribute is "NIL" (has no value), or is a string of
217 zero or more octets.
218
219 Entry and attribute names MUST NOT contain asterisk ("*") or percent
220 ("%") characters, and MUST NOT contain non-ASCII characters or the
221 NULL octet. Invalid entry or attribute names result in a BAD
222 response in any IMAP commands where they are used.
223
224
225
226Daboo & Gellens Experimental [Page 4]
227
228RFC 5257 IMAP ANNOTATE Extension June 2008
229
230
231 Attribute names MUST NOT contain any hierarchical components with the
232 names "priv" or "shared", as those have special meaning (see Section
233 3.3).
234
235 Entry and attribute names are case-sensitive.
236
237 Use of control or punctuation characters in entry and attribute names
238 is strongly discouraged.
239
240 This specification defines an initial set of entry and attribute
241 names available for use in message annotations. In addition, an
242 extension mechanism is described to allow additional names to be
243 added as needed.
244
2453.2.1. Entry Names
246
247 Entry names MUST be specified in a standards track or IESG approved
248 experimental RFC, or fall under the vendor namespace. See Section
249 6.1 for the registration template.
250
251 /
252 Defines the top-level of entries associated with an entire
253 message. This entry itself does not contain any attributes. All
254 entries that start with a numeric character ("0" - "9") refer to
255 an annotation on a specific body part. All other entries are for
256 annotations on the entire message.
257
258 /comment
259 Defines a comment or note associated with an entire message.
260
261 /flags
262 This entry hierarchy is reserved for future use.
263
264 /altsubject
265 Contains text supplied by the message recipient to be used by the
266 client, instead of the original message Subject.
267
268 /vendor/<vendor-token>
269 Defines the top-level of entries associated with an entire message
270 as created by a particular product of some vendor. These sub-
271 entries can be used by vendors to provide client-specific
272 annotations. The vendor-token MUST be registered with IANA, using
273 the [RFC2244] vendor subtree registry.
274
275 /<section-part>
276 Defines the top-level of entries associated with a specific body
277 part of a message. This entry itself does not contain any
278 attributes. The section-part is a numeric part specifier. Its
279
280
281
282Daboo & Gellens Experimental [Page 5]
283
284RFC 5257 IMAP ANNOTATE Extension June 2008
285
286
287 syntax is the same as the section-part ABNF element defined in
288 [RFC3501]. The server MUST return a BAD response if the client
289 uses an incorrect part specifier (either incorrect syntax or a
290 specifier referring to a non-existent part). The server MUST
291 return a BAD response if the client uses an empty part specifier
292 (which is used in IMAP to represent the entire message).
293
294 /<section-part>/comment
295 Defines a comment or note associated with a specific body part of
296 a message.
297
298 /<section-part>/flags
299 Defines the top-level of entries associated with the flag state
300 for a specific body part of a message. All sub-entries are
301 maintained entirely by the client. There is no implicit change to
302 any flag by the server.
303
304 /<section-part>/flags/seen
305 This is similar to the IMAP \Seen flag, except it applies
306 to only the body part referenced by the entry.
307
308 /<section-part>/flags/answered
309 This is similar to the IMAP \Answered flag, except it
310 applies to only the body part referenced by the entry.
311
312 /<section-part>/flags/flagged
313 This is similar to the IMAP \Flagged flag, except it
314 applies to only the body part referenced by the entry.
315
316 /<section-part>/flags/forwarded
317 This is similar to the IMAP $Forwarded keyword, except it
318 applies to only the body part referenced by the entry.
319
320 Defines flags for a specific body part of a message. The "value"
321 attribute of each of the entries described above must be either
322 "1", "0", or "NIL". "1" corresponds to the flag being set.
323
324 /<section-part>/vendor/<vendor-token>
325 Defines the top-level of entries associated with a specific body
326 part of a message as created by a particular product of some
327 vendor. This entry can be used by vendors to provide client
328 specific annotations. The vendor-token MUST be registered with
329 IANA.
330
331
332
333
334
335
336
337
338Daboo & Gellens Experimental [Page 6]
339
340RFC 5257 IMAP ANNOTATE Extension June 2008
341
342
3433.2.2. Attribute Names
344
345 Attribute names MUST be specified in a standards track or IESG
346 approved experimental RFC. See Section 6.1 for the registration
347 template.
348
349 All attribute names implicitly have a ".priv" and a ".shared" suffix
350 that maps to private and shared versions of the entry. Searching or
351 fetching without using either suffix will include both. The client
352 MUST specify either a ".priv" or ".shared" suffix when storing an
353 annotation or sorting on annotations.
354
355 value
356 A string or binary data representing the value of the annotation.
357 To delete an annotation, the client can store "NIL" into the
358 value. If the client requests the value attribute for a non-
359 existent entry, then the server MUST return "NIL" for the value.
360 The content represented by the string is determined by the
361 content-type used to register the entry (see Section 6.1 for entry
362 registration templates). Where applicable, the registered
363 content-type MUST include a charset parameter. Text values SHOULD
364 use the utf-8 [RFC3629] character set. Note that binary data
365 (data which may contain the NULL octet) is allowed (e.g., for
366 storing images), and this extension uses the "literal8" syntax
367 element [RFC4466] to allow such data to be written to or read from
368 the server.
369
370 size
371 The size of the value, in octets. Set automatically by the
372 server, read-only to clients. If the client requests the size
373 attribute for a non-existent entry, then the server MUST return
374 "0" (zero) for the size.
375
3763.3. Private Versus Shared
377
378 Some IMAP mailboxes are private, accessible only to the owning user.
379 Other mailboxes are not, either because the owner has set an ACL
380 [RFC4314] that permits access by other users, or because it is a
381 shared mailbox.
382
383 This raises the issue of shared versus private annotations.
384
385 If all annotations are private, it is then impossible to have
386 annotations in a shared or otherwise non-private mailbox be visible
387 to other users. This eliminates what could be a useful aspect of
388 annotations in a shared environment. An example of such use is a
389 shared IMAP folder containing bug reports. Engineers may want to use
390
391
392
393
394Daboo & Gellens Experimental [Page 7]
395
396RFC 5257 IMAP ANNOTATE Extension June 2008
397
398
399 annotations to add information to existing messages, indicate
400 assignments, status, etc. This use requires shared annotations.
401
402 If all annotations are shared, it is impossible to use annotations
403 for private notes on messages in shared mailboxes. Also, modifying
404 an ACL to permit access to a mailbox by other users may
405 unintentionally expose private information.
406
407 There are also situations in which both shared and private
408 annotations are useful. For example, an administrator may want to
409 set shared annotations on messages in a shared folder, which
410 individual users may wish to supplement with additional notes.
411
412 If shared and private annotations are to coexist, we need a clear way
413 to differentiate them. Also, it should be as easy as possible for a
414 client to access both and not overlook either. There is also a
415 danger in allowing a client to store an annotation without knowing if
416 it is shared or private.
417
418 This document proposes two standard suffixes for all attributes:
419 ".shared" and ".priv". A SEARCH or FETCH command that specifies
420 neither, uses both. STORE, APPEND, and SORT commands MUST explicitly
421 use ".priv" or ".shared" suffixes.
422
423 If the ANNOTATE extension is present, support for shared annotations
424 in servers is REQUIRED, while support for private annotations in
425 servers is OPTIONAL. This recognizes the fact that support for
426 private annotations may introduce a significant increase in
427 complexity to a server in terms of tracking ownership of the
428 annotations, how quota is determined for users based on their own
429 annotations, etc. Clients that support the ANNOTATE extension MUST
430 handle both shared and private annotations.
431
4323.4. Access Control
433
434 A user needs to have appropriate rights in order to read or write
435 ".priv" or ".shared" annotation values. How those rights are
436 calculated depends on whether or not the ACL [RFC2086] extension or
437 its update [RFC4314] is present. If a client attempts to store or
438 fetch an annotation to which they do not have the appropriate rights,
439 the server MUST respond with a NO response.
440
441 When the ACL extension is not present, access to annotation values is
442 governed by the nature of the selected state, in particular whether
443 the mailbox was SELECTED or EXAMINED in READ-ONLY or READ-WRITE mode.
444
445
446
447
448
449
450Daboo & Gellens Experimental [Page 8]
451
452RFC 5257 IMAP ANNOTATE Extension June 2008
453
454
455 When the ACL extension is present, the server MUST recognize the new
456 ACL "n" right, in addition to the ones defined by the ACL extension
457 itself.
458
459 For ".priv" annotation values, the "r" right controls both read and
460 write access. When it is on, access to ".priv" annotations is
461 allowed; when it is off, access to ".priv" annotations is disallowed.
462
463 For ".shared" annotation values, the "r" right controls read access.
464 When it is on, ".shared" annotations can be read; when it is off,
465 ".shared" annotations cannot be read.
466
467 For ".shared" annotation values, the "n" right controls write access.
468 When it is on, ".shared" annotations can be changed or created
469 through either a STORE or APPEND command; when it is off, ".shared"
470 annotations cannot be changed or created. The "n" right constitutes
471 a "shared flag right" as defined in Section 6.2 of [RFC4314].
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
506Daboo & Gellens Experimental [Page 9]
507
508RFC 5257 IMAP ANNOTATE Extension June 2008
509
510
511 A summary of all the access control restrictions is tabulated below
512
513 +---------------+---------------+-----------------------------------+
514 | Server Type | Action on | Type of mailbox |
515 | | annotation | |
516 +===============+===============+===================================+
517 | | | |
518 | | read .priv | Any mailbox that can be SELECTED |
519 | | values | or EXAMINED. |
520 | | | |
521 | +---------------+-----------------------------------+
522 | | | |
523 | | write .priv | Any SELECTED [READ-WRITE] mailbox.|
524 | | values | SELECTED [READ-ONLY] mailboxes MAY|
525 | Server | | also permit writes. |
526 | without | | |
527 | ACL Extension +---------------+-----------------------------------+
528 | | | |
529 | | read .shared | Any mailbox that can be SELECTED |
530 | | values | or EXAMINED. |
531 | | | |
532 | +---------------+-----------------------------------+
533 | | | |
534 | | write .shared | Any mailbox that can be SELECTED |
535 | | values | or EXAMINED and is [READ-WRITE]. |
536 | | | |
537 +---------------+---------------+-----------------------------------+
538 | | | |
539 | | read .priv | Any mailbox with the "r" |
540 | | values | ACL right. |
541 | | | |
542 | +---------------+-----------------------------------+
543 | | | |
544 | | write .priv | Any mailbox with the "r" |
545 | Server | values | ACL right. |
546 | with | | |
547 | ACL Extension +---------------+-----------------------------------+
548 | | | |
549 | | read .shared | Any mailbox with the "r" |
550 | | values | ACL right. |
551 | | | |
552 | +---------------+-----------------------------------+
553 | | | |
554 | | write .shared | Any mailbox with the "n" |
555 | | values | ACL right. |
556 | | | |
557 +---------------+---------------+-----------------------------------+
558
559
560
561
562Daboo & Gellens Experimental [Page 10]
563
564RFC 5257 IMAP ANNOTATE Extension June 2008
565
566
5673.5. Access to Standard IMAP Flags and Keywords
568
569 Due to the ambiguity of how private and shared values would map to
570 the base IMAP flag and keyword values, the ANNOTATE extension does
571 not expose IMAP flags or keywords as entries. However, the /flags
572 annotation entry is reserved for future use and MUST NOT be used by
573 clients or servers supporting this extension.
574
575 Clients that need to implement shared and private "flags" can create
576 their own annotation entries for those, completely bypassing the base
577 IMAP flag/keyword behavior.
578
5794. IMAP Protocol Changes
580
5814.1. General Considerations
582
583 Servers may be able to offer only a limited level of support for
584 annotations in mailboxes, and it is useful for clients to be able to
585 know what level of support is available. Servers MUST return an
586 ANNOTATIONS response code during the SELECT or EXAMINE command for a
587 mailbox to indicate the level of support. Possible data items used
588 with the ANNOTATIONS response code are:
589
590 "NONE" - this indicates that the mailbox being selected does not
591 support annotations at all. Clients MUST NOT attempt to use
592 annotation extensions in commands for this mailbox.
593
594 "READ-ONLY" - this indicates that the annotations supported by the
595 mailbox cannot be changed by the client. Clients MUST NOT attempt
596 to store annotations on any messages in a mailbox with this
597 response code.
598
599 "NOPRIVATE" - this indicates that the server does not support
600 private annotations on the mailbox. Only shared annotations are
601 supported. Clients SHOULD only attempt to read or store
602 annotations attributes with the ".shared" suffix. If a client
603 uses an attribute with the ".priv" suffix in a FETCH command, then
604 servers should return the attribute value in the FETCH response as
605 "NIL". If a client uses an attribute with the ".priv" suffix in a
606 STORE command (or an APPEND command targeted at the mailbox), then
607 the server MUST return a NO response.
608
609 numeric values - if servers support writable annotations, then the
610 server MUST indicate the maximum size in octets for an annotation
611 value by providing the maximum size value in the response code.
612 Clients MUST NOT store annotation values of a size greater than
613 the amount indicated by the server. Servers MUST accept a minimum
614
615
616
617
618Daboo & Gellens Experimental [Page 11]
619
620RFC 5257 IMAP ANNOTATE Extension June 2008
621
622
623 annotation data size of at least 1024 octets if annotations can be
624 written.
625
626 In addition, the server MAY limit the total number of annotations for
627 a single message. However, the server MUST provide a minimum
628 annotation count per message of at least 10.
629
6304.2. ANNOTATE Parameter with the SELECT/EXAMINE Commands
631
632 The ANNOTATE extension defines a single optional SELECT parameter
633 [RFC4466] "ANNOTATE", which is used to turn on unsolicited responses
634 for annotations as described in Section 4.4. This optional parameter
635 results in a per-mailbox state change, i.e., it must be used in each
636 SELECT/EXAMINE command in order to be effective, irrespective of
637 whether it was used in a previous SELECT/EXAMINE during the same
638 session.
639
640 Example:
641
642 C: a SELECT INBOX (ANNOTATE)
643 S: * FLAGS (\Answered \Flagged \Draft \Deleted \Seen)
644 S: * OK [PERMANENTFLAGS (\Answered \Flagged \Draft
645 \Deleted \Seen \*)]
646 S: * 10268 EXISTS
647 S: * 1 RECENT
648 S: * OK [UNSEEN 10268]
649 S: * OK [UIDVALIDITY 890061587]
650 S: * OK [UIDNEXT 34643]
651 S: * OK [ANNOTATIONS 20480 NOPRIVATE]
652 S: a OK [READ-WRITE] Completed
653
654 In the above example, a SELECT command with the ANNOTATE parameter
655 is issued. The response from the server includes the required
656 ANNOTATIONS response that indicates that the server supports
657 annotations up to a maximum size of 20480 octets, and does not
658 support private annotations (only shared).
659
6604.3. ANNOTATION Message Data Item in FETCH Command
661
662 This extension adds an ANNOTATION message data item to the FETCH
663 command. This allows clients to retrieve annotations for a range of
664 messages in the currently selected mailbox.
665
666 ANNOTATION <entry-specifier> <attribute-specifier>
667
668 The ANNOTATION message data item, when used by the client in the
669 FETCH command, takes an entry specifier and an attribute
670 specifier.
671
672
673
674Daboo & Gellens Experimental [Page 12]
675
676RFC 5257 IMAP ANNOTATE Extension June 2008
677
678
679 Example:
680
681 C: a FETCH 1 (ANNOTATION (/comment value))
682 S: * 1 FETCH (ANNOTATION (/comment
683 (value.priv "My comment"
684 value.shared "Group note")))
685 S: a OK Fetch complete
686
687 In the above example, the content of the "value" attribute for the
688 "/comment" entry is requested by the client and returned by the
689 server. Since neither ".shared" nor ".priv" was specified, both
690 are returned.
691
692 "*" and "%" wild card characters can be used in entry specifiers to
693 match one or more characters at that position, with the exception
694 that "%" does not match the "/" hierarchy delimiter. Thus, an entry
695 specifier of "/%" matches entries such as "/comment" and
696 "/altsubject", but not "/1/comment".
697
698 Example:
699
700 C: a UID FETCH 1123 (UID ANNOTATION
701 (/* (value.priv size.priv)))
702 S: * 12 FETCH (UID 1123 ANNOTATION
703 (/comment (value.priv "My comment"
704 size.priv "10")
705 /altsubject (value.priv "Rhinoceroses!"
706 size.priv "13")
707 /vendor/foobar/label.priv
708 (value.priv "label43"
709 size.priv "7")
710 /vendor/foobar/personality
711 (value.priv "Tallulah Bankhead"
712 size.priv "17")))
713 S: a OK Fetch complete
714
715 In the above example, the contents of the private "value" and
716 "size" attributes for any entries in the "/" hierarchy are
717 requested by the client and returned by the server.
718
719
720
721
722
723
724
725
726
727
728
729
730Daboo & Gellens Experimental [Page 13]
731
732RFC 5257 IMAP ANNOTATE Extension June 2008
733
734
735 Example:
736
737 C: a FETCH 1 (ANNOTATION (/% value.shared))
738 S: * 1 FETCH (ANNOTATION
739 (/comment (value.shared "Patch Mangler")
740 /altsubject (value.shared "Patches? We don't
741 need no steenkin patches!")))
742 S: a OK Fetch complete
743
744 In the above example, the contents of the shared "value"
745 attributes for entries at the top level only of the "/" hierarchy
746 are requested by the client and returned by the server.
747
748 Entry and attribute specifiers can be lists of atomic specifiers, so
749 that multiple items of each type may be returned in a single FETCH
750 command.
751
752 Example:
753
754 C: a FETCH 1 (ANNOTATION
755 ((/comment /altsubject) value.priv))
756 S: * 1 FETCH (ANNOTATION
757 (/comment (value.priv "What a chowder-head")
758 /altsubject (value.priv "How to crush beer cans")))
759 S: a OK Fetch complete
760
761 In the above example, the contents of the private "value"
762 attributes for the two entries "/comment" and "/altsubject" are
763 requested by the client and returned by the server.
764
7654.4. ANNOTATION Message Data Item in FETCH Response
766
767 The ANNOTATION message data item in the FETCH response displays
768 information about annotations in a message.
769
770 ANNOTATION parenthesized list
771
772 The response consists of a list of entries, each of which have a
773 list of attribute-value pairs.
774
775
776
777
778
779
780
781
782
783
784
785
786Daboo & Gellens Experimental [Page 14]
787
788RFC 5257 IMAP ANNOTATE Extension June 2008
789
790
791 Example:
792
793 C: a FETCH 1 (ANNOTATION (/comment value))
794 S: * 1 FETCH (ANNOTATION (/comment
795 (value.priv "My comment"
796 value.shared NIL)))
797 S: a OK Fetch complete
798
799 In the above example, a single entry with a single attribute-value
800 pair is returned by the server. Since the client did not specify
801 a ".shared" or ".priv" suffix, both are returned. Only the
802 private attribute has a value (the shared value is "NIL").
803
804 Example:
805
806 C: a FETCH 1 (ANNOTATION
807 ((/comment /altsubject) value))
808 S: * 1 FETCH (ANNOTATION
809 (/comment (value.priv "My comment"
810 value.shared NIL)
811 /altsubject (value.priv "My subject"
812 value.shared NIL)))
813 S: a OK Fetch complete
814
815 In the above example, two entries, each with a single attribute-
816 value pair, are returned by the server. Since the client did not
817 specify a ".shared" or ".priv" suffix, both are returned. Only
818 the private attributes have values; the shared attributes are
819 "NIL".
820
821 Example:
822
823 C: a FETCH 1 (ANNOTATION
824 (/comment (value size)))
825 S: * 1 FETCH (ANNOTATION
826 (/comment
827 (value.priv "My comment"
828 value.shared NIL
829 size.priv "10"
830 size.shared "0")))
831 S: a OK Fetch complete
832
833 In the above example, a single entry with two attribute-value
834 pairs is returned by the server. Since the client did not specify
835 a ".shared" or ".priv" suffix, both are returned. Only the
836 private attributes have values; the shared attributes are "NIL".
837
838
839
840
841
842Daboo & Gellens Experimental [Page 15]
843
844RFC 5257 IMAP ANNOTATE Extension June 2008
845
846
847 Servers SHOULD send ANNOTATION message data items in unsolicited
848 FETCH responses if an annotation entry is changed by a third-party,
849 and the ANNOTATE select parameter was used. This allows servers to
850 keep clients updated with changes to annotations by other clients.
851
852 Unsolicited ANNOTATION responses MUST NOT include ANNOTATION data
853 values -- only the entry name of the ANNOTATION that has changed.
854 This restriction avoids sending ANNOTATION data values (which may be
855 large) to a client unless the client explicitly asks for the value.
856
857 Example:
858
859 C: a STORE 1 +FLAGS (\Seen)
860 S: * 1 FETCH (FLAGS (\Seen))
861 ANNOTATION (/comment))
862 S: a OK STORE complete
863
864 In the above example, an unsolicited ANNOTATION response is
865 returned during a STORE command. The unsolicited response
866 contains only the entry name of the annotation that changed, and
867 not its value.
868
8694.5. ANNOTATION Message Data Item in STORE
870
871 ANNOTATION <parenthesized entry-attribute-value list>
872
873 Sets the specified list of entries by adding or replacing the
874 specified attributes with the values provided. Clients can use
875 "NIL" for values of attributes it wants to remove from entries.
876
877 The ANNOTATION message data item used with the STORE command has an
878 implicit ".SILENT" behavior. This means the server does not generate
879 an untagged FETCH in response to the STORE command and assumes that
880 the client updates its own cache if the command succeeds. Though
881 note, that if the Conditional STORE extension [RFC4551] is present,
882 then an untagged FETCH response with a MODSEQ data item will be
883 returned by the server as required by [RFC4551].
884
885 If the server is unable to store an annotation because the size of
886 its value is too large, the server MUST return a tagged NO response
887 with a "[ANNOTATE TOOBIG]" response code.
888
889 If the server is unable to store a new annotation because the maximum
890 number of allowed annotations has already been reached, the server
891 MUST return a tagged NO response with a "[ANNOTATE TOOMANY]" response
892 code.
893
894
895
896
897
898Daboo & Gellens Experimental [Page 16]
899
900RFC 5257 IMAP ANNOTATE Extension June 2008
901
902
903 Example:
904
905 C: a STORE 1 ANNOTATION (/comment
906 (value.priv "My new comment"))
907 S: a OK Store complete
908
909 In the above example, the entry "/comment" is created (if not
910 already present). Its private attribute "value" is created if not
911 already present, or replaced if it exists. "value.priv" is set to
912 "My new comment".
913
914 Example:
915
916 C: a STORE 1 ANNOTATION (/comment
917 (value.shared NIL))
918 S: a OK Store complete
919
920 In the above example, the shared "value" attribute of the entry
921 "/comment" is removed by storing "NIL" into the attribute.
922
923 Multiple entries can be set in a single STORE command by listing
924 entry-attribute-value pairs in the list.
925
926 Example:
927
928 C: a STORE 1 ANNOTATION (/comment
929 (value.priv "Get tix Tuesday")
930 /altsubject
931 (value.priv "Wots On"))
932 S: a OK Store complete
933
934 In the above example, the entries "/comment" and "/altsubject" are
935 created (if not already present) and the private attribute "value"
936 is created or replaced for each entry.
937
938 Multiple attributes can be set in a single STORE command by listing
939 multiple attribute-value pairs in the entry list.
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954Daboo & Gellens Experimental [Page 17]
955
956RFC 5257 IMAP ANNOTATE Extension June 2008
957
958
959 Example:
960
961 C: a STORE 1 ANNOTATION (/comment
962 (value.priv "My new comment"
963 value.shared "foo's bar"))
964 S: a OK Store complete
965
966 In the above example, the entry "/comment" is created (if not
967 already present) and the private and shared "value" attributes are
968 created if not already present, or replaced if they exist.
969
9704.6. ANNOTATION Interaction with COPY
971
972 The COPY command can be used to move messages from one mailbox to
973 another on the same server. Servers that support the ANNOTATION
974 extension MUST, for each message being copied, copy all ".priv"
975 annotation data for the current user only, and all ".shared"
976 annotation data along with the message to the new mailbox. The only
977 exceptions to this are if the destination mailbox permissions are
978 such that either the ".priv" or ".shared" annotations are not
979 allowed, or if the destination mailbox is of a type that does not
980 support annotations or does not support storing of annotations (a
981 mailbox that returns a "NONE" or "READ-ONLY" response code in its
982 ANNOTATIONS response), or if the destination mailbox cannot support
983 the size of an annotation because it exceeds the ANNOTATIONS value.
984 Servers MUST NOT copy ".priv" annotation data for users other than
985 the current user.
986
9874.7. ANNOTATION Message Data Item in APPEND
988
989 ANNOTATION <parenthesized entry-attribute-value list>
990
991 Sets the specified list of entries and attributes in the resulting
992 message.
993
994 The APPEND command can include annotations for the message being
995 appended via the addition of a new append data item [RFC4466]. The
996 new data item can also be used with the multi-append [RFC3502]
997 extension that allows multiple messages to be appended via a single
998 APPEND command.
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010Daboo & Gellens Experimental [Page 18]
1011
1012RFC 5257 IMAP ANNOTATE Extension June 2008
1013
1014
1015 Example:
1016
1017 C: a APPEND drafts ANNOTATION (/comment
1018 (value.priv "Don't send until I say so")) {310}
1019 S: + Ready for literal data
1020 C: MIME-Version: 1.0
1021 ...
1022 C:
1023 S: a OK APPEND completed
1024
1025 In the above example, a comment with a private value is added to a
1026 new message appended to the mailbox. The ellipsis represents the
1027 bulk of the message.
1028
10294.8. ANNOTATION Criterion in SEARCH
1030
1031 ANNOTATION <entry-name> <attribute-name> <value>
1032
1033 The ANNOTATION criterion for the SEARCH command allows a client to
1034 search for a specified string in the value of an annotation entry of
1035 a message.
1036
1037 Messages that have annotations with entries matching <entry-name>,
1038 attributes matching <attribute-name>, and the specified string
1039 <value> in their values are returned in the SEARCH results. The "*"
1040 character can be used in the entry name field to match any content in
1041 those items. The "%" character can be used in the entry name field
1042 to match a single level of hierarchy only.
1043
1044 Only the "value", "value.priv", and "value.shared" attributes can be
1045 searched. Clients MUST NOT specify an attribute other than either
1046 "value", "value.priv", or "value.shared". Servers MUST return a BAD
1047 response if the client tries to search any other attribute.
1048
1049 Example:
1050
1051 C: a SEARCH ANNOTATION /comment value "IMAP4"
1052 S: * SEARCH 2 3 5 7 11 13 17 19 23
1053 S: a OK Search complete
1054
1055 In the above example, the message numbers of any messages
1056 containing the string "IMAP4" in the shared or private "value"
1057 attribute of the "/comment" entry are returned in the search
1058 results.
1059
1060
1061
1062
1063
1064
1065
1066Daboo & Gellens Experimental [Page 19]
1067
1068RFC 5257 IMAP ANNOTATE Extension June 2008
1069
1070
1071 Example:
1072
1073 C: a SEARCH ANNOTATION * value.priv "IMAP4"
1074 S: * SEARCH 1 2 3 5 8 13 21 34
1075 S: a OK Search complete
1076
1077 In the above example, the message numbers of any messages
1078 containing the string "IMAP4" in the private "value" attribute of
1079 any entry are returned in the search results.
1080
10814.9. ANNOTATION Key in SORT
1082
1083 ANNOTATION <entry-name> <attribute-name>
1084
1085 The ANNOTATION criterion for the SORT command [RFC5256] instructs the
1086 server to return the sequence numbers or Unique Identifiers (UIDs) of
1087 messages in a mailbox, sorted using the values of the specified
1088 annotations. The ANNOTATION criterion is available if the server
1089 returns both ANNOTATE-EXPERIMENT-1 and SORT as supported capabilities
1090 in the CAPABILITY command response.
1091
1092 Messages are sorted using the values of the <attribute-name>
1093 attributes in the <entry-name> entries.
1094
1095 Clients MUST provide either the ".priv" or ".shared" suffix to the
1096 attribute name to ensure that the server knows which specific value
1097 to sort on.
1098
1099 Only the "value.priv" and "value.shared" attributes can be used for
1100 sorting. Clients MUST NOT specify an attribute other than either
1101 "value.priv" or "value.shared". Servers MUST return a BAD response
1102 if the client tries to sort on any other attribute.
1103
1104 When either "value.priv" or "value.shared" is being sorted, the
1105 server MUST use the character set value specified in the SORT command
1106 to determine the appropriate sort order.
1107
1108 Example:
1109
1110 C: a SORT (ANNOTATION /altsubject value.shared) UTF-8 ALL
1111 S: * SORT 2 3 4 5 1 11 10 6 7 9 8
1112 S: a OK Sort complete
1113
1114 In the above example, the message numbers of all messages are
1115 returned, sorted according to the shared "value" attribute of the
1116 "/altsubject" entry.
1117
1118
1119
1120
1121
1122Daboo & Gellens Experimental [Page 20]
1123
1124RFC 5257 IMAP ANNOTATE Extension June 2008
1125
1126
1127 Note that the ANNOTATION sort key must include a fully specified
1128 entry -- wild cards are not allowed.
1129
11304.10. New ACL Rights
1131
1132 As discussed in Section 3.4, this extension adds a new "n" right to
1133 the list of rights provided by the ACL extensions [RFC2086] and
1134 [RFC4314].
1135
11365. Formal Syntax
1137
1138 The following syntax specification uses the Augmented Backus-Naur
1139 Form (ABNF) notation as specified in [RFC5234].
1140
1141 Non-terminals referenced but not defined below are as defined by
1142 [RFC3501] with the new definitions in [RFC4466] superseding those in
1143 [RFC3501].
1144
1145 Except as noted otherwise, all alphabetic characters are case-
1146 insensitive. The use of upper or lower case characters to define
1147 token strings is for editorial clarity only. Implementations MUST
1148 accept these strings in a case-insensitive fashion.
1149
1150 ann-size = "NONE" /
1151 (("READ-ONLY" / nz-number)
1152 [SP "NOPRIVATE"])
1153 ; response codes indicating the level of
1154 ; support for annotations in a mailbox
1155
1156 append-ext =/ att-annotate
1157 ; modifies [RFC3501] extension behaviour
1158
1159 att-annotate = "ANNOTATION" SP
1160 "(" entry-att *(SP entry-att) ")"
1161
1162 att-search = "value" / "value.priv" / "value.shared"
1163 ; the only attributes that can be searched
1164
1165 att-sort = "value.priv" / "value.shared"
1166 ; the only attributes that can be sorted
1167
1168 att-value = attrib SP value
1169
1170 attrib = astring
1171 ; dot-separated attribute name
1172 ; MUST NOT contain "*" or "%"
1173
1174
1175
1176
1177
1178Daboo & Gellens Experimental [Page 21]
1179
1180RFC 5257 IMAP ANNOTATE Extension June 2008
1181
1182
1183 attribs = attrib / "(" attrib *(SP attrib) ")"
1184 ; one or more attribute specifiers
1185
1186 capability =/ "ANNOTATE-EXPERIMENT-1"
1187 ; defines the capability for this extension
1188
1189 entries = entry-match /
1190 "(" entry-match *(SP entry-match) ")"
1191
1192 entry = astring
1193 ; slash-separated path to entry
1194 ; MUST NOT contain "*" or "%"
1195
1196 entry-att = entry SP "(" att-value *(SP att-value) ")"
1197
1198 entry-match = list-mailbox
1199 ; slash-separated path to entry
1200 ; MAY contain "*" or "%" for use as wild cards
1201
1202 fetch-att =/ "ANNOTATION" SP "(" entries SP attribs ")"
1203 ; modifies original IMAP fetch-att
1204
1205 msg-att-dynamic =/ "ANNOTATION" SP
1206 ( "(" entry-att *(SP entry-att) ")" /
1207 "(" entry *(SP entry) ")" )
1208 ; extends FETCH response with annotation data
1209
1210 resp-text-code =/ "ANNOTATE" SP "TOOBIG" /
1211 "ANNOTATE" SP "TOOMANY" /
1212 "ANNOTATIONS" SP ann-size
1213 ; new response codes
1214
1215 search-key =/ "ANNOTATION" SP entry-match SP att-search
1216 SP value
1217 ; modifies original IMAP search-key
1218
1219 select-param =/ "ANNOTATE"
1220 ; defines the select parameter used with
1221 ; ANNOTATE extension
1222
1223 sort-key =/ "ANNOTATION" SP entry SP att-sort
1224 ; modifies original sort-key
1225
1226 store-att-flags =/ att-annotate
1227 ; modifies original IMAP STORE command
1228
1229 value = nstring / literal8
1230
1231
1232
1233
1234Daboo & Gellens Experimental [Page 22]
1235
1236RFC 5257 IMAP ANNOTATE Extension June 2008
1237
1238
12396. IANA Considerations
1240
1241 Entry names MUST be specified in a standards track or IESG approved
1242 experimental RFC, or fall under the vendor namespace. Vendor names
1243 MUST be registered.
1244
1245 Attribute names MUST be specified in a standards track or IESG
1246 approved experimental RFC.
1247
1248 Each entry registration MUST include a content-type that is used to
1249 indicate the nature of the annotation value. Where applicable, a
1250 charset parameter MUST be included with the content-type.
1251
12526.1. Entry and Attribute Registration Template
1253
1254 To: iana@iana.org
1255 Subject: IMAP Annotate Registration
1256
1257 Please register the following IMAP Annotate item:
1258
1259 [] Entry [] Attribute
1260
1261 Name: ______________________________
1262
1263 Description: _______________________
1264
1265 ____________________________________
1266
1267 ____________________________________
1268
1269 Content-Type:_______________________
1270
1271 Contact person: ____________________
1272
1273 email: ____________________
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290Daboo & Gellens Experimental [Page 23]
1291
1292RFC 5257 IMAP ANNOTATE Extension June 2008
1293
1294
12956.2. Entry Registrations
1296
1297 The following templates specify the IANA registrations of annotation
1298 entries specified in this document.
1299
13006.2.1. /comment
1301
1302 To: iana@iana.org
1303 Subject: IMAP Annotate Registration
1304
1305 Please register the following IMAP Annotate item:
1306
1307 [X] Entry [] Attribute
1308
1309 Name: /comment
1310
1311 Description: Defined in IMAP ANNOTATE extension document.
1312
1313 Content-Type: text/plain; charset=utf-8
1314
1315 Contact person: Cyrus Daboo
1316
1317 email: cyrus@daboo.name
1318
13196.2.2. /flags
1320
1321 To: iana@iana.org
1322 Subject: IMAP Annotate Registration
1323
1324 Please register the following IMAP Annotate item:
1325
1326 [X] Entry [] Attribute
1327
1328 Name: /flags
1329
1330 Description: Reserved entry hierarchy.
1331
1332 Content-Type: -
1333
1334 Contact person: Cyrus Daboo
1335
1336 email: cyrus@daboo.name
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346Daboo & Gellens Experimental [Page 24]
1347
1348RFC 5257 IMAP ANNOTATE Extension June 2008
1349
1350
13516.2.3. /altsubject
1352
1353 To: iana@iana.org
1354 Subject: IMAP Annotate Registration
1355
1356 Please register the following IMAP Annotate item:
1357
1358 [X] Entry [] Attribute
1359
1360 Name: /altsubject
1361
1362 Description: Defined in IMAP ANNOTATE extension document.
1363
1364 Content-Type: text/plain; charset=utf-8
1365
1366 Contact person: Cyrus Daboo
1367
1368 email: cyrus@daboo.name
1369
13706.2.4. /<section-part>/comment
1371
1372 To: iana@iana.org
1373 Subject: IMAP Annotate Registration
1374
1375 Please register the following IMAP Annotate item:
1376
1377 [X] Entry [] Attribute
1378
1379 Name: /<section-part>/comment
1380
1381 Description: Defined in IMAP ANNOTATE extension document.
1382
1383 Content-Type: text/plain; charset=utf-8
1384
1385 Contact person: Cyrus Daboo
1386
1387 email: cyrus@daboo.name
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402Daboo & Gellens Experimental [Page 25]
1403
1404RFC 5257 IMAP ANNOTATE Extension June 2008
1405
1406
14076.2.5. /<section-part>/flags/seen
1408
1409 To: iana@iana.org
1410 Subject: IMAP Annotate Registration
1411
1412 Please register the following IMAP Annotate item:
1413
1414 [X] Entry [] Attribute
1415
1416 Name: /<section-part>/flags/seen
1417
1418 Description: Defined in IMAP ANNOTATE extension document.
1419
1420 Content-Type: text/plain; charset=utf-8
1421
1422 Contact person: Cyrus Daboo
1423
1424 email: cyrus@daboo.name
1425
14266.2.6. /<section-part>/flags/answered
1427
1428 To: iana@iana.org
1429 Subject: IMAP Annotate Registration
1430
1431 Please register the following IMAP Annotate item:
1432
1433 [X] Entry [] Attribute
1434
1435 Name: /<section-part>/flags/answered
1436
1437 Description: Defined in IMAP ANNOTATE extension document.
1438
1439 Content-Type: text/plain; charset=utf-8
1440
1441 Contact person: Cyrus Daboo
1442
1443 email: cyrus@daboo.name
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458Daboo & Gellens Experimental [Page 26]
1459
1460RFC 5257 IMAP ANNOTATE Extension June 2008
1461
1462
14636.2.7. /<section-part>/flags/flagged
1464
1465 To: iana@iana.org
1466 Subject: IMAP Annotate Registration
1467
1468 Please register the following IMAP Annotate item:
1469
1470 [X] Entry [] Attribute
1471
1472 Name: /<section-part>/flags/flagged
1473
1474 Description: Defined in IMAP ANNOTATE extension document.
1475
1476 Content-Type: text/plain; charset=utf-8
1477
1478 Contact person: Cyrus Daboo
1479
1480 email: cyrus@daboo.name
1481
14826.2.8. /<section-part>/flags/forwarded
1483
1484 To: iana@iana.org
1485 Subject: IMAP Annotate Registration
1486
1487 Please register the following IMAP Annotate item:
1488
1489 [X] Entry [] Attribute
1490
1491 Name: /<section-part>/flags/forwarded
1492
1493 Description: Defined in IMAP ANNOTATE extension document.
1494
1495 Content-Type: text/plain; charset=utf-8
1496
1497 Contact person: Cyrus Daboo
1498
1499 email: cyrus@daboo.name
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514Daboo & Gellens Experimental [Page 27]
1515
1516RFC 5257 IMAP ANNOTATE Extension June 2008
1517
1518
15196.3. Attribute Registrations
1520
1521 The following templates specify the IANA registrations of annotation
1522 attributes specified in this document.
1523
15246.3.1. value
1525
1526 To: iana@iana.org
1527 Subject: IMAP Annotate Registration
1528
1529 Please register the following IMAP Annotate item:
1530
1531 [] Entry [X] Attribute
1532
1533 Name: value
1534
1535 Description: Defined in IMAP ANNOTATE extension document.
1536
1537 Contact person: Cyrus Daboo
1538
1539 email: cyrus@daboo.name
1540
15416.3.2. size
1542
1543 To: iana@iana.org
1544 Subject: IMAP Annotate Registration
1545
1546 Please register the following IMAP Annotate item:
1547
1548 [] Entry [X] Attribute
1549
1550 Name: size
1551
1552 Description: Defined in IMAP ANNOTATE extension document.
1553
1554 Contact person: Cyrus Daboo
1555
1556 email: cyrus@daboo.name
1557
15586.4. Capability Registration
1559
1560 This document registers "ANNOTATE-EXPERIMENT-1" as an IMAPEXT
1561 capability.
1562
1563
1564
1565
1566
1567
1568
1569
1570Daboo & Gellens Experimental [Page 28]
1571
1572RFC 5257 IMAP ANNOTATE Extension June 2008
1573
1574
15757. Internationalization Considerations
1576
1577 Annotations may contain values that include text strings, and both
1578 searching and sorting are possible with annotations. Servers MUST
1579 follow standard IMAP text normalization, character set conversion,
1580 and collation rules when such operations are carried out, as would be
1581 done for other textual fields being searched or sorted on.
1582
15838. Security Considerations
1584
1585 Annotations whose values are intended to remain private MUST be
1586 stored in ".priv" values instead of ".shared" values, which may be
1587 accessible to other users.
1588
1589 Excluding the above issues, the ANNOTATE extension does not raise any
1590 security considerations that are not present in the base IMAP
1591 protocol; these issues are discussed in [RFC3501].
1592
15939. References
1594
15959.1. Normative References
1596
1597 [RFC2086] Myers, J., "IMAP4 ACL extension", RFC 2086, January 1997.
1598
1599 [RFC2119] Bradner, S., "Key words for use in RFCs to Indicate
1600 Requirement Levels", BCP 14, RFC 2119, March 1997.
1601
1602 [RFC2244] Newman, C. and J. Myers, "ACAP -- Application
1603 Configuration Access Protocol", RFC 2244, November 1997.
1604
1605 [RFC3501] Crispin, M., "INTERNET MESSAGE ACCESS PROTOCOL - VERSION
1606 4rev1", RFC 3501, March 2003.
1607
1608 [RFC3502] Crispin, M., "Internet Message Access Protocol (IMAP) -
1609 MULTIAPPEND Extension", RFC 3502, March 2003.
1610
1611 [RFC3629] Yergeau, F., "UTF-8, a transformation format of ISO
1612 10646", STD 63, RFC 3629, November 2003.
1613
1614 [RFC4314] Melnikov, A., "IMAP4 Access Control List (ACL) Extension",
1615 RFC 4314, December 2005.
1616
1617 [RFC4466] Melnikov, A. and C. Daboo, "Collected Extensions to IMAP4
1618 ABNF", RFC 4466, April 2006.
1619
1620 [RFC5234] Crocker, D., Ed., and P. Overell, "Augmented BNF for
1621 Syntax Specifications: ABNF", STD 68, RFC 5234, January
1622 2008.
1623
1624
1625
1626Daboo & Gellens Experimental [Page 29]
1627
1628RFC 5257 IMAP ANNOTATE Extension June 2008
1629
1630
1631 [RFC5256] Crispin, M. and K. Murchison, "Internet Message Access
1632 Protocol - SORT and THREAD Extensions", RFC 5256, June
1633 2008.
1634
16359.2. Informative References
1636
1637 [RFC4551] Melnikov, A. and S. Hole, "IMAP Extension for Conditional
1638 STORE Operation or Quick Flag Changes Resynchronization",
1639 RFC 4551, June 2006.
1640
164110. Acknowledgments
1642
1643 Many thanks to Chris Newman for his detailed comments on the first
1644 draft of this document, and to the participants at the ACAP working
1645 dinner in Pittsburgh. The participants of the IMAPext working group
1646 made significant contributions to this work.
1647
1648Authors' Addresses
1649
1650 Cyrus Daboo
1651 Apple Inc.
1652 1 Infinite Loop
1653 Cupertino, CA 95014
1654 USA
1655
1656 EMail: cyrus@daboo.name
1657 URI: http://www.apple.com/
1658
1659
1660 Randall Gellens
1661 QUALCOMM Incorporated
1662 5775 Morehouse Dr.
1663 San Diego, CA 92121-2779
1664 USA
1665
1666 EMail: randy@qualcomm.com
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682Daboo & Gellens Experimental [Page 30]
1683
1684RFC 5257 IMAP ANNOTATE Extension June 2008
1685
1686
1687Full Copyright Statement
1688
1689 Copyright (C) The IETF Trust (2008).
1690
1691 This document is subject to the rights, licenses and restrictions
1692 contained in BCP 78, and except as set forth therein, the authors
1693 retain all their rights.
1694
1695 This document and the information contained herein are provided on an
1696 "AS IS" basis and THE CONTRIBUTOR, THE ORGANIZATION HE/SHE REPRESENTS
1697 OR IS SPONSORED BY (IF ANY), THE INTERNET SOCIETY, THE IETF TRUST AND
1698 THE INTERNET ENGINEERING TASK FORCE DISCLAIM ALL WARRANTIES, EXPRESS
1699 OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF
1700 THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED
1701 WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
1702
1703Intellectual Property
1704
1705 The IETF takes no position regarding the validity or scope of any
1706 Intellectual Property Rights or other rights that might be claimed to
1707 pertain to the implementation or use of the technology described in
1708 this document or the extent to which any license under such rights
1709 might or might not be available; nor does it represent that it has
1710 made any independent effort to identify any such rights. Information
1711 on the procedures with respect to rights in RFC documents can be
1712 found in BCP 78 and BCP 79.
1713
1714 Copies of IPR disclosures made to the IETF Secretariat and any
1715 assurances of licenses to be made available, or the result of an
1716 attempt made to obtain a general license or permission for the use of
1717 such proprietary rights by implementers or users of this
1718 specification can be obtained from the IETF on-line IPR repository at
1719 http://www.ietf.org/ipr.
1720
1721 The IETF invites any interested party to bring to its attention any
1722 copyrights, patents or patent applications, or other proprietary
1723 rights that may cover technology that may be required to implement
1724 this standard. Please address the information to the IETF at
1725 ietf-ipr@ietf.org.
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738Daboo & Gellens Experimental [Page 31]
1739
1740