summaryrefslogtreecommitdiff
path: root/imap/docs/rfc/rfc5819.txt
blob: e45b855831bae7d3caa90cf364695ff36f3cecd8 (plain)
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






Internet Engineering Task Force (IETF)                       A. Melnikov
Request for Comments: 5819                                 Isode Limited
Category: Standards Track                                    T. Sirainen
ISSN: 2070-1721                                             Unaffiliated
                                                              March 2010


   IMAP4 Extension for Returning STATUS Information in Extended LIST

Abstract

   Many IMAP clients display information about total number of
   messages / total number of unseen messages in IMAP mailboxes.  In
   order to do that, they are forced to issue a LIST or LSUB command and
   to list all available mailboxes, followed by a STATUS command for
   each mailbox found.  This document provides an extension to LIST
   command that allows the client to request STATUS information for
   mailboxes together with other information typically returned by the
   LIST command.

Status of This Memo

   This is an Internet Standards Track document.

   This document is a product of the Internet Engineering Task Force
   (IETF).  It represents the consensus of the IETF community.  It has
   received public review and has been approved for publication by the
   Internet Engineering Steering Group (IESG).  Further information on
   Internet Standards is available in Section 2 of RFC 5741.

   Information about the current status of this document, any errata,
   and how to provide feedback on it may be obtained at
   http://www.rfc-editor.org/info/rfc5819.

Copyright Notice

   Copyright (c) 2010 IETF Trust and the persons identified as the
   document authors.  All rights reserved.

   This document is subject to BCP 78 and the IETF Trust's Legal
   Provisions Relating to IETF Documents
   (http://trustee.ietf.org/license-info) in effect on the date of
   publication of this document.  Please review these documents
   carefully, as they describe your rights and restrictions with respect
   to this document.  Code Components extracted from this document must
   include Simplified BSD License text as described in Section 4.e of
   the Trust Legal Provisions and are provided without warranty as
   described in the Simplified BSD License.



Melnikov & Sirainen          Standards Track                    [Page 1]

RFC 5819                         TITLE*                       March 2010


Table of Contents

   1. Introduction ....................................................2
      1.1. Conventions Used in This Document ..........................2
   2. STATUS Return Option to LIST Command ............................2
   3. Examples ........................................................3
   4. Formal Syntax ...................................................4
   5. Security Considerations .........................................4
   6. IANA Considerations .............................................4
   7. Acknowledgements ................................................5
   8. Normative References ............................................5

1.  Introduction

   Many IMAP clients display information about the total number of
   messages / total number of unseen messages in IMAP mailboxes.  In
   order to do that, they are forced to issue a LIST or LSUB command and
   to list all available mailboxes, followed by a STATUS command for
   each mailbox found.  This document provides an extension to LIST
   command that allows the client to request STATUS information for
   mailboxes together with other information typically returned by the
   LIST command.

1.1.  Conventions Used in This Document

   In examples, "C:" indicates lines sent by a client that is connected
   to a server.  "S:" indicates lines sent by the server to the client.

   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 RFC 2119 [Kwds].

2.  STATUS Return Option to LIST Command

   [RFC3501] explicitly disallows mailbox patterns in the STATUS
   command.  The main reason was to discourage frequent use of the
   STATUS command by clients, as it might be quite expensive for an IMAP
   server to perform.  However, this prohibition had resulted in an
   opposite effect: a new generation of IMAP clients appeared, that
   issues a STATUS command for each mailbox returned by the LIST
   command.  This behavior is suboptimal to say at least.  It wastes
   extra bandwidth and, in the case of a client that doesn't support
   IMAP pipelining, also degrades performance by using too many round
   trips.  This document tries to remedy the situation by specifying a
   single command that can be used by the client to request all the
   necessary information.  In order to achieve this goal, this document
   is extending the LIST command with a new return option, STATUS.  This
   option takes STATUS data items as parameters.  For each selectable



Melnikov & Sirainen          Standards Track                    [Page 2]

RFC 5819                         TITLE*                       March 2010


   mailbox matching the list pattern and selection options, the server
   MUST return an untagged LIST response followed by an untagged STATUS
   response containing the information requested in the STATUS return
   option.

   If an attempted STATUS for a listed mailbox fails because the mailbox
   can't be selected (e.g., if the "l" ACL right [ACL] is granted to the
   mailbox and the "r" right is not granted, or due to a race condition
   between LIST and STATUS changing the mailbox to \NoSelect), the
   STATUS response MUST NOT be returned and the LIST response MUST
   include the \NoSelect attribute.  This means the server may have to
   buffer the LIST reply until it has successfully looked up the
   necessary STATUS information.

   If the server runs into unexpected problems while trying to look up
   the STATUS information, it MAY drop the corresponding STATUS reply.
   In such a situation, the LIST command would still return a tagged OK
   reply.

