Fix last commit.
[gnus] / lisp / imap.el
1 ;;; imap.el --- imap library
2 ;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003
3 ;;        Free Software Foundation, Inc.
4
5 ;; Author: Simon Josefsson <jas@pdc.kth.se>
6 ;; Keywords: mail
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Commentary:
26
27 ;; imap.el is a elisp library providing an interface for talking to
28 ;; IMAP servers.
29 ;;
30 ;; imap.el is roughly divided in two parts, one that parses IMAP
31 ;; responses from the server and storing data into buffer-local
32 ;; variables, and one for utility functions which send commands to
33 ;; server, waits for an answer, and return information.  The latter
34 ;; part is layered on top of the previous.
35 ;;
36 ;; The imap.el API consist of the following functions, other functions
37 ;; in this file should not be called directly and the result of doing
38 ;; so are at best undefined.
39 ;;
40 ;; Global commands:
41 ;;
42 ;; imap-open,       imap-opened,    imap-authenticate, imap-close,
43 ;; imap-capability, imap-namespace, imap-error-text
44 ;;
45 ;; Mailbox commands:
46 ;;
47 ;; imap-mailbox-get,       imap-mailbox-map,         imap-current-mailbox,
48 ;; imap-current-mailbox-p, imap-search,              imap-mailbox-select,
49 ;; imap-mailbox-examine,   imap-mailbox-unselect,    imap-mailbox-expunge
50 ;; imap-mailbox-close,     imap-mailbox-create,      imap-mailbox-delete
51 ;; imap-mailbox-rename,    imap-mailbox-lsub,        imap-mailbox-list
52 ;; imap-mailbox-subscribe, imap-mailbox-unsubscribe, imap-mailbox-status
53 ;; imap-mailbox-acl-get,   imap-mailbox-acl-set,     imap-mailbox-acl-delete
54 ;;
55 ;; Message commands:
56 ;;
57 ;; imap-fetch-asynch,                 imap-fetch,
58 ;; imap-current-message,              imap-list-to-message-set,
59 ;; imap-message-get,                  imap-message-map
60 ;; imap-message-envelope-date,        imap-message-envelope-subject,
61 ;; imap-message-envelope-from,        imap-message-envelope-sender,
62 ;; imap-message-envelope-reply-to,    imap-message-envelope-to,
63 ;; imap-message-envelope-cc,          imap-message-envelope-bcc
64 ;; imap-message-envelope-in-reply-to, imap-message-envelope-message-id
65 ;; imap-message-body,                 imap-message-flag-permanent-p
66 ;; imap-message-flags-set,            imap-message-flags-del
67 ;; imap-message-flags-add,            imap-message-copyuid
68 ;; imap-message-copy,                 imap-message-appenduid
69 ;; imap-message-append,               imap-envelope-from
70 ;; imap-body-lines
71 ;;
72 ;; It is my hope that theese commands should be pretty self
73 ;; explanatory for someone that know IMAP.  All functions have
74 ;; additional documentation on how to invoke them.
75 ;;
76 ;; imap.el support RFC1730/2060 (IMAP4/IMAP4rev1), implemented IMAP
77 ;; extensions are RFC2195 (CRAM-MD5), RFC2086 (ACL), RFC2342
78 ;; (NAMESPACE), RFC2359 (UIDPLUS), the IMAP-part of RFC2595 (STARTTLS,
79 ;; LOGINDISABLED) (with use of external library starttls.el and
80 ;; program starttls) and the GSSAPI / kerberos V4 sections of RFC1731
81 ;; (with use of external program `imtest').  It also take advantage
82 ;; the UNSELECT extension in Cyrus IMAPD.
83 ;;
84 ;; Without the work of John McClary Prevost and Jim Radford this library
85 ;; would not have seen the light of day.  Many thanks.
86 ;;
87 ;; This is a transcript of short interactive session for demonstration
88 ;; purposes.
89 ;;
90 ;; (imap-open "my.mail.server")
91 ;; => " *imap* my.mail.server:0"
92 ;;
93 ;; The rest are invoked with current buffer as the buffer returned by
94 ;; `imap-open'.  It is possible to do all without this, but it would
95 ;; look ugly here since `buffer' is always the last argument for all
96 ;; imap.el API functions.
97 ;;
98 ;; (imap-authenticate "myusername" "mypassword")
99 ;; => auth
100 ;;
101 ;; (imap-mailbox-lsub "*")
102 ;; => ("INBOX.sentmail" "INBOX.private" "INBOX.draft" "INBOX.spam")
103 ;;
104 ;; (imap-mailbox-list "INBOX.n%")
105 ;; => ("INBOX.namedroppers" "INBOX.nnimap" "INBOX.ntbugtraq")
106 ;;
107 ;; (imap-mailbox-select "INBOX.nnimap")
108 ;; => "INBOX.nnimap"
109 ;;
110 ;; (imap-mailbox-get 'exists)
111 ;; => 166
112 ;;
113 ;; (imap-mailbox-get 'uidvalidity)
114 ;; => "908992622"
115 ;;
116 ;; (imap-search "FLAGGED SINCE 18-DEC-98")
117 ;; => (235 236)
118 ;;
119 ;; (imap-fetch 235 "RFC822.PEEK" 'RFC822)
120 ;; => "X-Sieve: cmu-sieve 1.3^M\nX-Username: <jas@pdc.kth.se>^M\r...."
121 ;;
122 ;; Todo:
123 ;;
124 ;; o Parse UIDs as strings? We need to overcome the 28 bit limit somehow.
125 ;; o Don't use `read' at all (important places already fixed)
126 ;; o Accept list of articles instead of message set string in most
127 ;;   imap-message-* functions.
128 ;;
129 ;; Revision history:
130 ;;
131 ;;  - 19991218 added starttls/digest-md5 patch,
132 ;;             by Daiki Ueno <ueno@ueda.info.waseda.ac.jp>
133 ;;             NB! you need SLIM for starttls.el and digest-md5.el
134 ;;  - 19991023 commited to pgnus
135 ;;
136
137 ;;; Code:
138
139 (eval-when-compile (require 'cl))
140 (eval-and-compile
141   (autoload 'base64-decode-string "base64")
142   (autoload 'base64-encode-string "base64")
143   (autoload 'starttls-open-stream "starttls")
144   (autoload 'starttls-negotiate "starttls")
145   (autoload 'digest-md5-parse-digest-challenge "digest-md5")
146   (autoload 'digest-md5-digest-response "digest-md5")
147   (autoload 'digest-md5-digest-uri "digest-md5")
148   (autoload 'digest-md5-challenge "digest-md5")
149   (autoload 'rfc2104-hash "rfc2104")
150   (autoload 'md5 "md5")
151   (autoload 'utf7-encode "utf7")
152   (autoload 'utf7-decode "utf7")
153   (autoload 'format-spec "format-spec")
154   (autoload 'format-spec-make "format-spec")
155   (autoload 'open-tls-stream "tls")
156   ;; Avoid use gnus-point-at-eol so we're independent of Gnus.  These
157   ;; days we have point-at-eol anyhow.
158   (if (fboundp 'point-at-eol)
159       (defalias 'imap-point-at-eol 'point-at-eol)
160     (defun imap-point-at-eol ()
161       (save-excursion
162         (end-of-line)
163         (point)))))
164
165 ;; User variables.
166
167 (defgroup imap nil
168   "Low-level IMAP issues."
169   :version "21.1"
170   :group 'mail)
171
172 (defcustom imap-kerberos4-program '("imtest -m kerberos_v4 -u %l -p %p %s"
173                                     "imtest -kp %s %p")
174   "List of strings containing commands for Kerberos 4 authentication.
175 %s is replaced with server hostname, %p with port to connect to, and
176 %l with the value of `imap-default-user'.  The program should accept
177 IMAP commands on stdin and return responses to stdout.  Each entry in
178 the list is tried until a successful connection is made."
179   :group 'imap
180   :type '(repeat string))
181
182 (defcustom imap-gssapi-program (list
183                                 (concat "gsasl --client --connect %s:%p "
184                                         "--imap --application-data "
185                                         "--mechanism GSSAPI "
186                                         "--authentication-id %l")
187                                 "imtest -m gssapi -u %l -p %p %s")
188   "List of strings containing commands for GSSAPI (krb5) authentication.
189 %s is replaced with server hostname, %p with port to connect to, and
190 %l with the value of `imap-default-user'.  The program should accept
191 IMAP commands on stdin and return responses to stdout.  Each entry in
192 the list is tried until a successful connection is made."
193   :group 'imap
194   :type '(repeat string))
195
196 (defcustom imap-ssl-program '("openssl s_client -quiet -ssl3 -connect %s:%p"
197                               "openssl s_client -quiet -ssl2 -connect %s:%p"
198                               "s_client -quiet -ssl3 -connect %s:%p"
199                               "s_client -quiet -ssl2 -connect %s:%p")
200   "A string, or list of strings, containing commands for SSL connections.
201 Within a string, %s is replaced with the server address and %p with
202 port number on server.  The program should accept IMAP commands on
203 stdin and return responses to stdout.  Each entry in the list is tried
204 until a successful connection is made."
205   :group 'imap
206   :type '(choice string
207                  (repeat string)))
208
209 (defcustom imap-shell-program '("ssh %s imapd"
210                                 "rsh %s imapd"
211                                 "ssh %g ssh %s imapd"
212                                 "rsh %g rsh %s imapd")
213   "A list of strings, containing commands for IMAP connection.
214 Within a string, %s is replaced with the server address, %p with port
215 number on server, %g with `imap-shell-host', and %l with
216 `imap-default-user'.  The program should read IMAP commands from stdin
217 and write IMAP response to stdout. Each entry in the list is tried
218 until a successful connection is made."
219   :group 'imap
220   :type '(repeat string))
221
222 (defcustom imap-process-connection-type nil
223   "*Value for `process-connection-type' to use for Kerberos4 and GSSAPI."
224   :group 'imap
225   :type 'boolean)
226
227 (defcustom imap-use-utf7 t
228   "If non-nil, do utf7 encoding/decoding of mailbox names.
229 Since the UTF7 decoding currently only decodes into ISO-8859-1
230 characters, you may disable this decoding if you need to access UTF7
231 encoded mailboxes which doesn't translate into ISO-8859-1."
232   :group 'imap
233   :type 'boolean)
234
235 (defcustom imap-log nil
236   "If non-nil, a imap session trace is placed in *imap-log* buffer."
237   :group 'imap
238   :type 'boolean)
239
240 (defcustom imap-debug nil
241   "If non-nil, random debug spews are placed in *imap-debug* buffer."
242   :group 'imap
243   :type 'boolean)
244
245 (defcustom imap-shell-host "gateway"
246   "Hostname of rlogin proxy."
247   :group 'imap
248   :type 'string)
249
250 (defcustom imap-default-user (user-login-name)
251   "Default username to use."
252   :group 'imap
253   :type 'string)
254
255 (defcustom imap-read-timeout (if (string-match
256                                   "windows-nt\\|os/2\\|emx\\|cygwin"
257                                   (symbol-name system-type))
258                                  1.0
259                                0.1)
260   "*How long to wait between checking for the end of output.
261 Shorter values mean quicker response, but is more CPU intensive."
262   :type 'number
263   :group 'imap)
264
265 ;; Various variables.
266
267 (defvar imap-fetch-data-hook nil
268   "Hooks called after receiving each FETCH response.")
269
270 (defvar imap-streams '(gssapi kerberos4 starttls tls ssl network shell)
271   "Priority of streams to consider when opening connection to server.")
272
273 (defvar imap-stream-alist
274   '((gssapi    imap-gssapi-stream-p    imap-gssapi-open)
275     (kerberos4 imap-kerberos4-stream-p imap-kerberos4-open)
276     (tls       imap-tls-p              imap-tls-open)
277     (ssl       imap-ssl-p              imap-ssl-open)
278     (network   imap-network-p          imap-network-open)
279     (shell     imap-shell-p            imap-shell-open)
280     (starttls  imap-starttls-p         imap-starttls-open))
281   "Definition of network streams.
282
283 \(NAME CHECK OPEN)
284
285 NAME names the stream, CHECK is a function returning non-nil if the
286 server support the stream and OPEN is a function for opening the
287 stream.")
288
289 (defvar imap-authenticators '(gssapi
290                               kerberos4
291                               digest-md5
292                               cram-md5
293                               login
294                               anonymous)
295   "Priority of authenticators to consider when authenticating to server.")
296
297 (defvar imap-authenticator-alist
298   '((gssapi     imap-gssapi-auth-p    imap-gssapi-auth)
299     (kerberos4  imap-kerberos4-auth-p imap-kerberos4-auth)
300     (cram-md5   imap-cram-md5-p       imap-cram-md5-auth)
301     (login      imap-login-p          imap-login-auth)
302     (anonymous  imap-anonymous-p      imap-anonymous-auth)
303     (digest-md5 imap-digest-md5-p     imap-digest-md5-auth))
304   "Definition of authenticators.
305
306 \(NAME CHECK AUTHENTICATE)
307
308 NAME names the authenticator.  CHECK is a function returning non-nil if
309 the server support the authenticator and AUTHENTICATE is a function
310 for doing the actual authentication.")
311
312 (defvar imap-error nil
313   "Error codes from the last command.")
314
315 ;; Internal constants.  Change theese and die.
316
317 (defconst imap-default-port 143)
318 (defconst imap-default-ssl-port 993)
319 (defconst imap-default-tls-port 993)
320 (defconst imap-default-stream 'network)
321 (defconst imap-coding-system-for-read 'binary)
322 (defconst imap-coding-system-for-write 'binary)
323 (defconst imap-local-variables '(imap-server
324                                  imap-port
325                                  imap-client-eol
326                                  imap-server-eol
327                                  imap-auth
328                                  imap-stream
329                                  imap-username
330                                  imap-password
331                                  imap-current-mailbox
332                                  imap-current-target-mailbox
333                                  imap-message-data
334                                  imap-capability
335                                  imap-namespace
336                                  imap-state
337                                  imap-reached-tag
338                                  imap-failed-tags
339                                  imap-tag
340                                  imap-process
341                                  imap-calculate-literal-size-first
342                                  imap-mailbox-data))
343 (defconst imap-log-buffer "*imap-log*")
344 (defconst imap-debug-buffer "*imap-debug*")
345
346 ;; Internal variables.
347
348 (defvar imap-stream nil)
349 (defvar imap-auth nil)
350 (defvar imap-server nil)
351 (defvar imap-port nil)
352 (defvar imap-username nil)
353 (defvar imap-password nil)
354 (defvar imap-calculate-literal-size-first nil)
355 (defvar imap-state 'closed
356   "IMAP state.
357 Valid states are `closed', `initial', `nonauth', `auth', `selected'
358 and `examine'.")
359
360 (defvar imap-server-eol "\r\n"
361   "The EOL string sent from the server.")
362
363 (defvar imap-client-eol "\r\n"
364   "The EOL string we send to the server.")
365
366 (defvar imap-current-mailbox nil
367   "Current mailbox name.")
368
369 (defvar imap-current-target-mailbox nil
370   "Current target mailbox for COPY and APPEND commands.")
371
372 (defvar imap-mailbox-data nil
373   "Obarray with mailbox data.")
374
375 (defvar imap-mailbox-prime 997
376   "Length of imap-mailbox-data.")
377
378 (defvar imap-current-message nil
379   "Current message number.")
380
381 (defvar imap-message-data nil
382   "Obarray with message data.")
383
384 (defvar imap-message-prime 997
385   "Length of imap-message-data.")
386
387 (defvar imap-capability nil
388   "Capability for server.")
389
390 (defvar imap-namespace nil
391   "Namespace for current server.")
392
393 (defvar imap-reached-tag 0
394   "Lower limit on command tags that have been parsed.")
395
396 (defvar imap-failed-tags nil
397   "Alist of tags that failed.
398 Each element is a list with four elements; tag (a integer), response
399 state (a symbol, `OK', `NO' or `BAD'), response code (a string), and
400 human readable response text (a string).")
401
402 (defvar imap-tag 0
403   "Command tag number.")
404
405 (defvar imap-process nil
406   "Process.")
407
408 (defvar imap-continuation nil
409   "Non-nil indicates that the server emitted a continuation request.
410 The actual value is really the text on the continuation line.")
411
412 (defvar imap-callbacks nil
413   "List of response tags and callbacks, on the form `(number . function)'.
414 The function should take two arguments, the first the IMAP tag and the
415 second the status (OK, NO, BAD etc) of the command.")
416
417 \f
418 ;; Utility functions:
419
420 (defun imap-remassoc (key alist)
421   "Delete by side effect any elements of LIST whose car is `equal' to KEY.
422 The modified LIST is returned.  If the first member
423 of LIST has a car that is `equal' to KEY, there is no way to remove it
424 by side effect; therefore, write `(setq foo (remassoc key foo))' to be
425 sure of changing the value of `foo'."
426   (when alist
427     (if (equal key (caar alist))
428         (cdr alist)
429       (setcdr alist (imap-remassoc key (cdr alist)))
430       alist)))
431
432 (defsubst imap-disable-multibyte ()
433   "Enable multibyte in the current buffer."
434   (when (fboundp 'set-buffer-multibyte)
435     (set-buffer-multibyte nil)))
436
437 (defsubst imap-utf7-encode (string)
438   (if imap-use-utf7
439       (and string
440            (condition-case ()
441                (utf7-encode string t)
442              (error (message
443                      "imap: Could not UTF7 encode `%s', using it unencoded..."
444                      string)
445                     string)))
446     string))
447
448 (defsubst imap-utf7-decode (string)
449   (if imap-use-utf7
450       (and string
451            (condition-case ()
452                (utf7-decode string t)
453              (error (message
454                      "imap: Could not UTF7 decode `%s', using it undecoded..."
455                      string)
456                     string)))
457     string))
458
459 (defsubst imap-ok-p (status)
460   (if (eq status 'OK)
461       t
462     (setq imap-error status)
463     nil))
464
465 (defun imap-error-text (&optional buffer)
466   (with-current-buffer (or buffer (current-buffer))
467     (nth 3 (car imap-failed-tags))))
468
469 \f
470 ;; Server functions; stream stuff:
471
472 (defun imap-kerberos4-stream-p (buffer)
473   (imap-capability 'AUTH=KERBEROS_V4 buffer))
474
475 (defun imap-kerberos4-open (name buffer server port)
476   (let ((cmds imap-kerberos4-program)
477         cmd done)
478     (while (and (not done) (setq cmd (pop cmds)))
479       (message "Opening Kerberos 4 IMAP connection with `%s'..." cmd)
480       (erase-buffer)
481       (let* ((port (or port imap-default-port))
482              (coding-system-for-read imap-coding-system-for-read)
483              (coding-system-for-write imap-coding-system-for-write)
484              (process-connection-type imap-process-connection-type)
485              (process (start-process
486                        name buffer shell-file-name shell-command-switch
487                        (format-spec
488                         cmd
489                         (format-spec-make
490                          ?s server
491                          ?p (number-to-string port)
492                          ?l imap-default-user))))
493              response)
494         (when process
495           (with-current-buffer buffer
496             (setq imap-client-eol "\n"
497                   imap-calculate-literal-size-first t)
498             (while (and (memq (process-status process) '(open run))
499                         (set-buffer buffer) ;; XXX "blue moon" nntp.el bug
500                         (goto-char (point-min))
501                         ;; cyrus 1.6.x (13? < x <= 22) queries capabilities
502                         (or (while (looking-at "^C:")
503                               (forward-line))
504                             t)
505                         ;; cyrus 1.6 imtest print "S: " before server greeting
506                         (or (not (looking-at "S: "))
507                             (forward-char 3)
508                             t)
509                         (not (and (imap-parse-greeting)
510                                   ;; success in imtest < 1.6:
511                                   (or (re-search-forward
512                                        "^__\\(.*\\)__\n" nil t)
513                                       ;; success in imtest 1.6:
514                                       (re-search-forward
515                                        "^\\(Authenticat.*\\)" nil t))
516                                   (setq response (match-string 1)))))
517               (accept-process-output process 1)
518               (sit-for 1))
519             (and imap-log
520                  (with-current-buffer (get-buffer-create imap-log-buffer)
521                    (imap-disable-multibyte)
522                    (buffer-disable-undo)
523                    (goto-char (point-max))
524                    (insert-buffer-substring buffer)))
525             (erase-buffer)
526             (message "Opening Kerberos 4 IMAP connection with `%s'...%s" cmd
527                      (if response (concat "done, " response) "failed"))
528             (if (and response (let ((case-fold-search nil))
529                                 (not (string-match "failed" response))))
530                 (setq done process)
531               (if (memq (process-status process) '(open run))
532                   (imap-send-command "LOGOUT"))
533               (delete-process process)
534               nil)))))
535     done))
536
537 (defun imap-gssapi-stream-p (buffer)
538   (imap-capability 'AUTH=GSSAPI buffer))
539
540 (defun imap-gssapi-open (name buffer server port)
541   (let ((cmds imap-gssapi-program)
542         cmd done)
543     (while (and (not done) (setq cmd (pop cmds)))
544       (message "Opening GSSAPI IMAP connection with `%s'..." cmd)
545       (erase-buffer)
546       (let* ((port (or port imap-default-port))
547              (coding-system-for-read imap-coding-system-for-read)
548              (coding-system-for-write imap-coding-system-for-write)
549              (process-connection-type imap-process-connection-type)
550              (process (start-process
551                        name buffer shell-file-name shell-command-switch
552                        (format-spec
553                         cmd
554                         (format-spec-make
555                          ?s server
556                          ?p (number-to-string port)
557                          ?l imap-default-user))))
558              response)
559         (when process
560           (with-current-buffer buffer
561             (setq imap-client-eol "\n"
562                   imap-calculate-literal-size-first t)
563             (while (and (memq (process-status process) '(open run))
564                         (set-buffer buffer) ;; XXX "blue moon" nntp.el bug
565                         (goto-char (point-min))
566                         ;; cyrus 1.6.x (13? < x <= 22) queries capabilities
567                         (or (while (looking-at "^C:")
568                               (forward-line))
569                             t)
570                         ;; cyrus 1.6 imtest print "S: " before server greeting
571                         (or (not (looking-at "S: "))
572                             (forward-char 3)
573                             t)
574                         (not (and (imap-parse-greeting)
575                                   ;; success in imtest 1.6:
576                                   (re-search-forward
577                                    (concat "^\\(\\(Authenticat.*\\)\\|\\("
578                                            "Client authentication "
579                                            "finished.*\\)\\)")
580                                    nil t)
581                                   (setq response (match-string 1)))))
582               (accept-process-output process 1)
583               (sit-for 1))
584             (and imap-log
585                  (with-current-buffer (get-buffer-create imap-log-buffer)
586                    (imap-disable-multibyte)
587                    (buffer-disable-undo)
588                    (goto-char (point-max))
589                    (insert-buffer-substring buffer)))
590             (erase-buffer)
591             (message "GSSAPI IMAP connection: %s" (or response "failed"))
592             (if (and response (let ((case-fold-search nil))
593                                 (not (string-match "failed" response))))
594                 (setq done process)
595               (if (memq (process-status process) '(open run))
596                   (imap-send-command "LOGOUT"))
597               (delete-process process)
598               nil)))))
599     done))
600
601 (defun imap-ssl-p (buffer)
602   nil)
603
604 (defun imap-ssl-open (name buffer server port)
605   "Open a SSL connection to server."
606   (let ((cmds (if (listp imap-ssl-program) imap-ssl-program
607                 (list imap-ssl-program)))
608         cmd done)
609     (while (and (not done) (setq cmd (pop cmds)))
610       (message "imap: Opening SSL connection with `%s'..." cmd)
611       (erase-buffer)
612       (let* ((port (or port imap-default-ssl-port))
613              (coding-system-for-read imap-coding-system-for-read)
614              (coding-system-for-write imap-coding-system-for-write)
615              (process-connection-type nil)
616              process)
617         (when (progn
618                 (setq process (start-process
619                                name buffer shell-file-name
620                                shell-command-switch
621                                (format-spec cmd
622                                             (format-spec-make
623                                              ?s server
624                                              ?p (number-to-string port)))))
625                 (process-kill-without-query process)
626                 process)
627           (with-current-buffer buffer
628             (goto-char (point-min))
629             (while (and (memq (process-status process) '(open run))
630                         (set-buffer buffer) ;; XXX "blue moon" nntp.el bug
631                         (goto-char (point-max))
632                         (forward-line -1)
633                         (not (imap-parse-greeting)))
634               (accept-process-output process 1)
635               (sit-for 1))
636             (and imap-log
637                  (with-current-buffer (get-buffer-create imap-log-buffer)
638                    (imap-disable-multibyte)
639                    (buffer-disable-undo)
640                    (goto-char (point-max))
641                    (insert-buffer-substring buffer)))
642             (erase-buffer)
643             (when (memq (process-status process) '(open run))
644               (setq done process))))))
645     (if done
646         (progn
647           (message "imap: Opening SSL connection with `%s'...done" cmd)
648           done)
649       (message "imap: Opening SSL connection with `%s'...failed" cmd)
650       nil)))
651
652 (defun imap-tls-p (buffer)
653   nil)
654
655 (defun imap-tls-open (name buffer server port)
656   (let* ((port (or port imap-default-tls-port))
657          (coding-system-for-read imap-coding-system-for-read)
658          (coding-system-for-write imap-coding-system-for-write)
659          (process (open-tls-stream name buffer server port)))
660     (when process
661       (while (and (memq (process-status process) '(open run))
662                   (set-buffer buffer) ;; XXX "blue moon" nntp.el bug
663                   (goto-char (point-max))
664                   (forward-line -1)
665                   (not (imap-parse-greeting)))
666         (accept-process-output process 1)
667         (sit-for 1))
668       (and imap-log
669            (with-current-buffer (get-buffer-create imap-log-buffer)
670              (imap-disable-multibyte)
671              (buffer-disable-undo)
672              (goto-char (point-max))
673              (insert-buffer-substring buffer)))
674       (when (memq (process-status process) '(open run))
675         process))))
676
677 (defun imap-network-p (buffer)
678   t)
679
680 (defun imap-network-open (name buffer server port)
681   (let* ((port (or port imap-default-port))
682          (coding-system-for-read imap-coding-system-for-read)
683          (coding-system-for-write imap-coding-system-for-write)
684          (process (open-network-stream name buffer server port)))
685     (when process
686       (while (and (memq (process-status process) '(open run))
687                   (set-buffer buffer) ;; XXX "blue moon" nntp.el bug
688                   (goto-char (point-min))
689                   (not (imap-parse-greeting)))
690         (accept-process-output process 1)
691         (sit-for 1))
692       (and imap-log
693            (with-current-buffer (get-buffer-create imap-log-buffer)
694              (imap-disable-multibyte)
695              (buffer-disable-undo)
696              (goto-char (point-max))
697              (insert-buffer-substring buffer)))
698       (when (memq (process-status process) '(open run))
699         process))))
700
701 (defun imap-shell-p (buffer)
702   nil)
703
704 (defun imap-shell-open (name buffer server port)
705   (let ((cmds (if (listp imap-shell-program) imap-shell-program
706                 (list imap-shell-program)))
707         cmd done)
708     (while (and (not done) (setq cmd (pop cmds)))
709       (message "imap: Opening IMAP connection with `%s'..." cmd)
710       (setq imap-client-eol "\n")
711       (let* ((port (or port imap-default-port))
712              (coding-system-for-read imap-coding-system-for-read)
713              (coding-system-for-write imap-coding-system-for-write)
714              (process (start-process
715                        name buffer shell-file-name shell-command-switch
716                        (format-spec
717                         cmd
718                         (format-spec-make
719                          ?s server
720                          ?g imap-shell-host
721                          ?p (number-to-string port)
722                          ?l imap-default-user)))))
723         (when process
724           (while (and (memq (process-status process) '(open run))
725                       (set-buffer buffer) ;; XXX "blue moon" nntp.el bug
726                       (goto-char (point-max))
727                       (forward-line -1)
728                       (not (imap-parse-greeting)))
729             (accept-process-output process 1)
730             (sit-for 1))
731           (and imap-log
732                (with-current-buffer (get-buffer-create imap-log-buffer)
733                  (imap-disable-multibyte)
734                  (buffer-disable-undo)
735                  (goto-char (point-max))
736                  (insert-buffer-substring buffer)))
737           (erase-buffer)
738           (when (memq (process-status process) '(open run))
739             (setq done process)))))
740     (if done
741         (progn
742           (message "imap: Opening IMAP connection with `%s'...done" cmd)
743           done)
744       (message "imap: Opening IMAP connection with `%s'...failed" cmd)
745       nil)))
746
747 (defun imap-starttls-p (buffer)
748   (imap-capability 'STARTTLS buffer))
749
750 (defun imap-starttls-open (name buffer server port)
751   (let* ((port (or port imap-default-port))
752          (coding-system-for-read imap-coding-system-for-read)
753          (coding-system-for-write imap-coding-system-for-write)
754          (process (starttls-open-stream name buffer server port))
755          done)
756     (message "imap: Connecting with STARTTLS...")
757     (when process
758       (while (and (memq (process-status process) '(open run))
759                   (set-buffer buffer) ;; XXX "blue moon" nntp.el bug
760                   (goto-char (point-max))
761                   (forward-line -1)
762                   (not (imap-parse-greeting)))
763         (accept-process-output process 1)
764         (sit-for 1))
765       (imap-send-command "STARTTLS")
766       (while (and (memq (process-status process) '(open run))
767                   (set-buffer buffer) ;; XXX "blue moon" nntp.el bug
768                   (goto-char (point-max))
769                   (forward-line -1)
770                   (not (re-search-forward "[0-9]+ OK.*\r?\n" nil t)))
771         (accept-process-output process 1)
772         (sit-for 1))
773       (and imap-log
774            (with-current-buffer (get-buffer-create imap-log-buffer)
775              (buffer-disable-undo)
776              (goto-char (point-max))
777              (insert-buffer-substring buffer)))
778       (message "imap: STARTTLS info: %s" (starttls-negotiate process))
779       (when (memq (process-status process) '(open run))
780         (setq done process)))
781     (message "imap: Connecting with STARTTLS...%s" (if done "done" "failed"))
782     done))
783
784 ;; Server functions; authenticator stuff:
785
786 (defun imap-interactive-login (buffer loginfunc)
787   "Login to server in BUFFER.
788 LOGINFUNC is passed a username and a password, it should return t if
789 it where successful authenticating itself to the server, nil otherwise.
790 Returns t if login was successful, nil otherwise."
791   (with-current-buffer buffer
792     (make-local-variable 'imap-username)
793     (make-local-variable 'imap-password)
794     (let (user passwd ret)
795       ;;      (condition-case ()
796       (while (or (not user) (not passwd))
797         (setq user (or imap-username
798                        (read-from-minibuffer
799                         (concat "IMAP username for " imap-server
800                                 " (using stream `" (symbol-name imap-stream)
801                                 "'): ")
802                         (or user imap-default-user))))
803         (setq passwd (or imap-password
804                          (read-passwd
805                           (concat "IMAP password for " user "@"
806                                   imap-server " (using authenticator `"
807                                   (symbol-name imap-auth) "'): "))))
808         (when (and user passwd)
809           (if (funcall loginfunc user passwd)
810               (progn
811                 (setq ret t
812                       imap-username user)
813                 (if (and (not imap-password)
814                          (y-or-n-p "Store password for this session? "))
815                     (setq imap-password passwd)))
816             (message "Login failed...")
817             (setq passwd nil)
818             (sit-for 1))))
819       ;;        (quit (with-current-buffer buffer
820       ;;                (setq user nil
821       ;;                      passwd nil)))
822       ;;        (error (with-current-buffer buffer
823       ;;                 (setq user nil
824       ;;                       passwd nil))))
825       ret)))
826
827 (defun imap-gssapi-auth-p (buffer)
828   (and (imap-capability 'AUTH=GSSAPI buffer)
829        (eq imap-stream 'gssapi)))
830
831 (defun imap-gssapi-auth (buffer)
832   (message "imap: Authenticating using GSSAPI...%s"
833            (if (eq imap-stream 'gssapi) "done" "failed"))
834   (eq imap-stream 'gssapi))
835
836 (defun imap-kerberos4-auth-p (buffer)
837   (and (imap-capability 'AUTH=KERBEROS_V4 buffer)
838        (eq imap-stream 'kerberos4)))
839
840 (defun imap-kerberos4-auth (buffer)
841   (message "imap: Authenticating using Kerberos 4...%s"
842            (if (eq imap-stream 'kerberos4) "done" "failed"))
843   (eq imap-stream 'kerberos4))
844
845 (defun imap-cram-md5-p (buffer)
846   (imap-capability 'AUTH=CRAM-MD5 buffer))
847
848 (defun imap-cram-md5-auth (buffer)
849   "Login to server using the AUTH CRAM-MD5 method."
850   (message "imap: Authenticating using CRAM-MD5...")
851   (let ((done (imap-interactive-login
852                buffer
853                (lambda (user passwd)
854                  (imap-ok-p
855                   (imap-send-command-wait
856                    (list
857                     "AUTHENTICATE CRAM-MD5"
858                     (lambda (challenge)
859                       (let* ((decoded (base64-decode-string challenge))
860                              (hash (rfc2104-hash 'md5 64 16 passwd decoded))
861                              (response (concat user " " hash))
862                              (encoded (base64-encode-string response)))
863                         encoded)))))))))
864     (if done
865         (message "imap: Authenticating using CRAM-MD5...done")
866       (message "imap: Authenticating using CRAM-MD5...failed"))))
867
868 (defun imap-login-p (buffer)
869   (and (not (imap-capability 'LOGINDISABLED buffer))
870        (not (imap-capability 'X-LOGIN-CMD-DISABLED buffer))))
871
872 (defun imap-login-auth (buffer)
873   "Login to server using the LOGIN command."
874   (message "imap: Plaintext authentication...")
875   (imap-interactive-login buffer
876                           (lambda (user passwd)
877                             (imap-ok-p (imap-send-command-wait
878                                         (concat "LOGIN \"" user "\" \""
879                                                 passwd "\""))))))
880
881 (defun imap-anonymous-p (buffer)
882   t)
883
884 (defun imap-anonymous-auth (buffer)
885   (message "imap: Logging in anonymously...")
886   (with-current-buffer buffer
887     (imap-ok-p (imap-send-command-wait
888                 (concat "LOGIN anonymous \"" (concat (user-login-name) "@"
889                                                      (system-name)) "\"")))))
890
891 (defun imap-digest-md5-p (buffer)
892   (and (imap-capability 'AUTH=DIGEST-MD5 buffer)
893        (condition-case ()
894            (require 'digest-md5)
895          (error nil))))
896
897 (defun imap-digest-md5-auth (buffer)
898   "Login to server using the AUTH DIGEST-MD5 method."
899   (message "imap: Authenticating using DIGEST-MD5...")
900   (imap-interactive-login
901    buffer
902    (lambda (user passwd)
903      (let ((tag
904             (imap-send-command
905              (list
906               "AUTHENTICATE DIGEST-MD5"
907               (lambda (challenge)
908                 (digest-md5-parse-digest-challenge
909                  (base64-decode-string challenge))
910                 (let* ((digest-uri
911                         (digest-md5-digest-uri
912                          "imap" (digest-md5-challenge 'realm)))
913                        (response
914                         (digest-md5-digest-response
915                          user passwd digest-uri)))
916                   (base64-encode-string response 'no-line-break))))
917              )))
918        (if (not (eq (imap-wait-for-tag tag) 'INCOMPLETE))
919            nil
920          (setq imap-continuation nil)
921          (imap-send-command-1 "")
922          (imap-ok-p (imap-wait-for-tag tag)))))))
923
924 ;; Server functions:
925
926 (defun imap-open-1 (buffer)
927   (with-current-buffer buffer
928     (erase-buffer)
929     (setq imap-current-mailbox nil
930           imap-current-message nil
931           imap-state 'initial
932           imap-process (condition-case ()
933                            (funcall (nth 2 (assq imap-stream
934                                                  imap-stream-alist))
935                                     "imap" buffer imap-server imap-port)
936                          ((error quit) nil)))
937     (when imap-process
938       (set-process-filter imap-process 'imap-arrival-filter)
939       (set-process-sentinel imap-process 'imap-sentinel)
940       (while (and (eq imap-state 'initial)
941                   (memq (process-status imap-process) '(open run)))
942         (message "Waiting for response from %s..." imap-server)
943         (accept-process-output imap-process 1))
944       (message "Waiting for response from %s...done" imap-server)
945       (and (memq (process-status imap-process) '(open run))
946            imap-process))))
947
948 (defun imap-open (server &optional port stream auth buffer)
949   "Open a IMAP connection to host SERVER at PORT returning a buffer.
950 If PORT is unspecified, a default value is used (143 except
951 for SSL which use 993).
952 STREAM indicates the stream to use, see `imap-streams' for available
953 streams.  If nil, it choices the best stream the server is capable of.
954 AUTH indicates authenticator to use, see `imap-authenticators' for
955 available authenticators.  If nil, it choices the best stream the
956 server is capable of.
957 BUFFER can be a buffer or a name of a buffer, which is created if
958 necessary.  If nil, the buffer name is generated."
959   (setq buffer (or buffer (format " *imap* %s:%d" server (or port 0))))
960   (with-current-buffer (get-buffer-create buffer)
961     (if (imap-opened buffer)
962         (imap-close buffer))
963     (mapcar 'make-local-variable imap-local-variables)
964     (imap-disable-multibyte)
965     (buffer-disable-undo)
966     (setq imap-server (or server imap-server))
967     (setq imap-port (or port imap-port))
968     (setq imap-auth (or auth imap-auth))
969     (setq imap-stream (or stream imap-stream))
970     (message "imap: Connecting to %s..." imap-server)
971     (if (null (let ((imap-stream (or imap-stream imap-default-stream)))
972                 (imap-open-1 buffer)))
973         (progn
974           (message "imap: Connecting to %s...failed" imap-server)
975           nil)
976       (when (null imap-stream)
977         ;; Need to choose stream.
978         (let ((streams imap-streams))
979           (while (setq stream (pop streams))
980             ;; OK to use this stream?
981             (when (funcall (nth 1 (assq stream imap-stream-alist)) buffer)
982               ;; Stream changed?
983               (if (not (eq imap-default-stream stream))
984                   (with-current-buffer (get-buffer-create
985                                         (generate-new-buffer-name " *temp*"))
986                     (mapcar 'make-local-variable imap-local-variables)
987                     (imap-disable-multibyte)
988                     (buffer-disable-undo)
989                     (setq imap-server (or server imap-server))
990                     (setq imap-port (or port imap-port))
991                     (setq imap-auth (or auth imap-auth))
992                     (message "imap: Reconnecting with stream `%s'..." stream)
993                     (if (null (let ((imap-stream stream))
994                                 (imap-open-1 (current-buffer))))
995                         (progn
996                           (kill-buffer (current-buffer))
997                           (message
998                            "imap: Reconnecting with stream `%s'...failed"
999                            stream))
1000                       ;; We're done, kill the first connection
1001                       (imap-close buffer)
1002                       (kill-buffer buffer)
1003                       (rename-buffer buffer)
1004                       (message "imap: Reconnecting with stream `%s'...done"
1005                                stream)
1006                       (setq imap-stream stream)
1007                       (setq imap-capability nil)
1008                       (setq streams nil)))
1009                 ;; We're done
1010                 (message "imap: Connecting to %s...done" imap-server)
1011                 (setq imap-stream stream)
1012                 (setq imap-capability nil)
1013                 (setq streams nil))))))
1014       (when (imap-opened buffer)
1015         (setq imap-mailbox-data (make-vector imap-mailbox-prime 0)))
1016       (when imap-stream
1017         buffer))))
1018
1019 (defun imap-opened (&optional buffer)
1020   "Return non-nil if connection to imap server in BUFFER is open.
1021 If BUFFER is nil then the current buffer is used."
1022   (and (setq buffer (get-buffer (or buffer (current-buffer))))
1023        (buffer-live-p buffer)
1024        (with-current-buffer buffer
1025          (and imap-process
1026               (memq (process-status imap-process) '(open run))))))
1027
1028 (defun imap-authenticate (&optional user passwd buffer)
1029   "Authenticate to server in BUFFER, using current buffer if nil.
1030 It uses the authenticator specified when opening the server.  If the
1031 authenticator requires username/passwords, they are queried from the
1032 user and optionally stored in the buffer.  If USER and/or PASSWD is
1033 specified, the user will not be questioned and the username and/or
1034 password is remembered in the buffer."
1035   (with-current-buffer (or buffer (current-buffer))
1036     (if (not (eq imap-state 'nonauth))
1037         (or (eq imap-state 'auth)
1038             (eq imap-state 'select)
1039             (eq imap-state 'examine))
1040       (make-local-variable 'imap-username)
1041       (make-local-variable 'imap-password)
1042       (if user (setq imap-username user))
1043       (if passwd (setq imap-password passwd))
1044       (if imap-auth
1045           (and (funcall (nth 2 (assq imap-auth
1046                                      imap-authenticator-alist)) buffer)
1047                (setq imap-state 'auth))
1048         ;; Choose authenticator.
1049         (let ((auths imap-authenticators)
1050               auth)
1051           (while (setq auth (pop auths))
1052             ;; OK to use authenticator?
1053             (when (funcall (nth 1 (assq auth imap-authenticator-alist)) buffer)
1054               (message "imap: Authenticating to `%s' using `%s'..."
1055                        imap-server auth)
1056               (setq imap-auth auth)
1057               (if (funcall (nth 2 (assq auth imap-authenticator-alist)) buffer)
1058                   (progn
1059                     (message "imap: Authenticating to `%s' using `%s'...done"
1060                              imap-server auth)
1061                     (setq auths nil))
1062                 (message "imap: Authenticating to `%s' using `%s'...failed"
1063                          imap-server auth)))))
1064         imap-state))))
1065
1066 (defun imap-close (&optional buffer)
1067   "Close connection to server in BUFFER.
1068 If BUFFER is nil, the current buffer is used."
1069   (with-current-buffer (or buffer (current-buffer))
1070     (when (imap-opened)
1071       (condition-case nil
1072           (imap-send-command-wait "LOGOUT")
1073         (quit nil)))
1074     (when (and imap-process
1075                (memq (process-status imap-process) '(open run)))
1076       (delete-process imap-process))
1077     (setq imap-current-mailbox nil
1078           imap-current-message nil
1079           imap-process nil)
1080     (erase-buffer)
1081     t))
1082
1083 (defun imap-capability (&optional identifier buffer)
1084   "Return a list of identifiers which server in BUFFER support.
1085 If IDENTIFIER, return non-nil if it's among the servers capabilities.
1086 If BUFFER is nil, the current buffer is assumed."
1087   (with-current-buffer (or buffer (current-buffer))
1088     (unless imap-capability
1089       (unless (imap-ok-p (imap-send-command-wait "CAPABILITY"))
1090         (setq imap-capability '(IMAP2))))
1091     (if identifier
1092         (memq (intern (upcase (symbol-name identifier))) imap-capability)
1093       imap-capability)))
1094
1095 (defun imap-namespace (&optional buffer)
1096   "Return a namespace hierarchy at server in BUFFER.
1097 If BUFFER is nil, the current buffer is assumed."
1098   (with-current-buffer (or buffer (current-buffer))
1099     (unless imap-namespace
1100       (when (imap-capability 'NAMESPACE)
1101         (imap-send-command-wait "NAMESPACE")))
1102     imap-namespace))
1103
1104 (defun imap-send-command-wait (command &optional buffer)
1105   (imap-wait-for-tag (imap-send-command command buffer) buffer))
1106
1107 \f
1108 ;; Mailbox functions:
1109
1110 (defun imap-mailbox-put (propname value &optional mailbox buffer)
1111   (with-current-buffer (or buffer (current-buffer))
1112     (if imap-mailbox-data
1113         (put (intern (or mailbox imap-current-mailbox) imap-mailbox-data)
1114              propname value)
1115       (error "Imap-mailbox-data is nil, prop %s value %s mailbox %s buffer %s"
1116              propname value mailbox (current-buffer)))
1117     t))
1118
1119 (defsubst imap-mailbox-get-1 (propname &optional mailbox)
1120   (get (intern-soft (or mailbox imap-current-mailbox) imap-mailbox-data)
1121        propname))
1122
1123 (defun imap-mailbox-get (propname &optional mailbox buffer)
1124   (let ((mailbox (imap-utf7-encode mailbox)))
1125     (with-current-buffer (or buffer (current-buffer))
1126       (imap-mailbox-get-1 propname (or mailbox imap-current-mailbox)))))
1127
1128 (defun imap-mailbox-map-1 (func &optional mailbox-decoder buffer)
1129   (with-current-buffer (or buffer (current-buffer))
1130     (let (result)
1131       (mapatoms
1132        (lambda (s)
1133          (push (funcall func (if mailbox-decoder
1134                                  (funcall mailbox-decoder (symbol-name s))
1135                                (symbol-name s))) result))
1136        imap-mailbox-data)
1137       result)))
1138
1139 (defun imap-mailbox-map (func &optional buffer)
1140   "Map a function across each mailbox in `imap-mailbox-data', returning a list.
1141 Function should take a mailbox name (a string) as
1142 the only argument."
1143   (imap-mailbox-map-1 func 'imap-utf7-decode buffer))
1144
1145 (defun imap-current-mailbox (&optional buffer)
1146   (with-current-buffer (or buffer (current-buffer))
1147     (imap-utf7-decode imap-current-mailbox)))
1148
1149 (defun imap-current-mailbox-p-1 (mailbox &optional examine)
1150   (and (string= mailbox imap-current-mailbox)
1151        (or (and examine
1152                 (eq imap-state 'examine))
1153            (and (not examine)
1154                 (eq imap-state 'selected)))))
1155
1156 (defun imap-current-mailbox-p (mailbox &optional examine buffer)
1157   (with-current-buffer (or buffer (current-buffer))
1158     (imap-current-mailbox-p-1 (imap-utf7-encode mailbox) examine)))
1159
1160 (defun imap-mailbox-select-1 (mailbox &optional examine)
1161   "Select MAILBOX on server in BUFFER.
1162 If EXAMINE is non-nil, do a read-only select."
1163   (if (imap-current-mailbox-p-1 mailbox examine)
1164       imap-current-mailbox
1165     (setq imap-current-mailbox mailbox)
1166     (if (imap-ok-p (imap-send-command-wait
1167                     (concat (if examine "EXAMINE" "SELECT") " \""
1168                             mailbox "\"")))
1169         (progn
1170           (setq imap-message-data (make-vector imap-message-prime 0)
1171                 imap-state (if examine 'examine 'selected))
1172           imap-current-mailbox)
1173       ;; Failed SELECT/EXAMINE unselects current mailbox
1174       (setq imap-current-mailbox nil))))
1175
1176 (defun imap-mailbox-select (mailbox &optional examine buffer)
1177   (with-current-buffer (or buffer (current-buffer))
1178     (imap-utf7-decode
1179      (imap-mailbox-select-1 (imap-utf7-encode mailbox) examine))))
1180
1181 (defun imap-mailbox-examine-1 (mailbox &optional buffer)
1182   (with-current-buffer (or buffer (current-buffer))
1183     (imap-mailbox-select-1 mailbox 'examine)))
1184
1185 (defun imap-mailbox-examine (mailbox &optional buffer)
1186   "Examine MAILBOX on server in BUFFER."
1187   (imap-mailbox-select mailbox 'examine buffer))
1188
1189 (defun imap-mailbox-unselect (&optional buffer)
1190   "Close current folder in BUFFER, without expunging articles."
1191   (with-current-buffer (or buffer (current-buffer))
1192     (when (or (eq imap-state 'auth)
1193               (and (imap-capability 'UNSELECT)
1194                    (imap-ok-p (imap-send-command-wait "UNSELECT")))
1195               (and (imap-ok-p
1196                     (imap-send-command-wait (concat "EXAMINE \""
1197                                                     imap-current-mailbox
1198                                                     "\"")))
1199                    (imap-ok-p (imap-send-command-wait "CLOSE"))))
1200       (setq imap-current-mailbox nil
1201             imap-message-data nil
1202             imap-state 'auth)
1203       t)))
1204
1205 (defun imap-mailbox-expunge (&optional asynch buffer)
1206   "Expunge articles in current folder in BUFFER.
1207 If ASYNCH, do not wait for succesful completion of the command.
1208 If BUFFER is nil the current buffer is assumed."
1209   (with-current-buffer (or buffer (current-buffer))
1210     (when (and imap-current-mailbox (not (eq imap-state 'examine)))
1211       (if asynch
1212           (imap-send-command "EXPUNGE")
1213       (imap-ok-p (imap-send-command-wait "EXPUNGE"))))))
1214
1215 (defun imap-mailbox-close (&optional asynch buffer)
1216   "Expunge articles and close current folder in BUFFER.
1217 If ASYNCH, do not wait for succesful completion of the command.
1218 If BUFFER is nil the current buffer is assumed."
1219   (with-current-buffer (or buffer (current-buffer))
1220     (when imap-current-mailbox
1221       (if asynch
1222           (imap-add-callback (imap-send-command "CLOSE")
1223                              `(lambda (tag status)
1224                                 (message "IMAP mailbox `%s' closed... %s"
1225                                          imap-current-mailbox status)
1226                                 (when (eq ,imap-current-mailbox
1227                                           imap-current-mailbox)
1228                                   ;; Don't wipe out data if another mailbox
1229                                   ;; was selected...
1230                                   (setq imap-current-mailbox nil
1231                                         imap-message-data nil
1232                                         imap-state 'auth))))
1233         (when (imap-ok-p (imap-send-command-wait "CLOSE"))
1234           (setq imap-current-mailbox nil
1235                 imap-message-data nil
1236                 imap-state 'auth)))
1237       t)))
1238
1239 (defun imap-mailbox-create-1 (mailbox)
1240   (imap-ok-p (imap-send-command-wait (list "CREATE \"" mailbox "\""))))
1241
1242 (defun imap-mailbox-create (mailbox &optional buffer)
1243   "Create MAILBOX on server in BUFFER.
1244 If BUFFER is nil the current buffer is assumed."
1245   (with-current-buffer (or buffer (current-buffer))
1246     (imap-mailbox-create-1 (imap-utf7-encode mailbox))))
1247
1248 (defun imap-mailbox-delete (mailbox &optional buffer)
1249   "Delete MAILBOX on server in BUFFER.
1250 If BUFFER is nil the current buffer is assumed."
1251   (let ((mailbox (imap-utf7-encode mailbox)))
1252     (with-current-buffer (or buffer (current-buffer))
1253       (imap-ok-p
1254        (imap-send-command-wait (list "DELETE \"" mailbox "\""))))))
1255
1256 (defun imap-mailbox-rename (oldname newname &optional buffer)
1257   "Rename mailbox OLDNAME to NEWNAME on server in BUFFER.
1258 If BUFFER is nil the current buffer is assumed."
1259   (let ((oldname (imap-utf7-encode oldname))
1260         (newname (imap-utf7-encode newname)))
1261     (with-current-buffer (or buffer (current-buffer))
1262       (imap-ok-p
1263        (imap-send-command-wait (list "RENAME \"" oldname "\" "
1264                                      "\"" newname "\""))))))
1265
1266 (defun imap-mailbox-lsub (&optional root reference add-delimiter buffer)
1267   "Return a list of subscribed mailboxes on server in BUFFER.
1268 If ROOT is non-nil, only list matching mailboxes.  If ADD-DELIMITER is
1269 non-nil, a hierarchy delimiter is added to root.  REFERENCE is a
1270 implementation-specific string that has to be passed to lsub command."
1271   (with-current-buffer (or buffer (current-buffer))
1272     ;; Make sure we know the hierarchy separator for root's hierarchy
1273     (when (and add-delimiter (null (imap-mailbox-get-1 'delimiter root)))
1274       (imap-send-command-wait (concat "LIST \"" reference "\" \""
1275                                       (imap-utf7-encode root) "\"")))
1276     ;; clear list data (NB not delimiter and other stuff)
1277     (imap-mailbox-map-1 (lambda (mailbox)
1278                           (imap-mailbox-put 'lsub nil mailbox)))
1279     (when (imap-ok-p
1280            (imap-send-command-wait
1281             (concat "LSUB \"" reference "\" \"" (imap-utf7-encode root)
1282                     (and add-delimiter (imap-mailbox-get-1 'delimiter root))
1283                     "%\"")))
1284       (let (out)
1285         (imap-mailbox-map-1 (lambda (mailbox)
1286                               (when (imap-mailbox-get-1 'lsub mailbox)
1287                                 (push (imap-utf7-decode mailbox) out))))
1288         (nreverse out)))))
1289
1290 (defun imap-mailbox-list (root &optional reference add-delimiter buffer)
1291   "Return a list of mailboxes matching ROOT on server in BUFFER.
1292 If ADD-DELIMITER is non-nil, a hierarchy delimiter is added to
1293 root.  REFERENCE is a implementation-specific string that has to be
1294 passed to list command."
1295   (with-current-buffer (or buffer (current-buffer))
1296     ;; Make sure we know the hierarchy separator for root's hierarchy
1297     (when (and add-delimiter (null (imap-mailbox-get-1 'delimiter root)))
1298       (imap-send-command-wait (concat "LIST \"" reference "\" \""
1299                                       (imap-utf7-encode root) "\"")))
1300     ;; clear list data (NB not delimiter and other stuff)
1301     (imap-mailbox-map-1 (lambda (mailbox)
1302                           (imap-mailbox-put 'list nil mailbox)))
1303     (when (imap-ok-p
1304            (imap-send-command-wait
1305             (concat "LIST \"" reference "\" \"" (imap-utf7-encode root)
1306                     (and add-delimiter (imap-mailbox-get-1 'delimiter root))
1307                     "%\"")))
1308       (let (out)
1309         (imap-mailbox-map-1 (lambda (mailbox)
1310                               (when (imap-mailbox-get-1 'list mailbox)
1311                                 (push (imap-utf7-decode mailbox) out))))
1312         (nreverse out)))))
1313
1314 (defun imap-mailbox-subscribe (mailbox &optional buffer)
1315   "Send the SUBSCRIBE command on the mailbox to server in BUFFER.
1316 Returns non-nil if successful."
1317   (with-current-buffer (or buffer (current-buffer))
1318     (imap-ok-p (imap-send-command-wait (concat "SUBSCRIBE \""
1319                                                (imap-utf7-encode mailbox)
1320                                                "\"")))))
1321
1322 (defun imap-mailbox-unsubscribe (mailbox &optional buffer)
1323   "Send the SUBSCRIBE command on the mailbox to server in BUFFER.
1324 Returns non-nil if successful."
1325   (with-current-buffer (or buffer (current-buffer))
1326     (imap-ok-p (imap-send-command-wait (concat "UNSUBSCRIBE "
1327                                                (imap-utf7-encode mailbox)
1328                                                "\"")))))
1329
1330 (defun imap-mailbox-status (mailbox items &optional buffer)
1331   "Get status items ITEM in MAILBOX from server in BUFFER.
1332 ITEMS can be a symbol or a list of symbols, valid symbols are one of
1333 the STATUS data items -- ie 'messages, 'recent, 'uidnext, 'uidvalidity
1334 or 'unseen.  If ITEMS is a list of symbols, a list of values is
1335 returned, if ITEMS is a symbol only its value is returned."
1336   (with-current-buffer (or buffer (current-buffer))
1337     (when (imap-ok-p
1338            (imap-send-command-wait (list "STATUS \""
1339                                          (imap-utf7-encode mailbox)
1340                                          "\" "
1341                                          (format "%s"
1342                                                  (if (listp items)
1343                                                      items
1344                                                    (list items))))))
1345       (if (listp items)
1346           (mapcar (lambda (item)
1347                     (imap-mailbox-get item mailbox))
1348                   items)
1349         (imap-mailbox-get items mailbox)))))
1350
1351 (defun imap-mailbox-status-asynch (mailbox items &optional buffer)
1352   "Send status item request ITEM on MAILBOX to server in BUFFER.
1353 ITEMS can be a symbol or a list of symbols, valid symbols are one of
1354 the STATUS data items -- ie 'messages, 'recent, 'uidnext, 'uidvalidity
1355 or 'unseen.  The IMAP command tag is returned."
1356   (with-current-buffer (or buffer (current-buffer))
1357     (imap-send-command (list "STATUS \""
1358                              (imap-utf7-encode mailbox)
1359                              "\" "
1360                              (format "%s"
1361                                      (if (listp items)
1362                                          items
1363                                        (list items)))))))
1364
1365 (defun imap-mailbox-acl-get (&optional mailbox buffer)
1366   "Get ACL on mailbox from server in BUFFER."
1367   (let ((mailbox (imap-utf7-encode mailbox)))
1368     (with-current-buffer (or buffer (current-buffer))
1369       (when (imap-ok-p
1370              (imap-send-command-wait (list "GETACL \""
1371                                            (or mailbox imap-current-mailbox)
1372                                            "\"")))
1373         (imap-mailbox-get-1 'acl (or mailbox imap-current-mailbox))))))
1374
1375 (defun imap-mailbox-acl-set (identifier rights &optional mailbox buffer)
1376   "Change/set ACL for IDENTIFIER to RIGHTS in MAILBOX from server in BUFFER."
1377   (let ((mailbox (imap-utf7-encode mailbox)))
1378     (with-current-buffer (or buffer (current-buffer))
1379       (imap-ok-p
1380        (imap-send-command-wait (list "SETACL \""
1381                                      (or mailbox imap-current-mailbox)
1382                                      "\" "
1383                                      identifier
1384                                      " "
1385                                      rights))))))
1386
1387 (defun imap-mailbox-acl-delete (identifier &optional mailbox buffer)
1388   "Removes any <identifier,rights> pair for IDENTIFIER in MAILBOX from server in BUFFER."
1389   (let ((mailbox (imap-utf7-encode mailbox)))
1390     (with-current-buffer (or buffer (current-buffer))
1391       (imap-ok-p
1392        (imap-send-command-wait (list "DELETEACL \""
1393                                      (or mailbox imap-current-mailbox)
1394                                      "\" "
1395                                      identifier))))))
1396
1397 \f
1398 ;; Message functions:
1399
1400 (defun imap-current-message (&optional buffer)
1401   (with-current-buffer (or buffer (current-buffer))
1402     imap-current-message))
1403
1404 (defun imap-list-to-message-set (list)
1405   (mapconcat (lambda (item)
1406                (number-to-string item))
1407              (if (listp list)
1408                  list
1409                (list list))
1410              ","))
1411
1412 (defun imap-range-to-message-set (range)
1413   (mapconcat
1414    (lambda (item)
1415      (if (consp item)
1416          (format "%d:%d"
1417                  (car item) (cdr item))
1418        (format "%d" item)))
1419    (if (and (listp range) (not (listp (cdr range))))
1420        (list range) ;; make (1 . 2) into ((1 . 2))
1421      range)
1422    ","))
1423
1424 (defun imap-fetch-asynch (uids props &optional nouidfetch buffer)
1425   (with-current-buffer (or buffer (current-buffer))
1426     (imap-send-command (format "%sFETCH %s %s" (if nouidfetch "" "UID ")
1427                                (if (listp uids)
1428                                    (imap-list-to-message-set uids)
1429                                  uids)
1430                                props))))
1431
1432 (defun imap-fetch (uids props &optional receive nouidfetch buffer)
1433   "Fetch properties PROPS from message set UIDS from server in BUFFER.
1434 UIDS can be a string, number or a list of numbers.  If RECEIVE
1435 is non-nil return theese properties."
1436   (with-current-buffer (or buffer (current-buffer))
1437     (when (imap-ok-p (imap-send-command-wait
1438                       (format "%sFETCH %s %s" (if nouidfetch "" "UID ")
1439                               (if (listp uids)
1440                                   (imap-list-to-message-set uids)
1441                                 uids)
1442                               props)))
1443       (if (or (null receive) (stringp uids))
1444           t
1445         (if (listp uids)
1446             (mapcar (lambda (uid)
1447                       (if (listp receive)
1448                           (mapcar (lambda (prop)
1449                                     (imap-message-get uid prop))
1450                                   receive)
1451                         (imap-message-get uid receive)))
1452                     uids)
1453           (imap-message-get uids receive))))))
1454
1455 (defun imap-message-put (uid propname value &optional buffer)
1456   (with-current-buffer (or buffer (current-buffer))
1457     (if imap-message-data
1458         (put (intern (number-to-string uid) imap-message-data)
1459              propname value)
1460       (error "Imap-message-data is nil, uid %s prop %s value %s buffer %s"
1461              uid propname value (current-buffer)))
1462     t))
1463
1464 (defun imap-message-get (uid propname &optional buffer)
1465   (with-current-buffer (or buffer (current-buffer))
1466     (get (intern-soft (number-to-string uid) imap-message-data)
1467          propname)))
1468
1469 (defun imap-message-map (func propname &optional buffer)
1470   "Map a function across each mailbox in `imap-message-data', returning a list."
1471   (with-current-buffer (or buffer (current-buffer))
1472     (let (result)
1473       (mapatoms
1474        (lambda (s)
1475          (push (funcall func (get s 'UID) (get s propname)) result))
1476        imap-message-data)
1477       result)))
1478
1479 (defmacro imap-message-envelope-date (uid &optional buffer)
1480   `(with-current-buffer (or ,buffer (current-buffer))
1481      (elt (imap-message-get ,uid 'ENVELOPE) 0)))
1482
1483 (defmacro imap-message-envelope-subject (uid &optional buffer)
1484   `(with-current-buffer (or ,buffer (current-buffer))
1485      (elt (imap-message-get ,uid 'ENVELOPE) 1)))
1486
1487 (defmacro imap-message-envelope-from (uid &optional buffer)
1488   `(with-current-buffer (or ,buffer (current-buffer))
1489      (elt (imap-message-get ,uid 'ENVELOPE) 2)))
1490
1491 (defmacro imap-message-envelope-sender (uid &optional buffer)
1492   `(with-current-buffer (or ,buffer (current-buffer))
1493      (elt (imap-message-get ,uid 'ENVELOPE) 3)))
1494
1495 (defmacro imap-message-envelope-reply-to (uid &optional buffer)
1496   `(with-current-buffer (or ,buffer (current-buffer))
1497      (elt (imap-message-get ,uid 'ENVELOPE) 4)))
1498
1499 (defmacro imap-message-envelope-to (uid &optional buffer)
1500   `(with-current-buffer (or ,buffer (current-buffer))
1501      (elt (imap-message-get ,uid 'ENVELOPE) 5)))
1502
1503 (defmacro imap-message-envelope-cc (uid &optional buffer)
1504   `(with-current-buffer (or ,buffer (current-buffer))
1505      (elt (imap-message-get ,uid 'ENVELOPE) 6)))
1506
1507 (defmacro imap-message-envelope-bcc (uid &optional buffer)
1508   `(with-current-buffer (or ,buffer (current-buffer))
1509      (elt (imap-message-get ,uid 'ENVELOPE) 7)))
1510
1511 (defmacro imap-message-envelope-in-reply-to (uid &optional buffer)
1512   `(with-current-buffer (or ,buffer (current-buffer))
1513      (elt (imap-message-get ,uid 'ENVELOPE) 8)))
1514
1515 (defmacro imap-message-envelope-message-id (uid &optional buffer)
1516   `(with-current-buffer (or ,buffer (current-buffer))
1517      (elt (imap-message-get ,uid 'ENVELOPE) 9)))
1518
1519 (defmacro imap-message-body (uid &optional buffer)
1520   `(with-current-buffer (or ,buffer (current-buffer))
1521      (imap-message-get ,uid 'BODY)))
1522
1523 (defun imap-search (predicate &optional buffer)
1524   (with-current-buffer (or buffer (current-buffer))
1525     (imap-mailbox-put 'search 'dummy)
1526     (when (imap-ok-p (imap-send-command-wait (concat "UID SEARCH " predicate)))
1527       (if (eq (imap-mailbox-get-1 'search imap-current-mailbox) 'dummy)
1528           (progn
1529             (message "Missing SEARCH response to a SEARCH command (server not RFC compliant)...")
1530             nil)
1531         (imap-mailbox-get-1 'search imap-current-mailbox)))))
1532
1533 (defun imap-message-flag-permanent-p (flag &optional mailbox buffer)
1534   "Return t iff FLAG can be permanently (between IMAP sessions) saved on articles, in MAILBOX on server in BUFFER."
1535   (with-current-buffer (or buffer (current-buffer))
1536     (or (member "\\*" (imap-mailbox-get 'permanentflags mailbox))
1537         (member flag (imap-mailbox-get 'permanentflags mailbox)))))
1538
1539 (defun imap-message-flags-set (articles flags &optional silent buffer)
1540   (when (and articles flags)
1541     (with-current-buffer (or buffer (current-buffer))
1542       (imap-ok-p (imap-send-command-wait
1543                   (concat "UID STORE " articles
1544                           " FLAGS" (if silent ".SILENT") " (" flags ")"))))))
1545
1546 (defun imap-message-flags-del (articles flags &optional silent buffer)
1547   (when (and articles flags)
1548     (with-current-buffer (or buffer (current-buffer))
1549       (imap-ok-p (imap-send-command-wait
1550                   (concat "UID STORE " articles
1551                           " -FLAGS" (if silent ".SILENT") " (" flags ")"))))))
1552
1553 (defun imap-message-flags-add (articles flags &optional silent buffer)
1554   (when (and articles flags)
1555     (with-current-buffer (or buffer (current-buffer))
1556       (imap-ok-p (imap-send-command-wait
1557                   (concat "UID STORE " articles
1558                           " +FLAGS" (if silent ".SILENT") " (" flags ")"))))))
1559
1560 (defun imap-message-copyuid-1 (mailbox)
1561   (if (imap-capability 'UIDPLUS)
1562       (list (nth 0 (imap-mailbox-get-1 'copyuid mailbox))
1563             (string-to-number (nth 2 (imap-mailbox-get-1 'copyuid mailbox))))
1564     (let ((old-mailbox imap-current-mailbox)
1565           (state imap-state)
1566           (imap-message-data (make-vector 2 0)))
1567       (when (imap-mailbox-examine-1 mailbox)
1568         (prog1
1569             (and (imap-fetch "*" "UID")
1570                  (list (imap-mailbox-get-1 'uidvalidity mailbox)
1571                        (apply 'max (imap-message-map
1572                                     (lambda (uid prop) uid) 'UID))))
1573           (if old-mailbox
1574               (imap-mailbox-select old-mailbox (eq state 'examine))
1575             (imap-mailbox-unselect)))))))
1576
1577 (defun imap-message-copyuid (mailbox &optional buffer)
1578   (with-current-buffer (or buffer (current-buffer))
1579     (imap-message-copyuid-1 (imap-utf7-decode mailbox))))
1580
1581 (defun imap-message-copy (articles mailbox
1582                                    &optional dont-create no-copyuid buffer)
1583   "Copy ARTICLES (a string message set) to MAILBOX on server in
1584 BUFFER, creating mailbox if it doesn't exist.  If dont-create is
1585 non-nil, it will not create a mailbox.  On success, return a list with
1586 the UIDVALIDITY of the mailbox the article(s) was copied to as the
1587 first element, rest of list contain the saved articles' UIDs."
1588   (when articles
1589     (with-current-buffer (or buffer (current-buffer))
1590       (let ((mailbox (imap-utf7-encode mailbox)))
1591         (if (let ((cmd (concat "UID COPY " articles " \"" mailbox "\""))
1592                   (imap-current-target-mailbox mailbox))
1593               (if (imap-ok-p (imap-send-command-wait cmd))
1594                   t
1595                 (when (and (not dont-create)
1596                            ;; removed because of buggy Oracle server
1597                            ;; that doesn't send TRYCREATE tags (which
1598                            ;; is a MUST according to specifications):
1599                            ;;(imap-mailbox-get-1 'trycreate mailbox)
1600                            (imap-mailbox-create-1 mailbox))
1601                   (imap-ok-p (imap-send-command-wait cmd)))))
1602             (or no-copyuid
1603                 (imap-message-copyuid-1 mailbox)))))))
1604
1605 (defun imap-message-appenduid-1 (mailbox)
1606   (if (imap-capability 'UIDPLUS)
1607       (imap-mailbox-get-1 'appenduid mailbox)
1608     (let ((old-mailbox imap-current-mailbox)
1609           (state imap-state)
1610           (imap-message-data (make-vector 2 0)))
1611       (when (imap-mailbox-examine-1 mailbox)
1612         (prog1
1613             (and (imap-fetch "*" "UID")
1614                  (list (imap-mailbox-get-1 'uidvalidity mailbox)
1615                        (apply 'max (imap-message-map
1616                                     (lambda (uid prop) uid) 'UID))))
1617           (if old-mailbox
1618               (imap-mailbox-select old-mailbox (eq state 'examine))
1619             (imap-mailbox-unselect)))))))
1620
1621 (defun imap-message-appenduid (mailbox &optional buffer)
1622   (with-current-buffer (or buffer (current-buffer))
1623     (imap-message-appenduid-1 (imap-utf7-encode mailbox))))
1624
1625 (defun imap-message-append (mailbox article &optional flags date-time buffer)
1626   "Append ARTICLE (a buffer) to MAILBOX on server in BUFFER.
1627 FLAGS and DATE-TIME is currently not used.  Return a cons holding
1628 uidvalidity of MAILBOX and UID the newly created article got, or nil
1629 on failure."
1630   (let ((mailbox (imap-utf7-encode mailbox)))
1631     (with-current-buffer (or buffer (current-buffer))
1632       (and (let ((imap-current-target-mailbox mailbox))
1633              (imap-ok-p
1634               (imap-send-command-wait
1635                (list "APPEND \"" mailbox "\" "  article))))
1636            (imap-message-appenduid-1 mailbox)))))
1637
1638 (defun imap-body-lines (body)
1639   "Return number of lines in article by looking at the mime bodystructure BODY."
1640   (if (listp body)
1641       (if (stringp (car body))
1642           (cond ((and (string= (upcase (car body)) "TEXT")
1643                       (numberp (nth 7 body)))
1644                  (nth 7 body))
1645                 ((and (string= (upcase (car body)) "MESSAGE")
1646                       (numberp (nth 9 body)))
1647                  (nth 9 body))
1648                 (t 0))
1649         (apply '+ (mapcar 'imap-body-lines body)))
1650     0))
1651
1652 (defun imap-envelope-from (from)
1653   "Return a from string line."
1654   (and from
1655        (concat (aref from 0)
1656                (if (aref from 0) " <")
1657                (aref from 2)
1658                "@"
1659                (aref from 3)
1660                (if (aref from 0) ">"))))
1661
1662 \f
1663 ;; Internal functions.
1664
1665 (defun imap-add-callback (tag func)
1666   (setq imap-callbacks (append (list (cons tag func)) imap-callbacks)))
1667
1668 (defun imap-send-command-1 (cmdstr)
1669   (setq cmdstr (concat cmdstr imap-client-eol))
1670   (and imap-log
1671        (with-current-buffer (get-buffer-create imap-log-buffer)
1672          (imap-disable-multibyte)
1673          (buffer-disable-undo)
1674          (goto-char (point-max))
1675          (insert cmdstr)))
1676   (process-send-string imap-process cmdstr))
1677
1678 (defun imap-send-command (command &optional buffer)
1679   (with-current-buffer (or buffer (current-buffer))
1680     (if (not (listp command)) (setq command (list command)))
1681     (let ((tag (setq imap-tag (1+ imap-tag)))
1682           cmd cmdstr)
1683       (setq cmdstr (concat (number-to-string imap-tag) " "))
1684       (while (setq cmd (pop command))
1685         (cond ((stringp cmd)
1686                (setq cmdstr (concat cmdstr cmd)))
1687               ((bufferp cmd)
1688                (let ((eol imap-client-eol)
1689                      (calcfirst imap-calculate-literal-size-first)
1690                      size)
1691                  (with-current-buffer cmd
1692                    (if calcfirst
1693                        (setq size (buffer-size)))
1694                    (when (not (equal eol "\r\n"))
1695                      ;; XXX modifies buffer!
1696                      (goto-char (point-min))
1697                      (while (search-forward "\r\n" nil t)
1698                        (replace-match eol)))
1699                    (if (not calcfirst)
1700                        (setq size (buffer-size))))
1701                  (setq cmdstr
1702                        (concat cmdstr (format "{%d}" size))))
1703                (unwind-protect
1704                    (progn
1705                      (imap-send-command-1 cmdstr)
1706                      (setq cmdstr nil)
1707                      (if (not (eq (imap-wait-for-tag tag) 'INCOMPLETE))
1708                          (setq command nil) ;; abort command if no cont-req
1709                        (let ((process imap-process)
1710                              (stream imap-stream)
1711                              (eol imap-client-eol))
1712                          (with-current-buffer cmd
1713                            (and imap-log
1714                                 (with-current-buffer (get-buffer-create
1715                                                       imap-log-buffer)
1716                                   (imap-disable-multibyte)
1717                                   (buffer-disable-undo)
1718                                   (goto-char (point-max))
1719                                   (insert-buffer-substring cmd)))
1720                            (process-send-region process (point-min)
1721                                                 (point-max)))
1722                          (process-send-string process imap-client-eol))))
1723                  (setq imap-continuation nil)))
1724               ((functionp cmd)
1725                (imap-send-command-1 cmdstr)
1726                (setq cmdstr nil)
1727                (unwind-protect
1728                    (if (not (eq (imap-wait-for-tag tag) 'INCOMPLETE))
1729                        (setq command nil) ;; abort command if no cont-req
1730                      (setq command (cons (funcall cmd imap-continuation)
1731                                          command)))
1732                  (setq imap-continuation nil)))
1733               (t
1734                (error "Unknown command type"))))
1735       (if cmdstr
1736           (imap-send-command-1 cmdstr))
1737       tag)))
1738
1739 (defun imap-wait-for-tag (tag &optional buffer)
1740   (with-current-buffer (or buffer (current-buffer))
1741     (let (imap-have-messaged)
1742       (while (and (null imap-continuation)
1743                   (memq (process-status imap-process) '(open run))
1744                   (< imap-reached-tag tag))
1745         (let ((len (/ (point-max) 1024))
1746               message-log-max)
1747           (unless (< len 10)
1748             (setq imap-have-messaged t)
1749             (message "imap read: %dk" len))
1750           (accept-process-output imap-process
1751                                  (truncate imap-read-timeout)
1752                                  (truncate (* (- imap-read-timeout
1753                                                  (truncate imap-read-timeout))
1754                                               1000)))))
1755       ;; A process can die _before_ we have processed everything it
1756       ;; has to say.  Moreover, this can happen in between the call to
1757       ;; accept-process-output and the call to process-status in an
1758       ;; iteration of the loop above.
1759       (when (and (null imap-continuation)
1760                  (< imap-reached-tag tag))
1761         (accept-process-output imap-process 0 0))
1762       (when imap-have-messaged
1763         (message ""))
1764       (and (memq (process-status imap-process) '(open run))
1765            (or (assq tag imap-failed-tags)
1766                (if imap-continuation
1767                    'INCOMPLETE
1768                  'OK))))))
1769
1770 (defun imap-sentinel (process string)
1771   (delete-process process))
1772
1773 (defun imap-find-next-line ()
1774   "Return point at end of current line, taking into account literals.
1775 Return nil if no complete line has arrived."
1776   (when (re-search-forward (concat imap-server-eol "\\|{\\([0-9]+\\)}"
1777                                    imap-server-eol)
1778                            nil t)
1779     (if (match-string 1)
1780         (if (< (point-max) (+ (point) (string-to-number (match-string 1))))
1781             nil
1782           (goto-char (+ (point) (string-to-number (match-string 1))))
1783           (imap-find-next-line))
1784       (point))))
1785
1786 (defun imap-arrival-filter (proc string)
1787   "IMAP process filter."
1788   ;; Sometimes, we are called even though the process has died.
1789   ;; Better abstain from doing stuff in that case.
1790   (when (buffer-name (process-buffer proc))
1791     (with-current-buffer (process-buffer proc)
1792       (goto-char (point-max))
1793       (insert string)
1794       (and imap-log
1795            (with-current-buffer (get-buffer-create imap-log-buffer)
1796              (imap-disable-multibyte)
1797              (buffer-disable-undo)
1798              (goto-char (point-max))
1799              (insert string)))
1800       (let (end)
1801         (goto-char (point-min))
1802         (while (setq end (imap-find-next-line))
1803           (save-restriction
1804             (narrow-to-region (point-min) end)
1805             (delete-backward-char (length imap-server-eol))
1806             (goto-char (point-min))
1807             (unwind-protect
1808                 (cond ((eq imap-state 'initial)
1809                        (imap-parse-greeting))
1810                       ((or (eq imap-state 'auth)
1811                            (eq imap-state 'nonauth)
1812                            (eq imap-state 'selected)
1813                            (eq imap-state 'examine))
1814                        (imap-parse-response))
1815                       (t
1816                        (message "Unknown state %s in arrival filter"
1817                                 imap-state)))
1818               (delete-region (point-min) (point-max)))))))))
1819
1820 \f
1821 ;; Imap parser.
1822
1823 (defsubst imap-forward ()
1824   (or (eobp) (forward-char)))
1825
1826 ;;   number          = 1*DIGIT
1827 ;;                       ; Unsigned 32-bit integer
1828 ;;                       ; (0 <= n < 4,294,967,296)
1829
1830 (defsubst imap-parse-number ()
1831   (when (looking-at "[0-9]+")
1832     (prog1
1833         (string-to-number (match-string 0))
1834       (goto-char (match-end 0)))))
1835
1836 ;;   literal         = "{" number "}" CRLF *CHAR8
1837 ;;                       ; Number represents the number of CHAR8s
1838
1839 (defsubst imap-parse-literal ()
1840   (when (looking-at "{\\([0-9]+\\)}\r\n")
1841     (let ((pos (match-end 0))
1842           (len (string-to-number (match-string 1))))
1843       (if (< (point-max) (+ pos len))
1844           nil
1845         (goto-char (+ pos len))
1846         (buffer-substring pos (+ pos len))))))
1847
1848 ;;   string          = quoted / literal
1849 ;;
1850 ;;   quoted          = DQUOTE *QUOTED-CHAR DQUOTE
1851 ;;
1852 ;;   QUOTED-CHAR     = <any TEXT-CHAR except quoted-specials> /
1853 ;;                     "\" quoted-specials
1854 ;;
1855 ;;   quoted-specials = DQUOTE / "\"
1856 ;;
1857 ;;   TEXT-CHAR       = <any CHAR except CR and LF>
1858
1859 (defsubst imap-parse-string ()
1860   (cond ((eq (char-after) ?\")
1861          (forward-char 1)
1862          (let ((p (point)) (name ""))
1863            (skip-chars-forward "^\"\\\\")
1864            (setq name (buffer-substring p (point)))
1865            (while (eq (char-after) ?\\)
1866              (setq p (1+ (point)))
1867              (forward-char 2)
1868              (skip-chars-forward "^\"\\\\")
1869              (setq name (concat name (buffer-substring p (point)))))
1870            (forward-char 1)
1871            name))
1872         ((eq (char-after) ?{)
1873          (imap-parse-literal))))
1874
1875 ;;   nil             = "NIL"
1876
1877 (defsubst imap-parse-nil ()
1878   (if (looking-at "NIL")
1879       (goto-char (match-end 0))))
1880
1881 ;;   nstring         = string / nil
1882
1883 (defsubst imap-parse-nstring ()
1884   (or (imap-parse-string)
1885       (and (imap-parse-nil)
1886            nil)))
1887
1888 ;;   astring         = atom / string
1889 ;;
1890 ;;   atom            = 1*ATOM-CHAR
1891 ;;
1892 ;;   ATOM-CHAR       = <any CHAR except atom-specials>
1893 ;;
1894 ;;   atom-specials   = "(" / ")" / "{" / SP / CTL / list-wildcards /
1895 ;;                     quoted-specials
1896 ;;
1897 ;;   list-wildcards  = "%" / "*"
1898 ;;
1899 ;;   quoted-specials = DQUOTE / "\"
1900
1901 (defsubst imap-parse-astring ()
1902   (or (imap-parse-string)
1903       (buffer-substring (point)
1904                         (if (re-search-forward "[(){ \r\n%*\"\\]" nil t)
1905                             (goto-char (1- (match-end 0)))
1906                           (end-of-line)
1907                           (point)))))
1908
1909 ;;   address         = "(" addr-name SP addr-adl SP addr-mailbox SP
1910 ;;                      addr-host ")"
1911 ;;
1912 ;;   addr-adl        = nstring
1913 ;;                       ; Holds route from [RFC-822] route-addr if
1914 ;;                       ; non-nil
1915 ;;
1916 ;;   addr-host       = nstring
1917 ;;                       ; nil indicates [RFC-822] group syntax.
1918 ;;                       ; Otherwise, holds [RFC-822] domain name
1919 ;;
1920 ;;   addr-mailbox    = nstring
1921 ;;                       ; nil indicates end of [RFC-822] group; if
1922 ;;                       ; non-nil and addr-host is nil, holds
1923 ;;                       ; [RFC-822] group name.
1924 ;;                       ; Otherwise, holds [RFC-822] local-part
1925 ;;                       ; after removing [RFC-822] quoting
1926 ;;
1927 ;;   addr-name       = nstring
1928 ;;                       ; If non-nil, holds phrase from [RFC-822]
1929 ;;                       ; mailbox after removing [RFC-822] quoting
1930 ;;
1931
1932 (defsubst imap-parse-address ()
1933   (let (address)
1934     (when (eq (char-after) ?\()
1935       (imap-forward)
1936       (setq address (vector (prog1 (imap-parse-nstring)
1937                               (imap-forward))
1938                             (prog1 (imap-parse-nstring)
1939                               (imap-forward))
1940                             (prog1 (imap-parse-nstring)
1941                               (imap-forward))
1942                             (imap-parse-nstring)))
1943       (when (eq (char-after) ?\))
1944         (imap-forward)
1945         address))))
1946
1947 ;;   address-list    = "(" 1*address ")" / nil
1948 ;;
1949 ;;   nil             = "NIL"
1950
1951 (defsubst imap-parse-address-list ()
1952   (if (eq (char-after) ?\()
1953       (let (address addresses)
1954         (imap-forward)
1955         (while (and (not (eq (char-after) ?\)))
1956                     ;; next line for MS Exchange bug
1957                     (progn (and (eq (char-after) ? ) (imap-forward)) t)
1958                     (setq address (imap-parse-address)))
1959           (setq addresses (cons address addresses)))
1960         (when (eq (char-after) ?\))
1961           (imap-forward)
1962           (nreverse addresses)))
1963     (assert (imap-parse-nil) t "In imap-parse-address-list")))
1964
1965 ;;   mailbox         = "INBOX" / astring
1966 ;;                       ; INBOX is case-insensitive.  All case variants of
1967 ;;                       ; INBOX (e.g. "iNbOx") MUST be interpreted as INBOX
1968 ;;                       ; not as an astring.  An astring which consists of
1969 ;;                       ; the case-insensitive sequence "I" "N" "B" "O" "X"
1970 ;;                       ; is considered to be INBOX and not an astring.
1971 ;;                       ;  Refer to section 5.1 for further
1972 ;;                       ; semantic details of mailbox names.
1973
1974 (defsubst imap-parse-mailbox ()
1975   (let ((mailbox (imap-parse-astring)))
1976     (if (string-equal "INBOX" (upcase mailbox))
1977         "INBOX"
1978       mailbox)))
1979
1980 ;;   greeting        = "*" SP (resp-cond-auth / resp-cond-bye) CRLF
1981 ;;
1982 ;;   resp-cond-auth  = ("OK" / "PREAUTH") SP resp-text
1983 ;;                       ; Authentication condition
1984 ;;
1985 ;;   resp-cond-bye   = "BYE" SP resp-text
1986
1987 (defun imap-parse-greeting ()
1988   "Parse a IMAP greeting."
1989   (cond ((looking-at "\\* OK ")
1990          (setq imap-state 'nonauth))
1991         ((looking-at "\\* PREAUTH ")
1992          (setq imap-state 'auth))
1993         ((looking-at "\\* BYE ")
1994          (setq imap-state 'closed))))
1995
1996 ;;   response        = *(continue-req / response-data) response-done
1997 ;;
1998 ;;   continue-req    = "+" SP (resp-text / base64) CRLF
1999 ;;
2000 ;;   response-data   = "*" SP (resp-cond-state / resp-cond-bye /
2001 ;;                     mailbox-data / message-data / capability-data) CRLF
2002 ;;
2003 ;;   response-done   = response-tagged / response-fatal
2004 ;;
2005 ;;   response-fatal  = "*" SP resp-cond-bye CRLF
2006 ;;                       ; Server closes connection immediately
2007 ;;
2008 ;;   response-tagged = tag SP resp-cond-state CRLF
2009 ;;
2010 ;;   resp-cond-state = ("OK" / "NO" / "BAD") SP resp-text
2011 ;;                       ; Status condition
2012 ;;
2013 ;;   resp-cond-bye   = "BYE" SP resp-text
2014 ;;
2015 ;;   mailbox-data    =  "FLAGS" SP flag-list /
2016 ;;                      "LIST" SP mailbox-list /
2017 ;;                      "LSUB" SP mailbox-list /
2018 ;;                      "SEARCH" *(SP nz-number) /
2019 ;;                      "STATUS" SP mailbox SP "("
2020 ;;                            [status-att SP number *(SP status-att SP number)] ")" /
2021 ;;                      number SP "EXISTS" /
2022 ;;                      number SP "RECENT"
2023 ;;
2024 ;;   message-data    = nz-number SP ("EXPUNGE" / ("FETCH" SP msg-att))
2025 ;;
2026 ;;   capability-data = "CAPABILITY" *(SP capability) SP "IMAP4rev1"
2027 ;;                     *(SP capability)
2028 ;;                       ; IMAP4rev1 servers which offer RFC 1730
2029 ;;                       ; compatibility MUST list "IMAP4" as the first
2030 ;;                       ; capability.
2031
2032 (defun imap-parse-response ()
2033   "Parse a IMAP command response."
2034   (let (token)
2035     (case (setq token (read (current-buffer)))
2036       (+ (setq imap-continuation
2037                (or (buffer-substring (min (point-max) (1+ (point)))
2038                                      (point-max))
2039                    t)))
2040       (* (case (prog1 (setq token (read (current-buffer)))
2041                  (imap-forward))
2042            (OK         (imap-parse-resp-text))
2043            (NO         (imap-parse-resp-text))
2044            (BAD        (imap-parse-resp-text))
2045            (BYE        (imap-parse-resp-text))
2046            (FLAGS      (imap-mailbox-put 'flags (imap-parse-flag-list)))
2047            (LIST       (imap-parse-data-list 'list))
2048            (LSUB       (imap-parse-data-list 'lsub))
2049            (SEARCH     (imap-mailbox-put
2050                         'search
2051                         (read (concat "(" (buffer-substring (point) (point-max)) ")"))))
2052            (STATUS     (imap-parse-status))
2053            (CAPABILITY (setq imap-capability
2054                                (read (concat "(" (upcase (buffer-substring
2055                                                           (point) (point-max)))
2056                                              ")"))))
2057            (ACL        (imap-parse-acl))
2058            (t       (case (prog1 (read (current-buffer))
2059                             (imap-forward))
2060                       (EXISTS  (imap-mailbox-put 'exists token))
2061                       (RECENT  (imap-mailbox-put 'recent token))
2062                       (EXPUNGE t)
2063                       (FETCH   (imap-parse-fetch token))
2064                       (t       (message "Garbage: %s" (buffer-string)))))))
2065       (t (let (status)
2066            (if (not (integerp token))
2067                (message "Garbage: %s" (buffer-string))
2068              (case (prog1 (setq status (read (current-buffer)))
2069                      (imap-forward))
2070                (OK  (progn
2071                       (setq imap-reached-tag (max imap-reached-tag token))
2072                       (imap-parse-resp-text)))
2073                (NO  (progn
2074                       (setq imap-reached-tag (max imap-reached-tag token))
2075                       (save-excursion
2076                         (imap-parse-resp-text))
2077                       (let (code text)
2078                         (when (eq (char-after) ?\[)
2079                           (setq code (buffer-substring (point)
2080                                                        (search-forward "]")))
2081                           (imap-forward))
2082                         (setq text (buffer-substring (point) (point-max)))
2083                         (push (list token status code text)
2084                               imap-failed-tags))))
2085                (BAD (progn
2086                       (setq imap-reached-tag (max imap-reached-tag token))
2087                       (save-excursion
2088                         (imap-parse-resp-text))
2089                       (let (code text)
2090                         (when (eq (char-after) ?\[)
2091                           (setq code (buffer-substring (point)
2092                                                        (search-forward "]")))
2093                           (imap-forward))
2094                         (setq text (buffer-substring (point) (point-max)))
2095                         (push (list token status code text) imap-failed-tags)
2096                         (error "Internal error, tag %s status %s code %s text %s"
2097                                token status code text))))
2098                (t   (message "Garbage: %s" (buffer-string))))
2099              (when (assq token imap-callbacks)
2100                (funcall (cdr (assq token imap-callbacks)) token status)
2101                (setq imap-callbacks
2102                      (imap-remassoc token imap-callbacks)))))))))
2103
2104 ;;   resp-text       = ["[" resp-text-code "]" SP] text
2105 ;;
2106 ;;   text            = 1*TEXT-CHAR
2107 ;;
2108 ;;   TEXT-CHAR       = <any CHAR except CR and LF>
2109
2110 (defun imap-parse-resp-text ()
2111   (imap-parse-resp-text-code))
2112
2113 ;;   resp-text-code  = "ALERT" /
2114 ;;                     "BADCHARSET [SP "(" astring *(SP astring) ")" ] /
2115 ;;                     "NEWNAME" SP string SP string /
2116 ;;                     "PARSE" /
2117 ;;                     "PERMANENTFLAGS" SP "("
2118 ;;                               [flag-perm *(SP flag-perm)] ")" /
2119 ;;                     "READ-ONLY" /
2120 ;;                     "READ-WRITE" /
2121 ;;                     "TRYCREATE" /
2122 ;;                     "UIDNEXT" SP nz-number /
2123 ;;                     "UIDVALIDITY" SP nz-number /
2124 ;;                     "UNSEEN" SP nz-number /
2125 ;;                     resp-text-atom [SP 1*<any TEXT-CHAR except "]">]
2126 ;;
2127 ;;   resp_code_apnd  = "APPENDUID" SPACE nz_number SPACE uniqueid
2128 ;;
2129 ;;   resp_code_copy  = "COPYUID" SPACE nz_number SPACE set SPACE set
2130 ;;
2131 ;;   set             = sequence-num / (sequence-num ":" sequence-num) /
2132 ;;                        (set "," set)
2133 ;;                          ; Identifies a set of messages.  For message
2134 ;;                          ; sequence numbers, these are consecutive
2135 ;;                          ; numbers from 1 to the number of messages in
2136 ;;                          ; the mailbox
2137 ;;                          ; Comma delimits individual numbers, colon
2138 ;;                          ; delimits between two numbers inclusive.
2139 ;;                          ; Example: 2,4:7,9,12:* is 2,4,5,6,7,9,12,13,
2140 ;;                          ; 14,15 for a mailbox with 15 messages.
2141 ;;
2142 ;;   sequence-num    = nz-number / "*"
2143 ;;                          ; * is the largest number in use.  For message
2144 ;;                          ; sequence numbers, it is the number of messages
2145 ;;                          ; in the mailbox.  For unique identifiers, it is
2146 ;;                          ; the unique identifier of the last message in
2147 ;;                          ; the mailbox.
2148 ;;
2149 ;;   flag-perm       = flag / "\*"
2150 ;;
2151 ;;   flag            = "\Answered" / "\Flagged" / "\Deleted" /
2152 ;;                     "\Seen" / "\Draft" / flag-keyword / flag-extension
2153 ;;                       ; Does not include "\Recent"
2154 ;;
2155 ;;   flag-extension  = "\" atom
2156 ;;                       ; Future expansion.  Client implementations
2157 ;;                       ; MUST accept flag-extension flags.  Server
2158 ;;                       ; implementations MUST NOT generate
2159 ;;                       ; flag-extension flags except as defined by
2160 ;;                       ; future standard or standards-track
2161 ;;                       ; revisions of this specification.
2162 ;;
2163 ;;   flag-keyword    = atom
2164 ;;
2165 ;;   resp-text-atom  = 1*<any ATOM-CHAR except "]">
2166
2167 (defun imap-parse-resp-text-code ()
2168   ;; xxx next line for stalker communigate pro 3.3.1 bug
2169   (when (looking-at " \\[")
2170     (imap-forward))
2171   (when (eq (char-after) ?\[)
2172     (imap-forward)
2173     (cond ((search-forward "PERMANENTFLAGS " nil t)
2174            (imap-mailbox-put 'permanentflags (imap-parse-flag-list)))
2175           ((search-forward "UIDNEXT \\([0-9]+\\)" nil t)
2176            (imap-mailbox-put 'uidnext (match-string 1)))
2177           ((search-forward "UNSEEN " nil t)
2178            (imap-mailbox-put 'first-unseen (read (current-buffer))))
2179           ((looking-at "UIDVALIDITY \\([0-9]+\\)")
2180            (imap-mailbox-put 'uidvalidity (match-string 1)))
2181           ((search-forward "READ-ONLY" nil t)
2182            (imap-mailbox-put 'read-only t))
2183           ((search-forward "NEWNAME " nil t)
2184            (let (oldname newname)
2185              (setq oldname (imap-parse-string))
2186              (imap-forward)
2187              (setq newname (imap-parse-string))
2188              (imap-mailbox-put 'newname newname oldname)))
2189           ((search-forward "TRYCREATE" nil t)
2190            (imap-mailbox-put 'trycreate t imap-current-target-mailbox))
2191           ((looking-at "APPENDUID \\([0-9]+\\) \\([0-9]+\\)")
2192            (imap-mailbox-put 'appenduid
2193                              (list (match-string 1)
2194                                    (string-to-number (match-string 2)))
2195                              imap-current-target-mailbox))
2196           ((looking-at "COPYUID \\([0-9]+\\) \\([0-9,:]+\\) \\([0-9,:]+\\)")
2197            (imap-mailbox-put 'copyuid (list (match-string 1)
2198                                             (match-string 2)
2199                                             (match-string 3))
2200                              imap-current-target-mailbox))
2201           ((search-forward "ALERT] " nil t)
2202            (message "Imap server %s information: %s" imap-server
2203                     (buffer-substring (point) (point-max)))))))
2204
2205 ;;   mailbox-list    = "(" [mbx-list-flags] ")" SP
2206 ;;                      (DQUOTE QUOTED-CHAR DQUOTE / nil) SP mailbox
2207 ;;
2208 ;;   mbx-list-flags  = *(mbx-list-oflag SP) mbx-list-sflag
2209 ;;                     *(SP mbx-list-oflag) /
2210 ;;                     mbx-list-oflag *(SP mbx-list-oflag)
2211 ;;
2212 ;;   mbx-list-oflag  = "\Noinferiors" / flag-extension
2213 ;;                       ; Other flags; multiple possible per LIST response
2214 ;;
2215 ;;   mbx-list-sflag  = "\Noselect" / "\Marked" / "\Unmarked"
2216 ;;                       ; Selectability flags; only one per LIST response
2217 ;;
2218 ;;   QUOTED-CHAR     = <any TEXT-CHAR except quoted-specials> /
2219 ;;                     "\" quoted-specials
2220 ;;
2221 ;;   quoted-specials = DQUOTE / "\"
2222
2223 (defun imap-parse-data-list (type)
2224   (let (flags delimiter mailbox)
2225     (setq flags (imap-parse-flag-list))
2226     (when (looking-at " NIL\\| \"\\\\?\\(.\\)\"")
2227       (setq delimiter (match-string 1))
2228       (goto-char (1+ (match-end 0)))
2229       (when (setq mailbox (imap-parse-mailbox))
2230         (imap-mailbox-put type t mailbox)
2231         (imap-mailbox-put 'list-flags flags mailbox)
2232         (imap-mailbox-put 'delimiter delimiter mailbox)))))
2233
2234 ;;  msg_att         ::= "(" 1#("ENVELOPE" SPACE envelope /
2235 ;;                      "FLAGS" SPACE "(" #(flag / "\Recent") ")" /
2236 ;;                      "INTERNALDATE" SPACE date_time /
2237 ;;                      "RFC822" [".HEADER" / ".TEXT"] SPACE nstring /
2238 ;;                      "RFC822.SIZE" SPACE number /
2239 ;;                      "BODY" ["STRUCTURE"] SPACE body /
2240 ;;                      "BODY" section ["<" number ">"] SPACE nstring /
2241 ;;                      "UID" SPACE uniqueid) ")"
2242 ;;
2243 ;;  date_time       ::= <"> date_day_fixed "-" date_month "-" date_year
2244 ;;                      SPACE time SPACE zone <">
2245 ;;
2246 ;;  section         ::= "[" [section_text / (nz_number *["." nz_number]
2247 ;;                      ["." (section_text / "MIME")])] "]"
2248 ;;
2249 ;;  section_text    ::= "HEADER" / "HEADER.FIELDS" [".NOT"]
2250 ;;                      SPACE header_list / "TEXT"
2251 ;;
2252 ;;  header_fld_name ::= astring
2253 ;;
2254 ;;  header_list     ::= "(" 1#header_fld_name ")"
2255
2256 (defsubst imap-parse-header-list ()
2257   (when (eq (char-after) ?\()
2258     (let (strlist)
2259       (while (not (eq (char-after) ?\)))
2260         (imap-forward)
2261         (push (imap-parse-astring) strlist))
2262       (imap-forward)
2263       (nreverse strlist))))
2264
2265 (defsubst imap-parse-fetch-body-section ()
2266   (let ((section
2267          (buffer-substring (point) (1- (re-search-forward "[] ]" nil t)))))
2268     (if (eq (char-before) ? )
2269         (prog1
2270             (mapconcat 'identity (cons section (imap-parse-header-list)) " ")
2271           (search-forward "]" nil t))
2272       section)))
2273
2274 (defun imap-parse-fetch (response)
2275   (when (eq (char-after) ?\()
2276     (let (uid flags envelope internaldate rfc822 rfc822header rfc822text
2277               rfc822size body bodydetail bodystructure flags-empty)
2278       (while (not (eq (char-after) ?\)))
2279         (imap-forward)
2280         (let ((token (read (current-buffer))))
2281           (imap-forward)
2282           (cond ((eq token 'UID)
2283                  (setq uid (condition-case ()
2284                                (read (current-buffer))
2285                              (error))))
2286                 ((eq token 'FLAGS)
2287                  (setq flags (imap-parse-flag-list))
2288                  (if (not flags)
2289                      (setq flags-empty 't)))
2290                 ((eq token 'ENVELOPE)
2291                  (setq envelope (imap-parse-envelope)))
2292                 ((eq token 'INTERNALDATE)
2293                  (setq internaldate (imap-parse-string)))
2294                 ((eq token 'RFC822)
2295                  (setq rfc822 (imap-parse-nstring)))
2296                 ((eq token 'RFC822.HEADER)
2297                  (setq rfc822header (imap-parse-nstring)))
2298                 ((eq token 'RFC822.TEXT)
2299                  (setq rfc822text (imap-parse-nstring)))
2300                 ((eq token 'RFC822.SIZE)
2301                  (setq rfc822size (read (current-buffer))))
2302                 ((eq token 'BODY)
2303                  (if (eq (char-before) ?\[)
2304                      (push (list
2305                             (upcase (imap-parse-fetch-body-section))
2306                             (and (eq (char-after) ?<)
2307                                  (buffer-substring (1+ (point))
2308                                                    (search-forward ">" nil t)))
2309                             (progn (imap-forward)
2310                                    (imap-parse-nstring)))
2311                            bodydetail)
2312                    (setq body (imap-parse-body))))
2313                 ((eq token 'BODYSTRUCTURE)
2314                  (setq bodystructure (imap-parse-body))))))
2315       (when uid
2316         (setq imap-current-message uid)
2317         (imap-message-put uid 'UID uid)
2318         (and (or flags flags-empty) (imap-message-put uid 'FLAGS flags))
2319         (and envelope (imap-message-put uid 'ENVELOPE envelope))
2320         (and internaldate (imap-message-put uid 'INTERNALDATE internaldate))
2321         (and rfc822 (imap-message-put uid 'RFC822 rfc822))
2322         (and rfc822header (imap-message-put uid 'RFC822.HEADER rfc822header))
2323         (and rfc822text (imap-message-put uid 'RFC822.TEXT rfc822text))
2324         (and rfc822size (imap-message-put uid 'RFC822.SIZE rfc822size))
2325         (and body (imap-message-put uid 'BODY body))
2326         (and bodydetail (imap-message-put uid 'BODYDETAIL bodydetail))
2327         (and bodystructure (imap-message-put uid 'BODYSTRUCTURE bodystructure))
2328         (run-hooks 'imap-fetch-data-hook)))))
2329
2330 ;;   mailbox-data    =  ...
2331 ;;                      "STATUS" SP mailbox SP "("
2332 ;;                            [status-att SP number
2333 ;;                            *(SP status-att SP number)] ")"
2334 ;;                      ...
2335 ;;
2336 ;;   status-att      = "MESSAGES" / "RECENT" / "UIDNEXT" / "UIDVALIDITY" /
2337 ;;                     "UNSEEN"
2338
2339 (defun imap-parse-status ()
2340   (let ((mailbox (imap-parse-mailbox)))
2341     (if (eq (char-after) ? )
2342         (forward-char))
2343     (when (and mailbox (eq (char-after) ?\())
2344       (while (and (not (eq (char-after) ?\)))
2345                   (or (forward-char) t)
2346                   (looking-at "\\([A-Za-z]+\\) "))
2347         (let ((token (match-string 1)))
2348           (goto-char (match-end 0))
2349           (cond ((string= token "MESSAGES")
2350                  (imap-mailbox-put 'messages (read (current-buffer)) mailbox))
2351                 ((string= token "RECENT")
2352                  (imap-mailbox-put 'recent (read (current-buffer)) mailbox))
2353                 ((string= token "UIDNEXT")
2354                  (and (looking-at "[0-9]+")
2355                       (imap-mailbox-put 'uidnext (match-string 0) mailbox)
2356                       (goto-char (match-end 0))))
2357                 ((string= token "UIDVALIDITY")
2358                  (and (looking-at "[0-9]+")
2359                       (imap-mailbox-put 'uidvalidity (match-string 0) mailbox)
2360                       (goto-char (match-end 0))))
2361                 ((string= token "UNSEEN")
2362                  (imap-mailbox-put 'unseen (read (current-buffer)) mailbox))
2363                 (t
2364                  (message "Unknown status data %s in mailbox %s ignored"
2365                           token mailbox)
2366                  (read (current-buffer)))))))))
2367
2368 ;;   acl_data        ::= "ACL" SPACE mailbox *(SPACE identifier SPACE
2369 ;;                        rights)
2370 ;;
2371 ;;   identifier      ::= astring
2372 ;;
2373 ;;   rights          ::= astring
2374
2375 (defun imap-parse-acl ()
2376   (let ((mailbox (imap-parse-mailbox))
2377         identifier rights acl)
2378     (while (eq (char-after) ?\ )
2379       (imap-forward)
2380       (setq identifier (imap-parse-astring))
2381       (imap-forward)
2382       (setq rights (imap-parse-astring))
2383       (setq acl (append acl (list (cons identifier rights)))))
2384     (imap-mailbox-put 'acl acl mailbox)))
2385
2386 ;;   flag-list       = "(" [flag *(SP flag)] ")"
2387 ;;
2388 ;;   flag            = "\Answered" / "\Flagged" / "\Deleted" /
2389 ;;                     "\Seen" / "\Draft" / flag-keyword / flag-extension
2390 ;;                       ; Does not include "\Recent"
2391 ;;
2392 ;;   flag-keyword    = atom
2393 ;;
2394 ;;   flag-extension  = "\" atom
2395 ;;                       ; Future expansion.  Client implementations
2396 ;;                       ; MUST accept flag-extension flags.  Server
2397 ;;                       ; implementations MUST NOT generate
2398 ;;                       ; flag-extension flags except as defined by
2399 ;;                       ; future standard or standards-track
2400 ;;                       ; revisions of this specification.
2401
2402 (defun imap-parse-flag-list ()
2403   (let (flag-list start)
2404     (assert (eq (char-after) ?\() t "In imap-parse-flag-list")
2405     (while (and (not (eq (char-after) ?\)))
2406                 (setq start (progn
2407                               (imap-forward)
2408                               ;; next line for Courier IMAP bug.
2409                               (skip-chars-forward " ")
2410                               (point)))
2411                 (> (skip-chars-forward "^ )" (imap-point-at-eol)) 0))
2412       (push (buffer-substring start (point)) flag-list))
2413     (assert (eq (char-after) ?\)) t "In imap-parse-flag-list")
2414     (imap-forward)
2415     (nreverse flag-list)))
2416
2417 ;;   envelope        = "(" env-date SP env-subject SP env-from SP env-sender SP
2418 ;;                     env-reply-to SP env-to SP env-cc SP env-bcc SP
2419 ;;                     env-in-reply-to SP env-message-id ")"
2420 ;;
2421 ;;   env-bcc         = "(" 1*address ")" / nil
2422 ;;
2423 ;;   env-cc          = "(" 1*address ")" / nil
2424 ;;
2425 ;;   env-date        = nstring
2426 ;;
2427 ;;   env-from        = "(" 1*address ")" / nil
2428 ;;
2429 ;;   env-in-reply-to = nstring
2430 ;;
2431 ;;   env-message-id  = nstring
2432 ;;
2433 ;;   env-reply-to    = "(" 1*address ")" / nil
2434 ;;
2435 ;;   env-sender      = "(" 1*address ")" / nil
2436 ;;
2437 ;;   env-subject     = nstring
2438 ;;
2439 ;;   env-to          = "(" 1*address ")" / nil
2440
2441 (defun imap-parse-envelope ()
2442   (when (eq (char-after) ?\()
2443     (imap-forward)
2444     (vector (prog1 (imap-parse-nstring) ;; date
2445               (imap-forward))
2446             (prog1 (imap-parse-nstring) ;; subject
2447               (imap-forward))
2448             (prog1 (imap-parse-address-list) ;; from
2449               (imap-forward))
2450             (prog1 (imap-parse-address-list) ;; sender
2451               (imap-forward))
2452             (prog1 (imap-parse-address-list) ;; reply-to
2453               (imap-forward))
2454             (prog1 (imap-parse-address-list) ;; to
2455               (imap-forward))
2456             (prog1 (imap-parse-address-list) ;; cc
2457               (imap-forward))
2458             (prog1 (imap-parse-address-list) ;; bcc
2459               (imap-forward))
2460             (prog1 (imap-parse-nstring) ;; in-reply-to
2461               (imap-forward))
2462             (prog1 (imap-parse-nstring) ;; message-id
2463               (imap-forward)))))
2464
2465 ;;   body-fld-param  = "(" string SP string *(SP string SP string) ")" / nil
2466
2467 (defsubst imap-parse-string-list ()
2468   (cond ((eq (char-after) ?\() ;; body-fld-param
2469          (let (strlist str)
2470            (imap-forward)
2471            (while (setq str (imap-parse-string))
2472              (push str strlist)
2473              ;; buggy stalker communigate pro 3.0 doesn't print SPC
2474              ;; between body-fld-param's sometimes
2475              (or (eq (char-after) ?\")
2476                  (imap-forward)))
2477            (nreverse strlist)))
2478         ((imap-parse-nil)
2479          nil)))
2480
2481 ;;   body-extension  = nstring / number /
2482 ;;                      "(" body-extension *(SP body-extension) ")"
2483 ;;                       ; Future expansion.  Client implementations
2484 ;;                       ; MUST accept body-extension fields.  Server
2485 ;;                       ; implementations MUST NOT generate
2486 ;;                       ; body-extension fields except as defined by
2487 ;;                       ; future standard or standards-track
2488 ;;                       ; revisions of this specification.
2489
2490 (defun imap-parse-body-extension ()
2491   (if (eq (char-after) ?\()
2492       (let (b-e)
2493         (imap-forward)
2494         (push (imap-parse-body-extension) b-e)
2495         (while (eq (char-after) ?\ )
2496           (imap-forward)
2497           (push (imap-parse-body-extension) b-e))
2498         (assert (eq (char-after) ?\)) t "In imap-parse-body-extension")
2499         (imap-forward)
2500         (nreverse b-e))
2501     (or (imap-parse-number)
2502         (imap-parse-nstring))))
2503
2504 ;;   body-ext-1part  = body-fld-md5 [SP body-fld-dsp [SP body-fld-lang
2505 ;;                     *(SP body-extension)]]
2506 ;;                       ; MUST NOT be returned on non-extensible
2507 ;;                       ; "BODY" fetch
2508 ;;
2509 ;;   body-ext-mpart  = body-fld-param [SP body-fld-dsp [SP body-fld-lang
2510 ;;                     *(SP body-extension)]]
2511 ;;                       ; MUST NOT be returned on non-extensible
2512 ;;                       ; "BODY" fetch
2513
2514 (defsubst imap-parse-body-ext ()
2515   (let (ext)
2516     (when (eq (char-after) ?\ ) ;; body-fld-dsp
2517       (imap-forward)
2518       (let (dsp)
2519         (if (eq (char-after) ?\()
2520             (progn
2521               (imap-forward)
2522               (push (imap-parse-string) dsp)
2523               (imap-forward)
2524               (push (imap-parse-string-list) dsp)
2525               (imap-forward))
2526           (assert (imap-parse-nil) t "In imap-parse-body-ext"))
2527         (push (nreverse dsp) ext))
2528       (when (eq (char-after) ?\ ) ;; body-fld-lang
2529         (imap-forward)
2530         (if (eq (char-after) ?\()
2531             (push (imap-parse-string-list) ext)
2532           (push (imap-parse-nstring) ext))
2533         (while (eq (char-after) ?\ ) ;; body-extension
2534           (imap-forward)
2535           (setq ext (append (imap-parse-body-extension) ext)))))
2536     ext))
2537
2538 ;;   body            = "(" body-type-1part / body-type-mpart ")"
2539 ;;
2540 ;;   body-ext-1part  = body-fld-md5 [SP body-fld-dsp [SP body-fld-lang
2541 ;;                     *(SP body-extension)]]
2542 ;;                       ; MUST NOT be returned on non-extensible
2543 ;;                       ; "BODY" fetch
2544 ;;
2545 ;;   body-ext-mpart  = body-fld-param [SP body-fld-dsp [SP body-fld-lang
2546 ;;                     *(SP body-extension)]]
2547 ;;                       ; MUST NOT be returned on non-extensible
2548 ;;                       ; "BODY" fetch
2549 ;;
2550 ;;   body-fields     = body-fld-param SP body-fld-id SP body-fld-desc SP
2551 ;;                     body-fld-enc SP body-fld-octets
2552 ;;
2553 ;;   body-fld-desc   = nstring
2554 ;;
2555 ;;   body-fld-dsp    = "(" string SP body-fld-param ")" / nil
2556 ;;
2557 ;;   body-fld-enc    = (DQUOTE ("7BIT" / "8BIT" / "BINARY" / "BASE64"/
2558 ;;                     "QUOTED-PRINTABLE") DQUOTE) / string
2559 ;;
2560 ;;   body-fld-id     = nstring
2561 ;;
2562 ;;   body-fld-lang   = nstring / "(" string *(SP string) ")"
2563 ;;
2564 ;;   body-fld-lines  = number
2565 ;;
2566 ;;   body-fld-md5    = nstring
2567 ;;
2568 ;;   body-fld-octets = number
2569 ;;
2570 ;;   body-fld-param  = "(" string SP string *(SP string SP string) ")" / nil
2571 ;;
2572 ;;   body-type-1part = (body-type-basic / body-type-msg / body-type-text)
2573 ;;                     [SP body-ext-1part]
2574 ;;
2575 ;;   body-type-basic = media-basic SP body-fields
2576 ;;                       ; MESSAGE subtype MUST NOT be "RFC822"
2577 ;;
2578 ;;   body-type-msg   = media-message SP body-fields SP envelope
2579 ;;                     SP body SP body-fld-lines
2580 ;;
2581 ;;   body-type-text  = media-text SP body-fields SP body-fld-lines
2582 ;;
2583 ;;   body-type-mpart = 1*body SP media-subtype
2584 ;;                     [SP body-ext-mpart]
2585 ;;
2586 ;;   media-basic     = ((DQUOTE ("APPLICATION" / "AUDIO" / "IMAGE" /
2587 ;;                     "MESSAGE" / "VIDEO") DQUOTE) / string) SP media-subtype
2588 ;;                       ; Defined in [MIME-IMT]
2589 ;;
2590 ;;   media-message   = DQUOTE "MESSAGE" DQUOTE SP DQUOTE "RFC822" DQUOTE
2591 ;;                      ; Defined in [MIME-IMT]
2592 ;;
2593 ;;   media-subtype   = string
2594 ;;                       ; Defined in [MIME-IMT]
2595 ;;
2596 ;;   media-text      = DQUOTE "TEXT" DQUOTE SP media-subtype
2597 ;;                       ; Defined in [MIME-IMT]
2598
2599 (defun imap-parse-body ()
2600   (let (body)
2601     (when (eq (char-after) ?\()
2602       (imap-forward)
2603       (if (eq (char-after) ?\()
2604           (let (subbody)
2605             (while (and (eq (char-after) ?\()
2606                         (setq subbody (imap-parse-body)))
2607              ;; buggy stalker communigate pro 3.0 insert a SPC between
2608               ;; parts in multiparts
2609               (when (and (eq (char-after) ?\ )
2610                          (eq (char-after (1+ (point))) ?\())
2611                 (imap-forward))
2612               (push subbody body))
2613             (imap-forward)
2614             (push (imap-parse-string) body) ;; media-subtype
2615             (when (eq (char-after) ?\ ) ;; body-ext-mpart:
2616               (imap-forward)
2617               (if (eq (char-after) ?\() ;; body-fld-param
2618                   (push (imap-parse-string-list) body)
2619                 (push (and (imap-parse-nil) nil) body))
2620               (setq body
2621                     (append (imap-parse-body-ext) body))) ;; body-ext-...
2622             (assert (eq (char-after) ?\)) t "In imap-parse-body")
2623             (imap-forward)
2624             (nreverse body))
2625
2626         (push (imap-parse-string) body) ;; media-type
2627         (imap-forward)
2628         (push (imap-parse-string) body) ;; media-subtype
2629         (imap-forward)
2630         ;; next line for Sun SIMS bug
2631         (and (eq (char-after) ? ) (imap-forward))
2632         (if (eq (char-after) ?\() ;; body-fld-param
2633             (push (imap-parse-string-list) body)
2634           (push (and (imap-parse-nil) nil) body))
2635         (imap-forward)
2636         (push (imap-parse-nstring) body) ;; body-fld-id
2637         (imap-forward)
2638         (push (imap-parse-nstring) body) ;; body-fld-desc
2639         (imap-forward)
2640         ;; next `or' for Sun SIMS bug, it regard body-fld-enc as a
2641         ;; nstring and return nil instead of defaulting back to 7BIT
2642         ;; as the standard says.
2643         (push (or (imap-parse-nstring) "7BIT") body) ;; body-fld-enc
2644         (imap-forward)
2645         (push (imap-parse-number) body) ;; body-fld-octets
2646
2647    ;; ok, we're done parsing the required parts, what comes now is one
2648         ;; of three things:
2649         ;;
2650         ;; envelope       (then we're parsing body-type-msg)
2651         ;; body-fld-lines (then we're parsing body-type-text)
2652         ;; body-ext-1part (then we're parsing body-type-basic)
2653         ;;
2654   ;; the problem is that the two first are in turn optionally followed
2655 ;; by the third.  So we parse the first two here (if there are any)...
2656
2657         (when (eq (char-after) ?\ )
2658           (imap-forward)
2659           (let (lines)
2660             (cond ((eq (char-after) ?\() ;; body-type-msg:
2661                    (push (imap-parse-envelope) body) ;; envelope
2662                    (imap-forward)
2663                    (push (imap-parse-body) body) ;; body
2664                    ;; buggy stalker communigate pro 3.0 doesn't print
2665                    ;; number of lines in message/rfc822 attachment
2666                    (if (eq (char-after) ?\))
2667                        (push 0 body)
2668                      (imap-forward)
2669                      (push (imap-parse-number) body))) ;; body-fld-lines
2670                   ((setq lines (imap-parse-number)) ;; body-type-text:
2671                    (push lines body)) ;; body-fld-lines
2672                   (t
2673                    (backward-char))))) ;; no match...
2674
2675         ;; ...and then parse the third one here...
2676
2677         (when (eq (char-after) ?\ ) ;; body-ext-1part:
2678           (imap-forward)
2679           (push (imap-parse-nstring) body) ;; body-fld-md5
2680           (setq body (append (imap-parse-body-ext) body))) ;; body-ext-1part..
2681
2682         (assert (eq (char-after) ?\)) t "In imap-parse-body 2")
2683         (imap-forward)
2684         (nreverse body)))))
2685
2686 (when imap-debug                        ; (untrace-all)
2687   (require 'trace)
2688   (buffer-disable-undo (get-buffer-create imap-debug-buffer))
2689   (mapcar (lambda (f) (trace-function-background f imap-debug-buffer))
2690           '(
2691             imap-utf7-encode
2692             imap-utf7-decode
2693             imap-error-text
2694             imap-kerberos4s-p
2695             imap-kerberos4-open
2696             imap-ssl-p
2697             imap-ssl-open
2698             imap-network-p
2699             imap-network-open
2700             imap-interactive-login
2701             imap-kerberos4a-p
2702             imap-kerberos4-auth
2703             imap-cram-md5-p
2704             imap-cram-md5-auth
2705             imap-login-p
2706             imap-login-auth
2707             imap-anonymous-p
2708             imap-anonymous-auth
2709             imap-open-1
2710             imap-open
2711             imap-opened
2712             imap-authenticate
2713             imap-close
2714             imap-capability
2715             imap-namespace
2716             imap-send-command-wait
2717             imap-mailbox-put
2718             imap-mailbox-get
2719             imap-mailbox-map-1
2720             imap-mailbox-map
2721             imap-current-mailbox
2722             imap-current-mailbox-p-1
2723             imap-current-mailbox-p
2724             imap-mailbox-select-1
2725             imap-mailbox-select
2726             imap-mailbox-examine-1
2727             imap-mailbox-examine
2728             imap-mailbox-unselect
2729             imap-mailbox-expunge
2730             imap-mailbox-close
2731             imap-mailbox-create-1
2732             imap-mailbox-create
2733             imap-mailbox-delete
2734             imap-mailbox-rename
2735             imap-mailbox-lsub
2736             imap-mailbox-list
2737             imap-mailbox-subscribe
2738             imap-mailbox-unsubscribe
2739             imap-mailbox-status
2740             imap-mailbox-acl-get
2741             imap-mailbox-acl-set
2742             imap-mailbox-acl-delete
2743             imap-current-message
2744             imap-list-to-message-set
2745             imap-fetch-asynch
2746             imap-fetch
2747             imap-message-put
2748             imap-message-get
2749             imap-message-map
2750             imap-search
2751             imap-message-flag-permanent-p
2752             imap-message-flags-set
2753             imap-message-flags-del
2754             imap-message-flags-add
2755             imap-message-copyuid-1
2756             imap-message-copyuid
2757             imap-message-copy
2758             imap-message-appenduid-1
2759             imap-message-appenduid
2760             imap-message-append
2761             imap-body-lines
2762             imap-envelope-from
2763             imap-send-command-1
2764             imap-send-command
2765             imap-wait-for-tag
2766             imap-sentinel
2767             imap-find-next-line
2768             imap-arrival-filter
2769             imap-parse-greeting
2770             imap-parse-response
2771             imap-parse-resp-text
2772             imap-parse-resp-text-code
2773             imap-parse-data-list
2774             imap-parse-fetch
2775             imap-parse-status
2776             imap-parse-acl
2777             imap-parse-flag-list
2778             imap-parse-envelope
2779             imap-parse-body-extension
2780             imap-parse-body
2781             )))
2782
2783 (provide 'imap)
2784
2785 ;;; imap.el ends here