3.  Examples

   C: A01 LIST "" % RETURN (STATUS (MESSAGES UNSEEN))
   S: * LIST () "."  "INBOX"
   S: * STATUS "INBOX" (MESSAGES 17 UNSEEN 16)
   S: * LIST () "." "foo"
   S: * STATUS "foo" (MESSAGES 30 UNSEEN 29)
   S: * LIST (\NoSelect) "." "bar"
   S: A01 OK List completed.

   The "bar" mailbox isn't selectable, so it has no STATUS reply.

   C: A02 LIST (SUBSCRIBED RECURSIVEMATCH)"" % RETURN (STATUS
      (MESSAGES))
   S: * LIST (\Subscribed) "."  "INBOX"
   S: * STATUS "INBOX" (MESSAGES 17)
   S: * LIST () "." "foo" (CHILDINFO ("SUBSCRIBED"))
   S: A02 OK List completed.

   The LIST reply for "foo" is returned because it has matching
   children, but no STATUS reply is returned because "foo" itself
   doesn't match the selection criteria.










Melnikov & Sirainen          Standards Track                    [Page 3]

RFC 5819                         TITLE*                       March 2010


4.  Formal Syntax

   The following syntax specification uses the augmented Backus-Naur
   Form (BNF) as described in [ABNF].  Terms not defined here are taken
   from [RFC3501] and [LISTEXT].

   return-option =/ status-option

   status-option = "STATUS" SP "(" status-att *(SP status-att) ")"
                   ;; This ABNF production complies with
                   ;; <option-extension> syntax.

5.  Security Considerations

   This extension makes it a bit easier for clients to overload the
   server by requesting STATUS information for a large number of
   mailboxes.  However, as already noted in the introduction, existing
   clients already try to do that by generating a large number of STATUS
   commands for each mailbox in which they are interested.  While
   performing STATUS information retrieval for big lists of mailboxes, a
   server implementation needs to make sure that it can still serve
   other IMAP connections and yield execution to other connections, when
   necessary.

6.  IANA Considerations

   IMAP4 capabilities are registered by publishing a Standards Track or
   IESG-approved Experimental RFC.  The "IMAP 4 Capabilities" registry
   is available from the IANA webiste:

      http://www.iana.org

   This document defines the LIST-STATUS IMAP capability.  IANA has
   added it to the registry.

   IANA has also added the following new LIST-EXTENDED option to the
   IANA registry established by [LISTEXT]:

   To: iana@iana.org
   Subject: Registration of LIST-EXTENDED option STATUS

   LIST-EXTENDED option name: STATUS

   LIST-EXTENDED option type: RETURN

   LIST-EXTENDED option description: Causes the LIST command to return
   STATUS responses in addition to LIST responses.




Melnikov & Sirainen          Standards Track                    [Page 4]

RFC 5819                         TITLE*                       March 2010


   Published specification: RFC 5819

   Security considerations: RFC 5819

   Intended usage: COMMON

   Person and email address to contact for further information:
   Alexey Melnikov <Alexey.Melnikov@isode.com>

   Owner/Change controller: iesg@ietf.org

7.  Acknowledgements

   Thanks to Philip Van Hoof who pointed out that STATUS and LIST
   commands should be combined in order to optimize traffic and number
   of round trips.

8.  Normative References

   [ABNF]     Crocker, D., Ed., and P. Overell, "Augmented BNF for
              Syntax Specifications: ABNF", STD 68, RFC 5234, January
              2008.

   [ACL]      Melnikov, A., "IMAP4 Access Control List (ACL) Extension",
              RFC 4314, December 2005.

   [Kwds]     Bradner, S., "Key words for use in RFCs to Indicate
              Requirement Levels", BCP 14, RFC 2119, March 1997.

   [LISTEXT]  Leiba, B. and A. Melnikov, "Internet Message Access
              Protocol version 4 - LIST Command Extensions", RFC 5258,
              June 2008.

   [RFC3501]  Crispin, M., "INTERNET MESSAGE ACCESS PROTOCOL - VERSION
              4rev1", RFC 3501, March 2003.
















Melnikov & Sirainen          Standards Track                    [Page 5]

RFC 5819                         TITLE*                       March 2010


Authors' Addresses

   Alexey Melnikov
   Isode Limited
   5 Castle Business Village
   36 Station Road
   Hampton, Middlesex  TW12 2BX
   UK

   EMail: Alexey.Melnikov@isode.com
   URI:   http://www.melnikov.ca/


   Timo Sirainen

   EMail: tss@iki.fi



































Melnikov & Sirainen          Standards Track                    [Page 6]