1 ;;; imap.el --- imap library
3 ;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
6 ;; Author: Simon Josefsson <jas@pdc.kth.se>
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;; imap.el is a elisp library providing an interface for talking to
29 ;; imap.el is roughly divided in two parts, one that parses IMAP
30 ;; responses from the server and storing data into buffer-local
31 ;; variables, and one for utility functions which send commands to
32 ;; server, waits for an answer, and return information. The latter
33 ;; part is layered on top of the previous.
35 ;; The imap.el API consist of the following functions, other functions
36 ;; in this file should not be called directly and the result of doing
37 ;; so are at best undefined.
41 ;; imap-open, imap-opened, imap-authenticate, imap-close,
42 ;; imap-capability, imap-namespace, imap-error-text
46 ;; imap-mailbox-get, imap-mailbox-map, imap-current-mailbox,
47 ;; imap-current-mailbox-p, imap-search, imap-mailbox-select,
48 ;; imap-mailbox-examine, imap-mailbox-unselect, imap-mailbox-expunge
49 ;; imap-mailbox-close, imap-mailbox-create, imap-mailbox-delete
50 ;; imap-mailbox-rename, imap-mailbox-lsub, imap-mailbox-list
51 ;; imap-mailbox-subscribe, imap-mailbox-unsubscribe, imap-mailbox-status
52 ;; imap-mailbox-acl-get, imap-mailbox-acl-set, imap-mailbox-acl-delete
56 ;; imap-fetch-asynch, imap-fetch,
57 ;; imap-current-message, imap-list-to-message-set,
58 ;; imap-message-get, imap-message-map
59 ;; imap-message-envelope-date, imap-message-envelope-subject,
60 ;; imap-message-envelope-from, imap-message-envelope-sender,
61 ;; imap-message-envelope-reply-to, imap-message-envelope-to,
62 ;; imap-message-envelope-cc, imap-message-envelope-bcc
63 ;; imap-message-envelope-in-reply-to, imap-message-envelope-message-id
64 ;; imap-message-body, imap-message-flag-permanent-p
65 ;; imap-message-flags-set, imap-message-flags-del
66 ;; imap-message-flags-add, imap-message-copyuid
67 ;; imap-message-copy, imap-message-appenduid
68 ;; imap-message-append, imap-envelope-from
71 ;; It is my hope that these commands should be pretty self
72 ;; explanatory for someone that know IMAP. All functions have
73 ;; additional documentation on how to invoke them.
75 ;; imap.el support RFC1730/2060/RFC3501 (IMAP4/IMAP4rev1), implemented
76 ;; IMAP extensions are RFC2195 (CRAM-MD5), RFC2086 (ACL), RFC2342
77 ;; (NAMESPACE), RFC2359 (UIDPLUS), the IMAP-part of RFC2595 (STARTTLS,
78 ;; LOGINDISABLED) (with use of external library starttls.el and
79 ;; program starttls), and the GSSAPI / kerberos V4 sections of RFC1731
80 ;; (with use of external program `imtest'), RFC2971 (ID). It also
81 ;; takes advantage of the UNSELECT extension in Cyrus IMAPD.
83 ;; Without the work of John McClary Prevost and Jim Radford this library
84 ;; would not have seen the light of day. Many thanks.
86 ;; This is a transcript of short interactive session for demonstration
89 ;; (imap-open "my.mail.server")
90 ;; => " *imap* my.mail.server:0"
92 ;; The rest are invoked with current buffer as the buffer returned by
93 ;; `imap-open'. It is possible to do all without this, but it would
94 ;; look ugly here since `buffer' is always the last argument for all
95 ;; imap.el API functions.
97 ;; (imap-authenticate "myusername" "mypassword")
100 ;; (imap-mailbox-lsub "*")
101 ;; => ("INBOX.sentmail" "INBOX.private" "INBOX.draft" "INBOX.spam")
103 ;; (imap-mailbox-list "INBOX.n%")
104 ;; => ("INBOX.namedroppers" "INBOX.nnimap" "INBOX.ntbugtraq")
106 ;; (imap-mailbox-select "INBOX.nnimap")
109 ;; (imap-mailbox-get 'exists)
112 ;; (imap-mailbox-get 'uidvalidity)
115 ;; (imap-search "FLAGGED SINCE 18-DEC-98")
118 ;; (imap-fetch 235 "RFC822.PEEK" 'RFC822)
119 ;; => "X-Sieve: cmu-sieve 1.3^M\nX-Username: <jas@pdc.kth.se>^M\r...."
123 ;; o Parse UIDs as strings? We need to overcome the 28 bit limit somehow.
124 ;; o Don't use `read' at all (important places already fixed)
125 ;; o Accept list of articles instead of message set string in most
126 ;; imap-message-* functions.
127 ;; o Send strings as literal if they contain, e.g., ".
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
139 (eval-when-compile (require 'cl
))
141 (unless (fboundp 'declare-function
) (defmacro declare-function
(&rest r
)))
142 (autoload 'starttls-open-stream
"starttls")
143 (autoload 'starttls-negotiate
"starttls")
144 (autoload 'sasl-find-mechanism
"sasl")
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 'utf7-encode
"utf7")
151 (autoload 'utf7-decode
"utf7")
152 (autoload 'format-spec
"format-spec")
153 (autoload 'format-spec-make
"format-spec")
154 (autoload 'open-tls-stream
"tls"))
159 "Low-level IMAP issues."
163 (defcustom imap-kerberos4-program
'("imtest -m kerberos_v4 -u %l -p %p %s"
165 "List of strings containing commands for Kerberos 4 authentication.
166 %s is replaced with server hostname, %p with port to connect to, and
167 %l with the value of `imap-default-user'. The program should accept
168 IMAP commands on stdin and return responses to stdout. Each entry in
169 the list is tried until a successful connection is made."
171 :type
'(repeat string
))
173 (defcustom imap-gssapi-program
(list
174 (concat "gsasl %s %p "
175 "--mechanism GSSAPI "
176 "--authentication-id %l")
177 "imtest -m gssapi -u %l -p %p %s")
178 "List of strings containing commands for GSSAPI (krb5) authentication.
179 %s is replaced with server hostname, %p with port to connect to, and
180 %l with the value of `imap-default-user'. The program should accept
181 IMAP commands on stdin and return responses to stdout. Each entry in
182 the list is tried until a successful connection is made."
184 :type
'(repeat string
))
186 (defcustom imap-ssl-program
'("openssl s_client -quiet -ssl3 -connect %s:%p"
187 "openssl s_client -quiet -ssl2 -connect %s:%p"
188 "s_client -quiet -ssl3 -connect %s:%p"
189 "s_client -quiet -ssl2 -connect %s:%p")
190 "A string, or list of strings, containing commands for SSL connections.
191 Within a string, %s is replaced with the server address and %p with
192 port number on server. The program should accept IMAP commands on
193 stdin and return responses to stdout. Each entry in the list is tried
194 until a successful connection is made."
196 :type
'(choice string
199 (defcustom imap-shell-program
'("ssh %s imapd"
201 "ssh %g ssh %s imapd"
202 "rsh %g rsh %s imapd")
203 "A list of strings, containing commands for IMAP connection.
204 Within a string, %s is replaced with the server address, %p with port
205 number on server, %g with `imap-shell-host', and %l with
206 `imap-default-user'. The program should read IMAP commands from stdin
207 and write IMAP response to stdout. Each entry in the list is tried
208 until a successful connection is made."
210 :type
'(repeat string
))
212 (defcustom imap-process-connection-type nil
213 "*Value for `process-connection-type' to use for Kerberos4, GSSAPI and SSL.
214 The `process-connection-type' variable control type of device
215 used to communicate with subprocesses. Values are nil to use a
216 pipe, or t or `pty' to use a pty. The value has no effect if the
217 system has no ptys or if all ptys are busy: then a pipe is used
218 in any case. The value takes effect when a IMAP server is
219 opened, changing it after that has no effect."
224 (defcustom imap-use-utf7 t
225 "If non-nil, do utf7 encoding/decoding of mailbox names.
226 Since the UTF7 decoding currently only decodes into ISO-8859-1
227 characters, you may disable this decoding if you need to access UTF7
228 encoded mailboxes which doesn't translate into ISO-8859-1."
232 (defcustom imap-log nil
233 "If non-nil, a imap session trace is placed in *imap-log* buffer.
234 Note that username, passwords and other privacy sensitive
235 information (such as e-mail) may be stored in the *imap-log*
236 buffer. It is not written to disk, however. Do not enable this
237 variable unless you are comfortable with that."
241 (defcustom imap-debug nil
242 "If non-nil, random debug spews are placed in *imap-debug* buffer.
243 Note that username, passwords and other privacy sensitive
244 information (such as e-mail) may be stored in the *imap-debug*
245 buffer. It is not written to disk, however. Do not enable this
246 variable unless you are comfortable with that."
250 (defcustom imap-shell-host
"gateway"
251 "Hostname of rlogin proxy."
255 (defcustom imap-default-user
(user-login-name)
256 "Default username to use."
260 (defcustom imap-read-timeout
(if (string-match
261 "windows-nt\\|os/2\\|emx\\|cygwin"
262 (symbol-name system-type
))
265 "*How long to wait between checking for the end of output.
266 Shorter values mean quicker response, but is more CPU intensive."
270 (defcustom imap-store-password nil
271 "If non-nil, store session password without promting."
275 ;; Various variables.
277 (defvar imap-fetch-data-hook nil
278 "Hooks called after receiving each FETCH response.")
280 (defvar imap-streams
'(gssapi kerberos4 starttls tls ssl network shell
)
281 "Priority of streams to consider when opening connection to server.")
283 (defvar imap-stream-alist
284 '((gssapi imap-gssapi-stream-p imap-gssapi-open
)
285 (kerberos4 imap-kerberos4-stream-p imap-kerberos4-open
)
286 (tls imap-tls-p imap-tls-open
)
287 (ssl imap-ssl-p imap-ssl-open
)
288 (network imap-network-p imap-network-open
)
289 (shell imap-shell-p imap-shell-open
)
290 (starttls imap-starttls-p imap-starttls-open
))
291 "Definition of network streams.
295 NAME names the stream, CHECK is a function returning non-nil if the
296 server support the stream and OPEN is a function for opening the
299 (defvar imap-authenticators
'(gssapi
306 "Priority of authenticators to consider when authenticating to server.")
308 (defvar imap-authenticator-alist
309 '((gssapi imap-gssapi-auth-p imap-gssapi-auth
)
310 (kerberos4 imap-kerberos4-auth-p imap-kerberos4-auth
)
311 (sasl imap-sasl-auth-p imap-sasl-auth
)
312 (cram-md5 imap-cram-md5-p imap-cram-md5-auth
)
313 (login imap-login-p imap-login-auth
)
314 (anonymous imap-anonymous-p imap-anonymous-auth
)
315 (digest-md5 imap-digest-md5-p imap-digest-md5-auth
))
316 "Definition of authenticators.
318 \(NAME CHECK AUTHENTICATE)
320 NAME names the authenticator. CHECK is a function returning non-nil if
321 the server support the authenticator and AUTHENTICATE is a function
322 for doing the actual authentication.")
324 (defvar imap-error nil
325 "Error codes from the last command.")
327 (defvar imap-logout-timeout nil
328 "Close server immediately if it can't logout in this number of seconds.
329 If it is nil, never close server until logout completes. Normally,
330 the value of this variable will be bound to a certain value to which
331 an application program that uses this module specifies on a per-server
334 ;; Internal constants. Change these and die.
336 (defconst imap-default-port
143)
337 (defconst imap-default-ssl-port
993)
338 (defconst imap-default-tls-port
993)
339 (defconst imap-default-stream
'network
)
340 (defconst imap-coding-system-for-read
'binary
)
341 (defconst imap-coding-system-for-write
'binary
)
342 (defconst imap-local-variables
'(imap-server
351 imap-current-target-mailbox
361 imap-calculate-literal-size-first
363 (defconst imap-log-buffer
"*imap-log*")
364 (defconst imap-debug-buffer
"*imap-debug*")
366 ;; Internal variables.
368 (defvar imap-stream nil
)
369 (defvar imap-auth nil
)
370 (defvar imap-server nil
)
371 (defvar imap-port nil
)
372 (defvar imap-username nil
)
373 (defvar imap-password nil
)
374 (defvar imap-calculate-literal-size-first nil
)
375 (defvar imap-state
'closed
377 Valid states are `closed', `initial', `nonauth', `auth', `selected'
380 (defvar imap-server-eol
"\r\n"
381 "The EOL string sent from the server.")
383 (defvar imap-client-eol
"\r\n"
384 "The EOL string we send to the server.")
386 (defvar imap-current-mailbox nil
387 "Current mailbox name.")
389 (defvar imap-current-target-mailbox nil
390 "Current target mailbox for COPY and APPEND commands.")
392 (defvar imap-mailbox-data nil
393 "Obarray with mailbox data.")
395 (defvar imap-mailbox-prime
997
396 "Length of imap-mailbox-data.")
398 (defvar imap-current-message nil
399 "Current message number.")
401 (defvar imap-message-data nil
402 "Obarray with message data.")
404 (defvar imap-message-prime
997
405 "Length of imap-message-data.")
407 (defvar imap-capability nil
408 "Capability for server.")
414 (defvar imap-namespace nil
415 "Namespace for current server.")
417 (defvar imap-reached-tag
0
418 "Lower limit on command tags that have been parsed.")
420 (defvar imap-failed-tags nil
421 "Alist of tags that failed.
422 Each element is a list with four elements; tag (a integer), response
423 state (a symbol, `OK', `NO' or `BAD'), response code (a string), and
424 human readable response text (a string).")
427 "Command tag number.")
429 (defvar imap-process nil
432 (defvar imap-continuation nil
433 "Non-nil indicates that the server emitted a continuation request.
434 The actual value is really the text on the continuation line.")
436 (defvar imap-callbacks nil
437 "List of response tags and callbacks, on the form `(number . function)'.
438 The function should take two arguments, the first the IMAP tag and the
439 second the status (OK, NO, BAD etc) of the command.")
441 (defvar imap-enable-exchange-bug-workaround nil
442 "Send FETCH UID commands as *:* instead of *.
443 Enabling this appears to be required for some servers (e.g.,
444 Microsoft Exchange) which otherwise would trigger a response 'BAD
445 The specified message set is invalid.'.")
448 ;; Utility functions:
450 (defun imap-remassoc (key alist
)
451 "Delete by side effect any elements of LIST whose car is `equal' to KEY.
452 The modified LIST is returned. If the first member
453 of LIST has a car that is `equal' to KEY, there is no way to remove it
454 by side effect; therefore, write `(setq foo (remassoc key foo))' to be
455 sure of changing the value of `foo'."
457 (if (equal key
(caar alist
))
459 (setcdr alist
(imap-remassoc key
(cdr alist
)))
462 (defsubst imap-disable-multibyte
()
463 "Enable multibyte in the current buffer."
464 (when (fboundp 'set-buffer-multibyte
)
465 (set-buffer-multibyte nil
)))
467 (defsubst imap-utf7-encode
(string)
471 (utf7-encode string t
)
473 "imap: Could not UTF7 encode `%s', using it unencoded..."
478 (defsubst imap-utf7-decode
(string)
482 (utf7-decode string t
)
484 "imap: Could not UTF7 decode `%s', using it undecoded..."
489 (defsubst imap-ok-p
(status)
492 (setq imap-error status
)
495 (defun imap-error-text (&optional buffer
)
496 (with-current-buffer (or buffer
(current-buffer))
497 (nth 3 (car imap-failed-tags
))))
500 ;; Server functions; stream stuff:
502 (defun imap-kerberos4-stream-p (buffer)
503 (imap-capability 'AUTH
=KERBEROS_V4 buffer
))
505 (defun imap-kerberos4-open (name buffer server port
)
506 (let ((cmds imap-kerberos4-program
)
508 (while (and (not done
) (setq cmd
(pop cmds
)))
509 (message "Opening Kerberos 4 IMAP connection with `%s'..." cmd
)
511 (let* ((port (or port imap-default-port
))
512 (coding-system-for-read imap-coding-system-for-read
)
513 (coding-system-for-write imap-coding-system-for-write
)
514 (process-connection-type imap-process-connection-type
)
515 (process (start-process
516 name buffer shell-file-name shell-command-switch
521 ?p
(number-to-string port
)
522 ?l imap-default-user
))))
525 (with-current-buffer buffer
526 (setq imap-client-eol
"\n"
527 imap-calculate-literal-size-first t
)
528 (while (and (memq (process-status process
) '(open run
))
529 (set-buffer buffer
) ;; XXX "blue moon" nntp.el bug
530 (goto-char (point-min))
531 ;; Athena IMTEST can output SSL verify errors
532 (or (while (looking-at "^verify error:num=")
535 (or (while (looking-at "^TLS connection established")
538 ;; cyrus 1.6.x (13? < x <= 22) queries capabilities
539 (or (while (looking-at "^C:")
542 ;; cyrus 1.6 imtest print "S: " before server greeting
543 (or (not (looking-at "S: "))
546 (not (and (imap-parse-greeting)
547 ;; success in imtest < 1.6:
548 (or (re-search-forward
549 "^__\\(.*\\)__\n" nil t
)
550 ;; success in imtest 1.6:
552 "^\\(Authenticat.*\\)" nil t
))
553 (setq response
(match-string 1)))))
554 (accept-process-output process
1)
557 (with-current-buffer (get-buffer-create imap-log-buffer
)
558 (imap-disable-multibyte)
559 (buffer-disable-undo)
560 (goto-char (point-max))
561 (insert-buffer-substring buffer
)))
563 (message "Opening Kerberos 4 IMAP connection with `%s'...%s" cmd
564 (if response
(concat "done, " response
) "failed"))
565 (if (and response
(let ((case-fold-search nil
))
566 (not (string-match "failed" response
))))
568 (if (memq (process-status process
) '(open run
))
570 (delete-process process
)
574 (defun imap-gssapi-stream-p (buffer)
575 (imap-capability 'AUTH
=GSSAPI buffer
))
577 (defun imap-gssapi-open (name buffer server port
)
578 (let ((cmds imap-gssapi-program
)
580 (while (and (not done
) (setq cmd
(pop cmds
)))
581 (message "Opening GSSAPI IMAP connection with `%s'..." cmd
)
583 (let* ((port (or port imap-default-port
))
584 (coding-system-for-read imap-coding-system-for-read
)
585 (coding-system-for-write imap-coding-system-for-write
)
586 (process-connection-type imap-process-connection-type
)
587 (process (start-process
588 name buffer shell-file-name shell-command-switch
593 ?p
(number-to-string port
)
594 ?l imap-default-user
))))
597 (with-current-buffer buffer
598 (setq imap-client-eol
"\n"
599 imap-calculate-literal-size-first t
)
600 (while (and (memq (process-status process
) '(open run
))
601 (set-buffer buffer
) ;; XXX "blue moon" nntp.el bug
602 (goto-char (point-min))
603 ;; Athena IMTEST can output SSL verify errors
604 (or (while (looking-at "^verify error:num=")
607 (or (while (looking-at "^TLS connection established")
610 ;; cyrus 1.6.x (13? < x <= 22) queries capabilities
611 (or (while (looking-at "^C:")
614 ;; cyrus 1.6 imtest print "S: " before server greeting
615 (or (not (looking-at "S: "))
618 ;; GNU SASL may print 'Trying ...' first.
619 (or (not (looking-at "Trying "))
622 (not (and (imap-parse-greeting)
623 ;; success in imtest 1.6:
625 (concat "^\\(\\(Authenticat.*\\)\\|\\("
626 "Client authentication "
629 (setq response
(match-string 1)))))
630 (accept-process-output process
1)
633 (with-current-buffer (get-buffer-create imap-log-buffer
)
634 (imap-disable-multibyte)
635 (buffer-disable-undo)
636 (goto-char (point-max))
637 (insert-buffer-substring buffer
)))
639 (message "GSSAPI IMAP connection: %s" (or response
"failed"))
640 (if (and response
(let ((case-fold-search nil
))
641 (not (string-match "failed" response
))))
643 (if (memq (process-status process
) '(open run
))
645 (delete-process process
)
649 (defun imap-ssl-p (buffer)
652 (defun imap-ssl-open (name buffer server port
)
653 "Open a SSL connection to server."
654 (let ((cmds (if (listp imap-ssl-program
) imap-ssl-program
655 (list imap-ssl-program
)))
657 (while (and (not done
) (setq cmd
(pop cmds
)))
658 (message "imap: Opening SSL connection with `%s'..." cmd
)
660 (let* ((port (or port imap-default-ssl-port
))
661 (coding-system-for-read imap-coding-system-for-read
)
662 (coding-system-for-write imap-coding-system-for-write
)
663 (process-connection-type imap-process-connection-type
)
664 (set-process-query-on-exit-flag
665 (if (fboundp 'set-process-query-on-exit-flag
)
666 'set-process-query-on-exit-flag
667 'process-kill-without-query
))
670 (setq process
(start-process
671 name buffer shell-file-name
676 ?p
(number-to-string port
)))))
677 (funcall set-process-query-on-exit-flag process nil
)
679 (with-current-buffer buffer
680 (goto-char (point-min))
681 (while (and (memq (process-status process
) '(open run
))
682 (set-buffer buffer
) ;; XXX "blue moon" nntp.el bug
683 (goto-char (point-max))
685 (not (imap-parse-greeting)))
686 (accept-process-output process
1)
689 (with-current-buffer (get-buffer-create imap-log-buffer
)
690 (imap-disable-multibyte)
691 (buffer-disable-undo)
692 (goto-char (point-max))
693 (insert-buffer-substring buffer
)))
695 (when (memq (process-status process
) '(open run
))
696 (setq done process
))))))
699 (message "imap: Opening SSL connection with `%s'...done" cmd
)
701 (message "imap: Opening SSL connection with `%s'...failed" cmd
)
704 (defun imap-tls-p (buffer)
707 (defun imap-tls-open (name buffer server port
)
708 (let* ((port (or port imap-default-tls-port
))
709 (coding-system-for-read imap-coding-system-for-read
)
710 (coding-system-for-write imap-coding-system-for-write
)
711 (process (open-tls-stream name buffer server port
)))
713 (while (and (memq (process-status process
) '(open run
))
714 (set-buffer buffer
) ;; XXX "blue moon" nntp.el bug
715 (goto-char (point-max))
717 (not (imap-parse-greeting)))
718 (accept-process-output process
1)
721 (with-current-buffer (get-buffer-create imap-log-buffer
)
722 (imap-disable-multibyte)
723 (buffer-disable-undo)
724 (goto-char (point-max))
725 (insert-buffer-substring buffer
)))
726 (when (memq (process-status process
) '(open run
))
729 (defun imap-network-p (buffer)
732 (defun imap-network-open (name buffer server port
)
733 (let* ((port (or port imap-default-port
))
734 (coding-system-for-read imap-coding-system-for-read
)
735 (coding-system-for-write imap-coding-system-for-write
)
736 (process (open-network-stream name buffer server port
)))
738 (while (and (memq (process-status process
) '(open run
))
739 (set-buffer buffer
) ;; XXX "blue moon" nntp.el bug
740 (goto-char (point-min))
741 (not (imap-parse-greeting)))
742 (accept-process-output process
1)
745 (with-current-buffer (get-buffer-create imap-log-buffer
)
746 (imap-disable-multibyte)
747 (buffer-disable-undo)
748 (goto-char (point-max))
749 (insert-buffer-substring buffer
)))
750 (when (memq (process-status process
) '(open run
))
753 (defun imap-shell-p (buffer)
756 (defun imap-shell-open (name buffer server port
)
757 (let ((cmds (if (listp imap-shell-program
) imap-shell-program
758 (list imap-shell-program
)))
760 (while (and (not done
) (setq cmd
(pop cmds
)))
761 (message "imap: Opening IMAP connection with `%s'..." cmd
)
762 (setq imap-client-eol
"\n")
763 (let* ((port (or port imap-default-port
))
764 (coding-system-for-read imap-coding-system-for-read
)
765 (coding-system-for-write imap-coding-system-for-write
)
766 (process (start-process
767 name buffer shell-file-name shell-command-switch
773 ?p
(number-to-string port
)
774 ?l imap-default-user
)))))
776 (while (and (memq (process-status process
) '(open run
))
777 (set-buffer buffer
) ;; XXX "blue moon" nntp.el bug
778 (goto-char (point-max))
780 (not (imap-parse-greeting)))
781 (accept-process-output process
1)
784 (with-current-buffer (get-buffer-create imap-log-buffer
)
785 (imap-disable-multibyte)
786 (buffer-disable-undo)
787 (goto-char (point-max))
788 (insert-buffer-substring buffer
)))
790 (when (memq (process-status process
) '(open run
))
791 (setq done process
)))))
794 (message "imap: Opening IMAP connection with `%s'...done" cmd
)
796 (message "imap: Opening IMAP connection with `%s'...failed" cmd
)
799 (defun imap-starttls-p (buffer)
800 (imap-capability 'STARTTLS buffer
))
802 (defun imap-starttls-open (name buffer server port
)
803 (let* ((port (or port imap-default-port
))
804 (coding-system-for-read imap-coding-system-for-read
)
805 (coding-system-for-write imap-coding-system-for-write
)
806 (process (starttls-open-stream name buffer server port
))
808 (message "imap: Connecting with STARTTLS...")
810 (while (and (memq (process-status process
) '(open run
))
811 (set-buffer buffer
) ;; XXX "blue moon" nntp.el bug
812 (goto-char (point-max))
814 (not (imap-parse-greeting)))
815 (accept-process-output process
1)
817 (imap-send-command "STARTTLS")
818 (while (and (memq (process-status process
) '(open run
))
819 (set-buffer buffer
) ;; XXX "blue moon" nntp.el bug
820 (goto-char (point-max))
822 (not (re-search-forward "[0-9]+ OK.*\r?\n" nil t
)))
823 (accept-process-output process
1)
826 (with-current-buffer (get-buffer-create imap-log-buffer
)
827 (buffer-disable-undo)
828 (goto-char (point-max))
829 (insert-buffer-substring buffer
)))
830 (when (and (setq tls-info
(starttls-negotiate process
))
831 (memq (process-status process
) '(open run
)))
832 (setq done process
)))
833 (if (stringp tls-info
)
834 (message "imap: STARTTLS info: %s" tls-info
))
835 (message "imap: Connecting with STARTTLS...%s" (if done
"done" "failed"))
838 ;; Server functions; authenticator stuff:
840 (defun imap-interactive-login (buffer loginfunc
)
841 "Login to server in BUFFER.
842 LOGINFUNC is passed a username and a password, it should return t if
843 it where successful authenticating itself to the server, nil otherwise.
844 Returns t if login was successful, nil otherwise."
845 (with-current-buffer buffer
846 (make-local-variable 'imap-username
)
847 (make-local-variable 'imap-password
)
848 (let (user passwd ret
)
849 ;; (condition-case ()
850 (while (or (not user
) (not passwd
))
851 (setq user
(or imap-username
852 (read-from-minibuffer
853 (concat "IMAP username for " imap-server
854 " (using stream `" (symbol-name imap-stream
)
856 (or user imap-default-user
))))
857 (setq passwd
(or imap-password
859 (concat "IMAP password for " user
"@"
860 imap-server
" (using authenticator `"
861 (symbol-name imap-auth
) "'): "))))
862 (when (and user passwd
)
863 (if (funcall loginfunc user passwd
)
867 (when (and (not imap-password
)
868 (or imap-store-password
869 (y-or-n-p "Store password for this session? ")))
870 (setq imap-password passwd
)))
871 (message "Login failed...")
873 (setq imap-password nil
)
875 ;; (quit (with-current-buffer buffer
878 ;; (error (with-current-buffer buffer
883 (defun imap-gssapi-auth-p (buffer)
884 (eq imap-stream
'gssapi
))
886 (defun imap-gssapi-auth (buffer)
887 (message "imap: Authenticating using GSSAPI...%s"
888 (if (eq imap-stream
'gssapi
) "done" "failed"))
889 (eq imap-stream
'gssapi
))
891 (defun imap-kerberos4-auth-p (buffer)
892 (and (imap-capability 'AUTH
=KERBEROS_V4 buffer
)
893 (eq imap-stream
'kerberos4
)))
895 (defun imap-kerberos4-auth (buffer)
896 (message "imap: Authenticating using Kerberos 4...%s"
897 (if (eq imap-stream
'kerberos4
) "done" "failed"))
898 (eq imap-stream
'kerberos4
))
900 (defun imap-cram-md5-p (buffer)
901 (imap-capability 'AUTH
=CRAM-MD5 buffer
))
903 (defun imap-cram-md5-auth (buffer)
904 "Login to server using the AUTH CRAM-MD5 method."
905 (message "imap: Authenticating using CRAM-MD5...")
906 (let ((done (imap-interactive-login
908 (lambda (user passwd
)
910 (imap-send-command-wait
912 "AUTHENTICATE CRAM-MD5"
914 (let* ((decoded (base64-decode-string challenge
))
915 (hash (rfc2104-hash 'md5
64 16 passwd decoded
))
916 (response (concat user
" " hash
))
917 (encoded (base64-encode-string response
)))
920 (message "imap: Authenticating using CRAM-MD5...done")
921 (message "imap: Authenticating using CRAM-MD5...failed"))))
923 (defun imap-login-p (buffer)
924 (and (not (imap-capability 'LOGINDISABLED buffer
))
925 (not (imap-capability 'X-LOGIN-CMD-DISABLED buffer
))))
927 (defun imap-quote-specials (string)
930 (goto-char (point-min))
931 (while (re-search-forward "[\\\"]" nil t
)
937 (defun imap-login-auth (buffer)
938 "Login to server using the LOGIN command."
939 (message "imap: Plaintext authentication...")
940 (imap-interactive-login buffer
941 (lambda (user passwd
)
942 (imap-ok-p (imap-send-command-wait
944 (imap-quote-specials user
)
946 (imap-quote-specials passwd
)
949 (defun imap-anonymous-p (buffer)
952 (defun imap-anonymous-auth (buffer)
953 (message "imap: Logging in anonymously...")
954 (with-current-buffer buffer
955 (imap-ok-p (imap-send-command-wait
956 (concat "LOGIN anonymous \"" (concat (user-login-name) "@"
957 (system-name)) "\"")))))
959 ;;; Compiler directives.
961 (defvar imap-sasl-client
)
962 (defvar imap-sasl-step
)
964 (defun imap-sasl-make-mechanisms (buffer)
967 (let ((name (symbol-name sym
)))
968 (if (and (> (length name
) 5)
969 (string-equal "AUTH=" (substring name
0 5 )))
970 (setq mecs
(cons (substring name
5) mecs
)))))
971 (imap-capability nil buffer
))
974 (declare-function sasl-find-mechanism
"sasl" (mechanism))
975 (declare-function sasl-mechanism-name
"sasl" (mechanism))
976 (declare-function sasl-make-client
"sasl" (mechanism name service server
))
977 (declare-function sasl-next-step
"sasl" (client step
))
978 (declare-function sasl-step-data
"sasl" (step))
979 (declare-function sasl-step-set-data
"sasl" (step data
))
981 (defun imap-sasl-auth-p (buffer)
982 (and (condition-case ()
985 (sasl-find-mechanism (imap-sasl-make-mechanisms buffer
))))
987 (defun imap-sasl-auth (buffer)
988 "Login to server using the SASL method."
989 (message "imap: Authenticating using SASL...")
990 (with-current-buffer buffer
991 (make-local-variable 'imap-username
)
992 (make-local-variable 'imap-sasl-client
)
993 (make-local-variable 'imap-sasl-step
)
994 (let ((mechanism (sasl-find-mechanism (imap-sasl-make-mechanisms buffer
)))
997 (setq user
(or imap-username
998 (read-from-minibuffer
999 (concat "IMAP username for " imap-server
" using SASL "
1000 (sasl-mechanism-name mechanism
) ": ")
1001 (or user imap-default-user
))))
1003 (setq imap-sasl-client
(sasl-make-client mechanism user
"imap2" imap-server
)
1004 imap-sasl-step
(sasl-next-step imap-sasl-client nil
))
1005 (let ((tag (imap-send-command
1006 (if (sasl-step-data imap-sasl-step
)
1007 (format "AUTHENTICATE %s %s"
1008 (sasl-mechanism-name mechanism
)
1009 (sasl-step-data imap-sasl-step
))
1010 (format "AUTHENTICATE %s" (sasl-mechanism-name mechanism
)))
1012 (while (eq (imap-wait-for-tag tag
) 'INCOMPLETE
)
1013 (sasl-step-set-data imap-sasl-step
(base64-decode-string imap-continuation
))
1014 (setq imap-continuation nil
1015 imap-sasl-step
(sasl-next-step imap-sasl-client imap-sasl-step
))
1016 (imap-send-command-1 (if (sasl-step-data imap-sasl-step
)
1017 (base64-encode-string (sasl-step-data imap-sasl-step
) t
)
1019 (if (imap-ok-p (imap-wait-for-tag tag
))
1020 (setq imap-username user
1022 (message "Login failed...")
1026 (defun imap-digest-md5-p (buffer)
1027 (and (imap-capability 'AUTH
=DIGEST-MD5 buffer
)
1029 (require 'digest-md5
)
1032 (defun imap-digest-md5-auth (buffer)
1033 "Login to server using the AUTH DIGEST-MD5 method."
1034 (message "imap: Authenticating using DIGEST-MD5...")
1035 (imap-interactive-login
1037 (lambda (user passwd
)
1041 "AUTHENTICATE DIGEST-MD5"
1043 (digest-md5-parse-digest-challenge
1044 (base64-decode-string challenge
))
1046 (digest-md5-digest-uri
1047 "imap" (digest-md5-challenge 'realm
)))
1049 (digest-md5-digest-response
1050 user passwd digest-uri
)))
1051 (base64-encode-string response
'no-line-break
))))
1053 (if (not (eq (imap-wait-for-tag tag
) 'INCOMPLETE
))
1055 (setq imap-continuation nil
)
1056 (imap-send-command-1 "")
1057 (imap-ok-p (imap-wait-for-tag tag
)))))))
1059 ;; Server functions:
1061 (defun imap-open-1 (buffer)
1062 (with-current-buffer buffer
1064 (setq imap-current-mailbox nil
1065 imap-current-message nil
1067 imap-process
(condition-case ()
1068 (funcall (nth 2 (assq imap-stream
1070 "imap" buffer imap-server imap-port
)
1071 ((error quit
) nil
)))
1073 (set-process-filter imap-process
'imap-arrival-filter
)
1074 (set-process-sentinel imap-process
'imap-sentinel
)
1075 (while (and (eq imap-state
'initial
)
1076 (memq (process-status imap-process
) '(open run
)))
1077 (message "Waiting for response from %s..." imap-server
)
1078 (accept-process-output imap-process
1))
1079 (message "Waiting for response from %s...done" imap-server
)
1080 (and (memq (process-status imap-process
) '(open run
))
1083 (defun imap-open (server &optional port stream auth buffer
)
1084 "Open a IMAP connection to host SERVER at PORT returning a buffer.
1085 If PORT is unspecified, a default value is used (143 except
1086 for SSL which use 993).
1087 STREAM indicates the stream to use, see `imap-streams' for available
1088 streams. If nil, it choices the best stream the server is capable of.
1089 AUTH indicates authenticator to use, see `imap-authenticators' for
1090 available authenticators. If nil, it choices the best stream the
1091 server is capable of.
1092 BUFFER can be a buffer or a name of a buffer, which is created if
1093 necessary. If nil, the buffer name is generated."
1094 (setq buffer
(or buffer
(format " *imap* %s:%d" server
(or port
0))))
1095 (with-current-buffer (get-buffer-create buffer
)
1096 (if (imap-opened buffer
)
1097 (imap-close buffer
))
1098 (mapc 'make-local-variable imap-local-variables
)
1099 (imap-disable-multibyte)
1100 (buffer-disable-undo)
1101 (setq imap-server
(or server imap-server
))
1102 (setq imap-port
(or port imap-port
))
1103 (setq imap-auth
(or auth imap-auth
))
1104 (setq imap-stream
(or stream imap-stream
))
1105 (message "imap: Connecting to %s..." imap-server
)
1106 (if (null (let ((imap-stream (or imap-stream imap-default-stream
)))
1107 (imap-open-1 buffer
)))
1109 (message "imap: Connecting to %s...failed" imap-server
)
1111 (when (null imap-stream
)
1112 ;; Need to choose stream.
1113 (let ((streams imap-streams
))
1114 (while (setq stream
(pop streams
))
1115 ;; OK to use this stream?
1116 (when (funcall (nth 1 (assq stream imap-stream-alist
)) buffer
)
1118 (if (not (eq imap-default-stream stream
))
1119 (with-current-buffer (get-buffer-create
1120 (generate-new-buffer-name " *temp*"))
1121 (mapc 'make-local-variable imap-local-variables
)
1122 (imap-disable-multibyte)
1123 (buffer-disable-undo)
1124 (setq imap-server
(or server imap-server
))
1125 (setq imap-port
(or port imap-port
))
1126 (setq imap-auth
(or auth imap-auth
))
1127 (message "imap: Reconnecting with stream `%s'..." stream
)
1128 (if (null (let ((imap-stream stream
))
1129 (imap-open-1 (current-buffer))))
1131 (kill-buffer (current-buffer))
1133 "imap: Reconnecting with stream `%s'...failed"
1135 ;; We're done, kill the first connection
1137 (let ((name (if (stringp buffer
)
1139 (buffer-name buffer
))))
1140 (kill-buffer buffer
)
1141 (rename-buffer name
))
1142 (message "imap: Reconnecting with stream `%s'...done"
1144 (setq imap-stream stream
)
1145 (setq imap-capability nil
)
1146 (setq streams nil
)))
1148 (message "imap: Connecting to %s...done" imap-server
)
1149 (setq imap-stream stream
)
1150 (setq imap-capability nil
)
1151 (setq streams nil
))))))
1152 (when (imap-opened buffer
)
1153 (setq imap-mailbox-data
(make-vector imap-mailbox-prime
0)))
1157 (defcustom imap-ping-server t
1158 "If non-nil, check if IMAP is open.
1159 See the function `imap-ping-server'."
1160 :version
"23.1" ;; No Gnus
1164 (defun imap-opened (&optional buffer
)
1165 "Return non-nil if connection to imap server in BUFFER is open.
1166 If BUFFER is nil then the current buffer is used."
1167 (and (setq buffer
(get-buffer (or buffer
(current-buffer))))
1168 (buffer-live-p buffer
)
1169 (with-current-buffer buffer
1171 (memq (process-status imap-process
) '(open run
))
1172 (if imap-ping-server
1176 (defun imap-ping-server (&optional buffer
)
1177 "Ping the IMAP server in BUFFER with a \"NOOP\" command.
1178 Return non-nil if the server responds, and nil if it does not
1179 respond. If BUFFER is nil, the current buffer is used."
1181 (imap-ok-p (imap-send-command-wait "NOOP" buffer
))
1184 (defun imap-authenticate (&optional user passwd buffer
)
1185 "Authenticate to server in BUFFER, using current buffer if nil.
1186 It uses the authenticator specified when opening the server. If the
1187 authenticator requires username/passwords, they are queried from the
1188 user and optionally stored in the buffer. If USER and/or PASSWD is
1189 specified, the user will not be questioned and the username and/or
1190 password is remembered in the buffer."
1191 (with-current-buffer (or buffer
(current-buffer))
1192 (if (not (eq imap-state
'nonauth
))
1193 (or (eq imap-state
'auth
)
1194 (eq imap-state
'selected
)
1195 (eq imap-state
'examine
))
1196 (make-local-variable 'imap-username
)
1197 (make-local-variable 'imap-password
)
1198 (if user
(setq imap-username user
))
1199 (if passwd
(setq imap-password passwd
))
1201 (and (funcall (nth 2 (assq imap-auth
1202 imap-authenticator-alist
)) (current-buffer))
1203 (setq imap-state
'auth
))
1204 ;; Choose authenticator.
1205 (let ((auths imap-authenticators
)
1207 (while (setq auth
(pop auths
))
1208 ;; OK to use authenticator?
1209 (when (funcall (nth 1 (assq auth imap-authenticator-alist
)) (current-buffer))
1210 (message "imap: Authenticating to `%s' using `%s'..."
1212 (setq imap-auth auth
)
1213 (if (funcall (nth 2 (assq auth imap-authenticator-alist
)) (current-buffer))
1215 (message "imap: Authenticating to `%s' using `%s'...done"
1218 (message "imap: Authenticating to `%s' using `%s'...failed"
1219 imap-server auth
)))))
1222 (defun imap-close (&optional buffer
)
1223 "Close connection to server in BUFFER.
1224 If BUFFER is nil, the current buffer is used."
1225 (with-current-buffer (or buffer
(current-buffer))
1230 (when (and imap-process
1231 (memq (process-status imap-process
) '(open run
)))
1232 (delete-process imap-process
))
1233 (setq imap-current-mailbox nil
1234 imap-current-message nil
1239 (defun imap-capability (&optional identifier buffer
)
1240 "Return a list of identifiers which server in BUFFER support.
1241 If IDENTIFIER, return non-nil if it's among the servers capabilities.
1242 If BUFFER is nil, the current buffer is assumed."
1243 (with-current-buffer (or buffer
(current-buffer))
1244 (unless imap-capability
1245 (unless (imap-ok-p (imap-send-command-wait "CAPABILITY"))
1246 (setq imap-capability
'(IMAP2))))
1248 (memq (intern (upcase (symbol-name identifier
))) imap-capability
)
1251 (defun imap-id (&optional list-of-values buffer
)
1252 "Identify client to server in BUFFER, and return server identity.
1253 LIST-OF-VALUES is nil, or a plist with identifier and value
1254 strings to send to the server to identify the client.
1256 Return a list of identifiers which server in BUFFER support, or
1257 nil if it doesn't support ID or returns no information.
1259 If BUFFER is nil, the current buffer is assumed."
1260 (with-current-buffer (or buffer
(current-buffer))
1261 (when (and (imap-capability 'ID
)
1262 (imap-ok-p (imap-send-command-wait
1263 (if (null list-of-values
)
1265 (concat "ID (" (mapconcat (lambda (el)
1266 (concat "\"" el
"\""))
1271 (defun imap-namespace (&optional buffer
)
1272 "Return a namespace hierarchy at server in BUFFER.
1273 If BUFFER is nil, the current buffer is assumed."
1274 (with-current-buffer (or buffer
(current-buffer))
1275 (unless imap-namespace
1276 (when (imap-capability 'NAMESPACE
)
1277 (imap-send-command-wait "NAMESPACE")))
1280 (defun imap-send-command-wait (command &optional buffer
)
1281 (imap-wait-for-tag (imap-send-command command buffer
) buffer
))
1283 (defun imap-logout (&optional buffer
)
1284 (or buffer
(setq buffer
(current-buffer)))
1285 (if imap-logout-timeout
1286 (with-timeout (imap-logout-timeout
1288 (with-current-buffer buffer
1289 (delete-process imap-process
))
1291 (imap-send-command "LOGOUT" buffer
))
1292 (imap-send-command "LOGOUT" buffer
)))
1294 (defun imap-logout-wait (&optional buffer
)
1295 (or buffer
(setq buffer
(current-buffer)))
1296 (if imap-logout-timeout
1297 (with-timeout (imap-logout-timeout
1299 (with-current-buffer buffer
1300 (delete-process imap-process
))
1302 (imap-send-command-wait "LOGOUT" buffer
))
1303 (imap-send-command-wait "LOGOUT" buffer
)))
1306 ;; Mailbox functions:
1308 (defun imap-mailbox-put (propname value
&optional mailbox buffer
)
1309 (with-current-buffer (or buffer
(current-buffer))
1310 (if imap-mailbox-data
1311 (put (intern (or mailbox imap-current-mailbox
) imap-mailbox-data
)
1313 (error "Imap-mailbox-data is nil, prop %s value %s mailbox %s buffer %s"
1314 propname value mailbox
(current-buffer)))
1317 (defsubst imap-mailbox-get-1
(propname &optional mailbox
)
1318 (get (intern-soft (or mailbox imap-current-mailbox
) imap-mailbox-data
)
1321 (defun imap-mailbox-get (propname &optional mailbox buffer
)
1322 (let ((mailbox (imap-utf7-encode mailbox
)))
1323 (with-current-buffer (or buffer
(current-buffer))
1324 (imap-mailbox-get-1 propname
(or mailbox imap-current-mailbox
)))))
1326 (defun imap-mailbox-map-1 (func &optional mailbox-decoder buffer
)
1327 (with-current-buffer (or buffer
(current-buffer))
1331 (push (funcall func
(if mailbox-decoder
1332 (funcall mailbox-decoder
(symbol-name s
))
1333 (symbol-name s
))) result
))
1337 (defun imap-mailbox-map (func &optional buffer
)
1338 "Map a function across each mailbox in `imap-mailbox-data', returning a list.
1339 Function should take a mailbox name (a string) as
1341 (imap-mailbox-map-1 func
'imap-utf7-decode buffer
))
1343 (defun imap-current-mailbox (&optional buffer
)
1344 (with-current-buffer (or buffer
(current-buffer))
1345 (imap-utf7-decode imap-current-mailbox
)))
1347 (defun imap-current-mailbox-p-1 (mailbox &optional examine
)
1348 (and (string= mailbox imap-current-mailbox
)
1350 (eq imap-state
'examine
))
1352 (eq imap-state
'selected
)))))
1354 (defun imap-current-mailbox-p (mailbox &optional examine buffer
)
1355 (with-current-buffer (or buffer
(current-buffer))
1356 (imap-current-mailbox-p-1 (imap-utf7-encode mailbox
) examine
)))
1358 (defun imap-mailbox-select-1 (mailbox &optional examine
)
1359 "Select MAILBOX on server in BUFFER.
1360 If EXAMINE is non-nil, do a read-only select."
1361 (if (imap-current-mailbox-p-1 mailbox examine
)
1362 imap-current-mailbox
1363 (setq imap-current-mailbox mailbox
)
1364 (if (imap-ok-p (imap-send-command-wait
1365 (concat (if examine
"EXAMINE" "SELECT") " \""
1368 (setq imap-message-data
(make-vector imap-message-prime
0)
1369 imap-state
(if examine
'examine
'selected
))
1370 imap-current-mailbox
)
1371 ;; Failed SELECT/EXAMINE unselects current mailbox
1372 (setq imap-current-mailbox nil
))))
1374 (defun imap-mailbox-select (mailbox &optional examine buffer
)
1375 (with-current-buffer (or buffer
(current-buffer))
1377 (imap-mailbox-select-1 (imap-utf7-encode mailbox
) examine
))))
1379 (defun imap-mailbox-examine-1 (mailbox &optional buffer
)
1380 (with-current-buffer (or buffer
(current-buffer))
1381 (imap-mailbox-select-1 mailbox
'examine
)))
1383 (defun imap-mailbox-examine (mailbox &optional buffer
)
1384 "Examine MAILBOX on server in BUFFER."
1385 (imap-mailbox-select mailbox
'examine buffer
))
1387 (defun imap-mailbox-unselect (&optional buffer
)
1388 "Close current folder in BUFFER, without expunging articles."
1389 (with-current-buffer (or buffer
(current-buffer))
1390 (when (or (eq imap-state
'auth
)
1391 (and (imap-capability 'UNSELECT
)
1392 (imap-ok-p (imap-send-command-wait "UNSELECT")))
1394 (imap-send-command-wait (concat "EXAMINE \""
1395 imap-current-mailbox
1397 (imap-ok-p (imap-send-command-wait "CLOSE"))))
1398 (setq imap-current-mailbox nil
1399 imap-message-data nil
1403 (defun imap-mailbox-expunge (&optional asynch buffer
)
1404 "Expunge articles in current folder in BUFFER.
1405 If ASYNCH, do not wait for succesful completion of the command.
1406 If BUFFER is nil the current buffer is assumed."
1407 (with-current-buffer (or buffer
(current-buffer))
1408 (when (and imap-current-mailbox
(not (eq imap-state
'examine
)))
1410 (imap-send-command "EXPUNGE")
1411 (imap-ok-p (imap-send-command-wait "EXPUNGE"))))))
1413 (defun imap-mailbox-close (&optional asynch buffer
)
1414 "Expunge articles and close current folder in BUFFER.
1415 If ASYNCH, do not wait for succesful completion of the command.
1416 If BUFFER is nil the current buffer is assumed."
1417 (with-current-buffer (or buffer
(current-buffer))
1418 (when imap-current-mailbox
1420 (imap-add-callback (imap-send-command "CLOSE")
1421 `(lambda (tag status
)
1422 (message "IMAP mailbox `%s' closed... %s"
1423 imap-current-mailbox status
)
1424 (when (eq ,imap-current-mailbox
1425 imap-current-mailbox
)
1426 ;; Don't wipe out data if another mailbox
1428 (setq imap-current-mailbox nil
1429 imap-message-data nil
1430 imap-state
'auth
))))
1431 (when (imap-ok-p (imap-send-command-wait "CLOSE"))
1432 (setq imap-current-mailbox nil
1433 imap-message-data nil
1437 (defun imap-mailbox-create-1 (mailbox)
1438 (imap-ok-p (imap-send-command-wait (list "CREATE \"" mailbox
"\""))))
1440 (defun imap-mailbox-create (mailbox &optional buffer
)
1441 "Create MAILBOX on server in BUFFER.
1442 If BUFFER is nil the current buffer is assumed."
1443 (with-current-buffer (or buffer
(current-buffer))
1444 (imap-mailbox-create-1 (imap-utf7-encode mailbox
))))
1446 (defun imap-mailbox-delete (mailbox &optional buffer
)
1447 "Delete MAILBOX on server in BUFFER.
1448 If BUFFER is nil the current buffer is assumed."
1449 (let ((mailbox (imap-utf7-encode mailbox
)))
1450 (with-current-buffer (or buffer
(current-buffer))
1452 (imap-send-command-wait (list "DELETE \"" mailbox
"\""))))))
1454 (defun imap-mailbox-rename (oldname newname
&optional buffer
)
1455 "Rename mailbox OLDNAME to NEWNAME on server in BUFFER.
1456 If BUFFER is nil the current buffer is assumed."
1457 (let ((oldname (imap-utf7-encode oldname
))
1458 (newname (imap-utf7-encode newname
)))
1459 (with-current-buffer (or buffer
(current-buffer))
1461 (imap-send-command-wait (list "RENAME \"" oldname
"\" "
1462 "\"" newname
"\""))))))
1464 (defun imap-mailbox-lsub (&optional root reference add-delimiter buffer
)
1465 "Return a list of subscribed mailboxes on server in BUFFER.
1466 If ROOT is non-nil, only list matching mailboxes. If ADD-DELIMITER is
1467 non-nil, a hierarchy delimiter is added to root. REFERENCE is a
1468 implementation-specific string that has to be passed to lsub command."
1469 (with-current-buffer (or buffer
(current-buffer))
1470 ;; Make sure we know the hierarchy separator for root's hierarchy
1471 (when (and add-delimiter
(null (imap-mailbox-get-1 'delimiter root
)))
1472 (imap-send-command-wait (concat "LIST \"" reference
"\" \""
1473 (imap-utf7-encode root
) "\"")))
1474 ;; clear list data (NB not delimiter and other stuff)
1475 (imap-mailbox-map-1 (lambda (mailbox)
1476 (imap-mailbox-put 'lsub nil mailbox
)))
1478 (imap-send-command-wait
1479 (concat "LSUB \"" reference
"\" \"" (imap-utf7-encode root
)
1480 (and add-delimiter
(imap-mailbox-get-1 'delimiter root
))
1483 (imap-mailbox-map-1 (lambda (mailbox)
1484 (when (imap-mailbox-get-1 'lsub mailbox
)
1485 (push (imap-utf7-decode mailbox
) out
))))
1488 (defun imap-mailbox-list (root &optional reference add-delimiter buffer
)
1489 "Return a list of mailboxes matching ROOT on server in BUFFER.
1490 If ADD-DELIMITER is non-nil, a hierarchy delimiter is added to
1491 root. REFERENCE is a implementation-specific string that has to be
1492 passed to list command."
1493 (with-current-buffer (or buffer
(current-buffer))
1494 ;; Make sure we know the hierarchy separator for root's hierarchy
1495 (when (and add-delimiter
(null (imap-mailbox-get-1 'delimiter root
)))
1496 (imap-send-command-wait (concat "LIST \"" reference
"\" \""
1497 (imap-utf7-encode root
) "\"")))
1498 ;; clear list data (NB not delimiter and other stuff)
1499 (imap-mailbox-map-1 (lambda (mailbox)
1500 (imap-mailbox-put 'list nil mailbox
)))
1502 (imap-send-command-wait
1503 (concat "LIST \"" reference
"\" \"" (imap-utf7-encode root
)
1504 (and add-delimiter
(imap-mailbox-get-1 'delimiter root
))
1507 (imap-mailbox-map-1 (lambda (mailbox)
1508 (when (imap-mailbox-get-1 'list mailbox
)
1509 (push (imap-utf7-decode mailbox
) out
))))
1512 (defun imap-mailbox-subscribe (mailbox &optional buffer
)
1513 "Send the SUBSCRIBE command on the mailbox to server in BUFFER.
1514 Returns non-nil if successful."
1515 (with-current-buffer (or buffer
(current-buffer))
1516 (imap-ok-p (imap-send-command-wait (concat "SUBSCRIBE \""
1517 (imap-utf7-encode mailbox
)
1520 (defun imap-mailbox-unsubscribe (mailbox &optional buffer
)
1521 "Send the SUBSCRIBE command on the mailbox to server in BUFFER.
1522 Returns non-nil if successful."
1523 (with-current-buffer (or buffer
(current-buffer))
1524 (imap-ok-p (imap-send-command-wait (concat "UNSUBSCRIBE "
1525 (imap-utf7-encode mailbox
)
1528 (defun imap-mailbox-status (mailbox items
&optional buffer
)
1529 "Get status items ITEM in MAILBOX from server in BUFFER.
1530 ITEMS can be a symbol or a list of symbols, valid symbols are one of
1531 the STATUS data items -- ie 'messages, 'recent, 'uidnext, 'uidvalidity
1532 or 'unseen. If ITEMS is a list of symbols, a list of values is
1533 returned, if ITEMS is a symbol only its value is returned."
1534 (with-current-buffer (or buffer
(current-buffer))
1536 (imap-send-command-wait (list "STATUS \""
1537 (imap-utf7-encode mailbox
)
1545 (mapcar (lambda (item)
1546 (imap-mailbox-get item mailbox
))
1548 (imap-mailbox-get items mailbox
)))))
1550 (defun imap-mailbox-status-asynch (mailbox items
&optional buffer
)
1551 "Send status item request ITEM on MAILBOX to server in BUFFER.
1552 ITEMS can be a symbol or a list of symbols, valid symbols are one of
1553 the STATUS data items -- ie 'messages, 'recent, 'uidnext, 'uidvalidity
1554 or 'unseen. The IMAP command tag is returned."
1555 (with-current-buffer (or buffer
(current-buffer))
1556 (imap-send-command (list "STATUS \""
1557 (imap-utf7-encode mailbox
)
1565 (defun imap-mailbox-acl-get (&optional mailbox buffer
)
1566 "Get ACL on mailbox from server in BUFFER."
1567 (let ((mailbox (imap-utf7-encode mailbox
)))
1568 (with-current-buffer (or buffer
(current-buffer))
1570 (imap-send-command-wait (list "GETACL \""
1571 (or mailbox imap-current-mailbox
)
1573 (imap-mailbox-get-1 'acl
(or mailbox imap-current-mailbox
))))))
1575 (defun imap-mailbox-acl-set (identifier rights
&optional mailbox buffer
)
1576 "Change/set ACL for IDENTIFIER to RIGHTS in MAILBOX from server in BUFFER."
1577 (let ((mailbox (imap-utf7-encode mailbox
)))
1578 (with-current-buffer (or buffer
(current-buffer))
1580 (imap-send-command-wait (list "SETACL \""
1581 (or mailbox imap-current-mailbox
)
1587 (defun imap-mailbox-acl-delete (identifier &optional mailbox buffer
)
1588 "Removes any <identifier,rights> pair for IDENTIFIER in MAILBOX from server in BUFFER."
1589 (let ((mailbox (imap-utf7-encode mailbox
)))
1590 (with-current-buffer (or buffer
(current-buffer))
1592 (imap-send-command-wait (list "DELETEACL \""
1593 (or mailbox imap-current-mailbox
)
1598 ;; Message functions:
1600 (defun imap-current-message (&optional buffer
)
1601 (with-current-buffer (or buffer
(current-buffer))
1602 imap-current-message
))
1604 (defun imap-list-to-message-set (list)
1605 (mapconcat (lambda (item)
1606 (number-to-string item
))
1612 (defun imap-range-to-message-set (range)
1617 (car item
) (cdr item
))
1618 (format "%d" item
)))
1619 (if (and (listp range
) (not (listp (cdr range
))))
1620 (list range
) ;; make (1 . 2) into ((1 . 2))
1624 (defun imap-fetch-asynch (uids props
&optional nouidfetch buffer
)
1625 (with-current-buffer (or buffer
(current-buffer))
1626 (imap-send-command (format "%sFETCH %s %s" (if nouidfetch
"" "UID ")
1628 (imap-list-to-message-set uids
)
1632 (defun imap-fetch (uids props
&optional receive nouidfetch buffer
)
1633 "Fetch properties PROPS from message set UIDS from server in BUFFER.
1634 UIDS can be a string, number or a list of numbers. If RECEIVE
1635 is non-nil return these properties."
1636 (with-current-buffer (or buffer
(current-buffer))
1637 (when (imap-ok-p (imap-send-command-wait
1638 (format "%sFETCH %s %s" (if nouidfetch
"" "UID ")
1640 (imap-list-to-message-set uids
)
1643 (if (or (null receive
) (stringp uids
))
1646 (mapcar (lambda (uid)
1648 (mapcar (lambda (prop)
1649 (imap-message-get uid prop
))
1651 (imap-message-get uid receive
)))
1653 (imap-message-get uids receive
))))))
1655 (defun imap-message-put (uid propname value
&optional buffer
)
1656 (with-current-buffer (or buffer
(current-buffer))
1657 (if imap-message-data
1658 (put (intern (number-to-string uid
) imap-message-data
)
1660 (error "Imap-message-data is nil, uid %s prop %s value %s buffer %s"
1661 uid propname value
(current-buffer)))
1664 (defun imap-message-get (uid propname
&optional buffer
)
1665 (with-current-buffer (or buffer
(current-buffer))
1666 (get (intern-soft (number-to-string uid
) imap-message-data
)
1669 (defun imap-message-map (func propname
&optional buffer
)
1670 "Map a function across each mailbox in `imap-message-data', returning a list."
1671 (with-current-buffer (or buffer
(current-buffer))
1675 (push (funcall func
(get s
'UID
) (get s propname
)) result
))
1679 (defmacro imap-message-envelope-date
(uid &optional buffer
)
1680 `(with-current-buffer (or ,buffer
(current-buffer))
1681 (elt (imap-message-get ,uid
'ENVELOPE
) 0)))
1683 (defmacro imap-message-envelope-subject
(uid &optional buffer
)
1684 `(with-current-buffer (or ,buffer
(current-buffer))
1685 (elt (imap-message-get ,uid
'ENVELOPE
) 1)))
1687 (defmacro imap-message-envelope-from
(uid &optional buffer
)
1688 `(with-current-buffer (or ,buffer
(current-buffer))
1689 (elt (imap-message-get ,uid
'ENVELOPE
) 2)))
1691 (defmacro imap-message-envelope-sender
(uid &optional buffer
)
1692 `(with-current-buffer (or ,buffer
(current-buffer))
1693 (elt (imap-message-get ,uid
'ENVELOPE
) 3)))
1695 (defmacro imap-message-envelope-reply-to
(uid &optional buffer
)
1696 `(with-current-buffer (or ,buffer
(current-buffer))
1697 (elt (imap-message-get ,uid
'ENVELOPE
) 4)))
1699 (defmacro imap-message-envelope-to
(uid &optional buffer
)
1700 `(with-current-buffer (or ,buffer
(current-buffer))
1701 (elt (imap-message-get ,uid
'ENVELOPE
) 5)))
1703 (defmacro imap-message-envelope-cc
(uid &optional buffer
)
1704 `(with-current-buffer (or ,buffer
(current-buffer))
1705 (elt (imap-message-get ,uid
'ENVELOPE
) 6)))
1707 (defmacro imap-message-envelope-bcc
(uid &optional buffer
)
1708 `(with-current-buffer (or ,buffer
(current-buffer))
1709 (elt (imap-message-get ,uid
'ENVELOPE
) 7)))
1711 (defmacro imap-message-envelope-in-reply-to
(uid &optional buffer
)
1712 `(with-current-buffer (or ,buffer
(current-buffer))
1713 (elt (imap-message-get ,uid
'ENVELOPE
) 8)))
1715 (defmacro imap-message-envelope-message-id
(uid &optional buffer
)
1716 `(with-current-buffer (or ,buffer
(current-buffer))
1717 (elt (imap-message-get ,uid
'ENVELOPE
) 9)))
1719 (defmacro imap-message-body
(uid &optional buffer
)
1720 `(with-current-buffer (or ,buffer
(current-buffer))
1721 (imap-message-get ,uid
'BODY
)))
1723 (defun imap-search (predicate &optional buffer
)
1724 (with-current-buffer (or buffer
(current-buffer))
1725 (imap-mailbox-put 'search
'dummy
)
1726 (when (imap-ok-p (imap-send-command-wait (concat "UID SEARCH " predicate
)))
1727 (if (eq (imap-mailbox-get-1 'search imap-current-mailbox
) 'dummy
)
1729 (message "Missing SEARCH response to a SEARCH command (server not RFC compliant)...")
1731 (imap-mailbox-get-1 'search imap-current-mailbox
)))))
1733 (defun imap-message-flag-permanent-p (flag &optional mailbox buffer
)
1734 "Return t if FLAG can be permanently (between IMAP sessions) saved on articles, in MAILBOX on server in BUFFER."
1735 (with-current-buffer (or buffer
(current-buffer))
1736 (or (member "\\*" (imap-mailbox-get 'permanentflags mailbox
))
1737 (member flag
(imap-mailbox-get 'permanentflags mailbox
)))))
1739 (defun imap-message-flags-set (articles flags
&optional silent buffer
)
1740 (when (and articles flags
)
1741 (with-current-buffer (or buffer
(current-buffer))
1742 (imap-ok-p (imap-send-command-wait
1743 (concat "UID STORE " articles
1744 " FLAGS" (if silent
".SILENT") " (" flags
")"))))))
1746 (defun imap-message-flags-del (articles flags
&optional silent buffer
)
1747 (when (and articles flags
)
1748 (with-current-buffer (or buffer
(current-buffer))
1749 (imap-ok-p (imap-send-command-wait
1750 (concat "UID STORE " articles
1751 " -FLAGS" (if silent
".SILENT") " (" flags
")"))))))
1753 (defun imap-message-flags-add (articles flags
&optional silent buffer
)
1754 (when (and articles flags
)
1755 (with-current-buffer (or buffer
(current-buffer))
1756 (imap-ok-p (imap-send-command-wait
1757 (concat "UID STORE " articles
1758 " +FLAGS" (if silent
".SILENT") " (" flags
")"))))))
1760 ;; Cf. http://thread.gmane.org/gmane.emacs.gnus.general/65317/focus=65343
1761 ;; Signal an error if we'd get an integer overflow.
1763 ;; FIXME: Identify relevant calls to `string-to-number' and replace them with
1764 ;; `imap-string-to-integer'.
1765 (defun imap-string-to-integer (string &optional base
)
1766 (let ((number (string-to-number string base
)))
1767 (if (> number most-positive-fixnum
)
1769 (format "String %s cannot be converted to a lisp integer" number
))
1772 (defun imap-message-copyuid-1 (mailbox)
1773 (if (imap-capability 'UIDPLUS
)
1774 (list (nth 0 (imap-mailbox-get-1 'copyuid mailbox
))
1775 (string-to-number (nth 2 (imap-mailbox-get-1 'copyuid mailbox
))))
1776 (let ((old-mailbox imap-current-mailbox
)
1778 (imap-message-data (make-vector 2 0)))
1779 (when (imap-mailbox-examine-1 mailbox
)
1782 (if imap-enable-exchange-bug-workaround
"*:*" "*") "UID")
1783 (list (imap-mailbox-get-1 'uidvalidity mailbox
)
1784 (apply 'max
(imap-message-map
1785 (lambda (uid prop
) uid
) 'UID
))))
1787 (imap-mailbox-select old-mailbox
(eq state
'examine
))
1788 (imap-mailbox-unselect)))))))
1790 (defun imap-message-copyuid (mailbox &optional buffer
)
1791 (with-current-buffer (or buffer
(current-buffer))
1792 (imap-message-copyuid-1 (imap-utf7-decode mailbox
))))
1794 (defun imap-message-copy (articles mailbox
1795 &optional dont-create no-copyuid buffer
)
1796 "Copy ARTICLES (a string message set) to MAILBOX on server in
1797 BUFFER, creating mailbox if it doesn't exist. If dont-create is
1798 non-nil, it will not create a mailbox. On success, return a list with
1799 the UIDVALIDITY of the mailbox the article(s) was copied to as the
1800 first element, rest of list contain the saved articles' UIDs."
1802 (with-current-buffer (or buffer
(current-buffer))
1803 (let ((mailbox (imap-utf7-encode mailbox
)))
1804 (if (let ((cmd (concat "UID COPY " articles
" \"" mailbox
"\""))
1805 (imap-current-target-mailbox mailbox
))
1806 (if (imap-ok-p (imap-send-command-wait cmd
))
1808 (when (and (not dont-create
)
1809 ;; removed because of buggy Oracle server
1810 ;; that doesn't send TRYCREATE tags (which
1811 ;; is a MUST according to specifications):
1812 ;;(imap-mailbox-get-1 'trycreate mailbox)
1813 (imap-mailbox-create-1 mailbox
))
1814 (imap-ok-p (imap-send-command-wait cmd
)))))
1816 (imap-message-copyuid-1 mailbox
)))))))
1818 (defun imap-message-appenduid-1 (mailbox)
1819 (if (imap-capability 'UIDPLUS
)
1820 (imap-mailbox-get-1 'appenduid mailbox
)
1821 (let ((old-mailbox imap-current-mailbox
)
1823 (imap-message-data (make-vector 2 0)))
1824 (when (imap-mailbox-examine-1 mailbox
)
1827 (if imap-enable-exchange-bug-workaround
"*:*" "*") "UID")
1828 (list (imap-mailbox-get-1 'uidvalidity mailbox
)
1829 (apply 'max
(imap-message-map
1830 (lambda (uid prop
) uid
) 'UID
))))
1832 (imap-mailbox-select old-mailbox
(eq state
'examine
))
1833 (imap-mailbox-unselect)))))))
1835 (defun imap-message-appenduid (mailbox &optional buffer
)
1836 (with-current-buffer (or buffer
(current-buffer))
1837 (imap-message-appenduid-1 (imap-utf7-encode mailbox
))))
1839 (defun imap-message-append (mailbox article
&optional flags date-time buffer
)
1840 "Append ARTICLE (a buffer) to MAILBOX on server in BUFFER.
1841 FLAGS and DATE-TIME is currently not used. Return a cons holding
1842 uidvalidity of MAILBOX and UID the newly created article got, or nil
1844 (let ((mailbox (imap-utf7-encode mailbox
)))
1845 (with-current-buffer (or buffer
(current-buffer))
1846 (and (let ((imap-current-target-mailbox mailbox
))
1848 (imap-send-command-wait
1849 (list "APPEND \"" mailbox
"\" " article
))))
1850 (imap-message-appenduid-1 mailbox
)))))
1852 (defun imap-body-lines (body)
1853 "Return number of lines in article by looking at the mime bodystructure BODY."
1855 (if (stringp (car body
))
1856 (cond ((and (string= (upcase (car body
)) "TEXT")
1857 (numberp (nth 7 body
)))
1859 ((and (string= (upcase (car body
)) "MESSAGE")
1860 (numberp (nth 9 body
)))
1863 (apply '+ (mapcar 'imap-body-lines body
)))
1866 (defun imap-envelope-from (from)
1867 "Return a from string line."
1869 (concat (aref from
0)
1870 (if (aref from
0) " <")
1874 (if (aref from
0) ">"))))
1877 ;; Internal functions.
1879 (defun imap-add-callback (tag func
)
1880 (setq imap-callbacks
(append (list (cons tag func
)) imap-callbacks
)))
1882 (defun imap-send-command-1 (cmdstr)
1883 (setq cmdstr
(concat cmdstr imap-client-eol
))
1885 (with-current-buffer (get-buffer-create imap-log-buffer
)
1886 (imap-disable-multibyte)
1887 (buffer-disable-undo)
1888 (goto-char (point-max))
1890 (process-send-string imap-process cmdstr
))
1892 (defun imap-send-command (command &optional buffer
)
1893 (with-current-buffer (or buffer
(current-buffer))
1894 (if (not (listp command
)) (setq command
(list command
)))
1895 (let ((tag (setq imap-tag
(1+ imap-tag
)))
1897 (setq cmdstr
(concat (number-to-string imap-tag
) " "))
1898 (while (setq cmd
(pop command
))
1899 (cond ((stringp cmd
)
1900 (setq cmdstr
(concat cmdstr cmd
)))
1902 (let ((eol imap-client-eol
)
1903 (calcfirst imap-calculate-literal-size-first
)
1905 (with-current-buffer cmd
1907 (setq size
(buffer-size)))
1908 (when (not (equal eol
"\r\n"))
1909 ;; XXX modifies buffer!
1910 (goto-char (point-min))
1911 (while (search-forward "\r\n" nil t
)
1912 (replace-match eol
)))
1914 (setq size
(buffer-size))))
1916 (concat cmdstr
(format "{%d}" size
))))
1919 (imap-send-command-1 cmdstr
)
1921 (if (not (eq (imap-wait-for-tag tag
) 'INCOMPLETE
))
1922 (setq command nil
) ;; abort command if no cont-req
1923 (let ((process imap-process
)
1924 (stream imap-stream
)
1925 (eol imap-client-eol
))
1926 (with-current-buffer cmd
1928 (with-current-buffer (get-buffer-create
1930 (imap-disable-multibyte)
1931 (buffer-disable-undo)
1932 (goto-char (point-max))
1933 (insert-buffer-substring cmd
)))
1934 (process-send-region process
(point-min)
1936 (process-send-string process imap-client-eol
))))
1937 (setq imap-continuation nil
)))
1939 (imap-send-command-1 cmdstr
)
1942 (if (not (eq (imap-wait-for-tag tag
) 'INCOMPLETE
))
1943 (setq command nil
) ;; abort command if no cont-req
1944 (setq command
(cons (funcall cmd imap-continuation
)
1946 (setq imap-continuation nil
)))
1948 (error "Unknown command type"))))
1950 (imap-send-command-1 cmdstr
))
1953 (defun imap-wait-for-tag (tag &optional buffer
)
1954 (with-current-buffer (or buffer
(current-buffer))
1955 (let (imap-have-messaged)
1956 (while (and (null imap-continuation
)
1957 (memq (process-status imap-process
) '(open run
))
1958 (< imap-reached-tag tag
))
1959 (let ((len (/ (point-max) 1024))
1962 (setq imap-have-messaged t
)
1963 (message "imap read: %dk" len
))
1964 (accept-process-output imap-process
1965 (truncate imap-read-timeout
)
1966 (truncate (* (- imap-read-timeout
1967 (truncate imap-read-timeout
))
1969 ;; A process can die _before_ we have processed everything it
1970 ;; has to say. Moreover, this can happen in between the call to
1971 ;; accept-process-output and the call to process-status in an
1972 ;; iteration of the loop above.
1973 (when (and (null imap-continuation
)
1974 (< imap-reached-tag tag
))
1975 (accept-process-output imap-process
0 0))
1976 (when imap-have-messaged
1978 (and (memq (process-status imap-process
) '(open run
))
1979 (or (assq tag imap-failed-tags
)
1980 (if imap-continuation
1984 (defun imap-sentinel (process string
)
1985 (delete-process process
))
1987 (defun imap-find-next-line ()
1988 "Return point at end of current line, taking into account literals.
1989 Return nil if no complete line has arrived."
1990 (when (re-search-forward (concat imap-server-eol
"\\|{\\([0-9]+\\)}"
1993 (if (match-string 1)
1994 (if (< (point-max) (+ (point) (string-to-number (match-string 1))))
1996 (goto-char (+ (point) (string-to-number (match-string 1))))
1997 (imap-find-next-line))
2000 (defun imap-arrival-filter (proc string
)
2001 "IMAP process filter."
2002 ;; Sometimes, we are called even though the process has died.
2003 ;; Better abstain from doing stuff in that case.
2004 (when (buffer-name (process-buffer proc
))
2005 (with-current-buffer (process-buffer proc
)
2006 (goto-char (point-max))
2009 (with-current-buffer (get-buffer-create imap-log-buffer
)
2010 (imap-disable-multibyte)
2011 (buffer-disable-undo)
2012 (goto-char (point-max))
2015 (goto-char (point-min))
2016 (while (setq end
(imap-find-next-line))
2018 (narrow-to-region (point-min) end
)
2019 (delete-backward-char (length imap-server-eol
))
2020 (goto-char (point-min))
2022 (cond ((eq imap-state
'initial
)
2023 (imap-parse-greeting))
2024 ((or (eq imap-state
'auth
)
2025 (eq imap-state
'nonauth
)
2026 (eq imap-state
'selected
)
2027 (eq imap-state
'examine
))
2028 (imap-parse-response))
2030 (message "Unknown state %s in arrival filter"
2032 (delete-region (point-min) (point-max)))))))))
2037 (defsubst imap-forward
()
2038 (or (eobp) (forward-char)))
2041 ;; ; Unsigned 32-bit integer
2042 ;; ; (0 <= n < 4,294,967,296)
2044 (defsubst imap-parse-number
()
2045 (when (looking-at "[0-9]+")
2047 (string-to-number (match-string 0))
2048 (goto-char (match-end 0)))))
2050 ;; literal = "{" number "}" CRLF *CHAR8
2051 ;; ; Number represents the number of CHAR8s
2053 (defsubst imap-parse-literal
()
2054 (when (looking-at "{\\([0-9]+\\)}\r\n")
2055 (let ((pos (match-end 0))
2056 (len (string-to-number (match-string 1))))
2057 (if (< (point-max) (+ pos len
))
2059 (goto-char (+ pos len
))
2060 (buffer-substring pos
(+ pos len
))))))
2062 ;; string = quoted / literal
2064 ;; quoted = DQUOTE *QUOTED-CHAR DQUOTE
2066 ;; QUOTED-CHAR = <any TEXT-CHAR except quoted-specials> /
2067 ;; "\" quoted-specials
2069 ;; quoted-specials = DQUOTE / "\"
2071 ;; TEXT-CHAR = <any CHAR except CR and LF>
2073 (defsubst imap-parse-string
()
2074 (cond ((eq (char-after) ?
\")
2076 (let ((p (point)) (name ""))
2077 (skip-chars-forward "^\"\\\\")
2078 (setq name
(buffer-substring p
(point)))
2079 (while (eq (char-after) ?
\\)
2080 (setq p
(1+ (point)))
2082 (skip-chars-forward "^\"\\\\")
2083 (setq name
(concat name
(buffer-substring p
(point)))))
2086 ((eq (char-after) ?
{)
2087 (imap-parse-literal))))
2091 (defsubst imap-parse-nil
()
2092 (if (looking-at "NIL")
2093 (goto-char (match-end 0))))
2095 ;; nstring = string / nil
2097 (defsubst imap-parse-nstring
()
2098 (or (imap-parse-string)
2099 (and (imap-parse-nil)
2102 ;; astring = atom / string
2104 ;; atom = 1*ATOM-CHAR
2106 ;; ATOM-CHAR = <any CHAR except atom-specials>
2108 ;; atom-specials = "(" / ")" / "{" / SP / CTL / list-wildcards /
2111 ;; list-wildcards = "%" / "*"
2113 ;; quoted-specials = DQUOTE / "\"
2115 (defsubst imap-parse-astring
()
2116 (or (imap-parse-string)
2117 (buffer-substring (point)
2118 (if (re-search-forward "[(){ \r\n%*\"\\]" nil t
)
2119 (goto-char (1- (match-end 0)))
2123 ;; address = "(" addr-name SP addr-adl SP addr-mailbox SP
2126 ;; addr-adl = nstring
2127 ;; ; Holds route from [RFC-822] route-addr if
2130 ;; addr-host = nstring
2131 ;; ; nil indicates [RFC-822] group syntax.
2132 ;; ; Otherwise, holds [RFC-822] domain name
2134 ;; addr-mailbox = nstring
2135 ;; ; nil indicates end of [RFC-822] group; if
2136 ;; ; non-nil and addr-host is nil, holds
2137 ;; ; [RFC-822] group name.
2138 ;; ; Otherwise, holds [RFC-822] local-part
2139 ;; ; after removing [RFC-822] quoting
2141 ;; addr-name = nstring
2142 ;; ; If non-nil, holds phrase from [RFC-822]
2143 ;; ; mailbox after removing [RFC-822] quoting
2146 (defsubst imap-parse-address
()
2148 (when (eq (char-after) ?\
()
2150 (setq address
(vector (prog1 (imap-parse-nstring)
2152 (prog1 (imap-parse-nstring)
2154 (prog1 (imap-parse-nstring)
2156 (imap-parse-nstring)))
2157 (when (eq (char-after) ?\
))
2161 ;; address-list = "(" 1*address ")" / nil
2165 (defsubst imap-parse-address-list
()
2166 (if (eq (char-after) ?\
()
2167 (let (address addresses
)
2169 (while (and (not (eq (char-after) ?\
)))
2170 ;; next line for MS Exchange bug
2171 (progn (and (eq (char-after) ?
) (imap-forward)) t
)
2172 (setq address
(imap-parse-address)))
2173 (setq addresses
(cons address addresses
)))
2174 (when (eq (char-after) ?\
))
2176 (nreverse addresses
)))
2177 ;; With assert, the code might not be eval'd.
2178 ;; (assert (imap-parse-nil) t "In imap-parse-address-list")
2181 ;; mailbox = "INBOX" / astring
2182 ;; ; INBOX is case-insensitive. All case variants of
2183 ;; ; INBOX (e.g. "iNbOx") MUST be interpreted as INBOX
2184 ;; ; not as an astring. An astring which consists of
2185 ;; ; the case-insensitive sequence "I" "N" "B" "O" "X"
2186 ;; ; is considered to be INBOX and not an astring.
2187 ;; ; Refer to section 5.1 for further
2188 ;; ; semantic details of mailbox names.
2190 (defsubst imap-parse-mailbox
()
2191 (let ((mailbox (imap-parse-astring)))
2192 (if (string-equal "INBOX" (upcase mailbox
))
2196 ;; greeting = "*" SP (resp-cond-auth / resp-cond-bye) CRLF
2198 ;; resp-cond-auth = ("OK" / "PREAUTH") SP resp-text
2199 ;; ; Authentication condition
2201 ;; resp-cond-bye = "BYE" SP resp-text
2203 (defun imap-parse-greeting ()
2204 "Parse a IMAP greeting."
2205 (cond ((looking-at "\\* OK ")
2206 (setq imap-state
'nonauth
))
2207 ((looking-at "\\* PREAUTH ")
2208 (setq imap-state
'auth
))
2209 ((looking-at "\\* BYE ")
2210 (setq imap-state
'closed
))))
2212 ;; response = *(continue-req / response-data) response-done
2214 ;; continue-req = "+" SP (resp-text / base64) CRLF
2216 ;; response-data = "*" SP (resp-cond-state / resp-cond-bye /
2217 ;; mailbox-data / message-data / capability-data) CRLF
2219 ;; response-done = response-tagged / response-fatal
2221 ;; response-fatal = "*" SP resp-cond-bye CRLF
2222 ;; ; Server closes connection immediately
2224 ;; response-tagged = tag SP resp-cond-state CRLF
2226 ;; resp-cond-state = ("OK" / "NO" / "BAD") SP resp-text
2227 ;; ; Status condition
2229 ;; resp-cond-bye = "BYE" SP resp-text
2231 ;; mailbox-data = "FLAGS" SP flag-list /
2232 ;; "LIST" SP mailbox-list /
2233 ;; "LSUB" SP mailbox-list /
2234 ;; "SEARCH" *(SP nz-number) /
2235 ;; "STATUS" SP mailbox SP "("
2236 ;; [status-att SP number *(SP status-att SP number)] ")" /
2237 ;; number SP "EXISTS" /
2238 ;; number SP "RECENT"
2240 ;; message-data = nz-number SP ("EXPUNGE" / ("FETCH" SP msg-att))
2242 ;; capability-data = "CAPABILITY" *(SP capability) SP "IMAP4rev1"
2244 ;; ; IMAP4rev1 servers which offer RFC 1730
2245 ;; ; compatibility MUST list "IMAP4" as the first
2248 (defun imap-parse-response ()
2249 "Parse a IMAP command response."
2251 (case (setq token
(read (current-buffer)))
2252 (+ (setq imap-continuation
2253 (or (buffer-substring (min (point-max) (1+ (point)))
2256 (* (case (prog1 (setq token
(read (current-buffer)))
2258 (OK (imap-parse-resp-text))
2259 (NO (imap-parse-resp-text))
2260 (BAD (imap-parse-resp-text))
2261 (BYE (imap-parse-resp-text))
2262 (FLAGS (imap-mailbox-put 'flags
(imap-parse-flag-list)))
2263 (LIST (imap-parse-data-list 'list
))
2264 (LSUB (imap-parse-data-list 'lsub
))
2265 (SEARCH (imap-mailbox-put
2267 (read (concat "(" (buffer-substring (point) (point-max)) ")"))))
2268 (STATUS (imap-parse-status))
2269 (CAPABILITY (setq imap-capability
2270 (read (concat "(" (upcase (buffer-substring
2271 (point) (point-max)))
2273 (ID (setq imap-id
(read (buffer-substring (point)
2275 (ACL (imap-parse-acl))
2276 (t (case (prog1 (read (current-buffer))
2278 (EXISTS (imap-mailbox-put 'exists token
))
2279 (RECENT (imap-mailbox-put 'recent token
))
2281 (FETCH (imap-parse-fetch token
))
2282 (t (message "Garbage: %s" (buffer-string)))))))
2284 (if (not (integerp token
))
2285 (message "Garbage: %s" (buffer-string))
2286 (case (prog1 (setq status
(read (current-buffer)))
2289 (setq imap-reached-tag
(max imap-reached-tag token
))
2290 (imap-parse-resp-text)))
2292 (setq imap-reached-tag
(max imap-reached-tag token
))
2294 (imap-parse-resp-text))
2296 (when (eq (char-after) ?\
[)
2297 (setq code
(buffer-substring (point)
2298 (search-forward "]")))
2300 (setq text
(buffer-substring (point) (point-max)))
2301 (push (list token status code text
)
2302 imap-failed-tags
))))
2304 (setq imap-reached-tag
(max imap-reached-tag token
))
2306 (imap-parse-resp-text))
2308 (when (eq (char-after) ?\
[)
2309 (setq code
(buffer-substring (point)
2310 (search-forward "]")))
2312 (setq text
(buffer-substring (point) (point-max)))
2313 (push (list token status code text
) imap-failed-tags
)
2314 (error "Internal error, tag %s status %s code %s text %s"
2315 token status code text
))))
2316 (t (message "Garbage: %s" (buffer-string))))
2317 (when (assq token imap-callbacks
)
2318 (funcall (cdr (assq token imap-callbacks
)) token status
)
2319 (setq imap-callbacks
2320 (imap-remassoc token imap-callbacks
)))))))))
2322 ;; resp-text = ["[" resp-text-code "]" SP] text
2324 ;; text = 1*TEXT-CHAR
2326 ;; TEXT-CHAR = <any CHAR except CR and LF>
2328 (defun imap-parse-resp-text ()
2329 (imap-parse-resp-text-code))
2331 ;; resp-text-code = "ALERT" /
2332 ;; "BADCHARSET [SP "(" astring *(SP astring) ")" ] /
2333 ;; "NEWNAME" SP string SP string /
2335 ;; "PERMANENTFLAGS" SP "("
2336 ;; [flag-perm *(SP flag-perm)] ")" /
2340 ;; "UIDNEXT" SP nz-number /
2341 ;; "UIDVALIDITY" SP nz-number /
2342 ;; "UNSEEN" SP nz-number /
2343 ;; resp-text-atom [SP 1*<any TEXT-CHAR except "]">]
2345 ;; resp_code_apnd = "APPENDUID" SPACE nz_number SPACE uniqueid
2347 ;; resp_code_copy = "COPYUID" SPACE nz_number SPACE set SPACE set
2349 ;; set = sequence-num / (sequence-num ":" sequence-num) /
2351 ;; ; Identifies a set of messages. For message
2352 ;; ; sequence numbers, these are consecutive
2353 ;; ; numbers from 1 to the number of messages in
2355 ;; ; Comma delimits individual numbers, colon
2356 ;; ; delimits between two numbers inclusive.
2357 ;; ; Example: 2,4:7,9,12:* is 2,4,5,6,7,9,12,13,
2358 ;; ; 14,15 for a mailbox with 15 messages.
2360 ;; sequence-num = nz-number / "*"
2361 ;; ; * is the largest number in use. For message
2362 ;; ; sequence numbers, it is the number of messages
2363 ;; ; in the mailbox. For unique identifiers, it is
2364 ;; ; the unique identifier of the last message in
2367 ;; flag-perm = flag / "\*"
2369 ;; flag = "\Answered" / "\Flagged" / "\Deleted" /
2370 ;; "\Seen" / "\Draft" / flag-keyword / flag-extension
2371 ;; ; Does not include "\Recent"
2373 ;; flag-extension = "\" atom
2374 ;; ; Future expansion. Client implementations
2375 ;; ; MUST accept flag-extension flags. Server
2376 ;; ; implementations MUST NOT generate
2377 ;; ; flag-extension flags except as defined by
2378 ;; ; future standard or standards-track
2379 ;; ; revisions of this specification.
2381 ;; flag-keyword = atom
2383 ;; resp-text-atom = 1*<any ATOM-CHAR except "]">
2385 (defun imap-parse-resp-text-code ()
2386 ;; xxx next line for stalker communigate pro 3.3.1 bug
2387 (when (looking-at " \\[")
2389 (when (eq (char-after) ?\
[)
2391 (cond ((search-forward "PERMANENTFLAGS " nil t
)
2392 (imap-mailbox-put 'permanentflags
(imap-parse-flag-list)))
2393 ((search-forward "UIDNEXT \\([0-9]+\\)" nil t
)
2394 (imap-mailbox-put 'uidnext
(match-string 1)))
2395 ((search-forward "UNSEEN " nil t
)
2396 (imap-mailbox-put 'first-unseen
(read (current-buffer))))
2397 ((looking-at "UIDVALIDITY \\([0-9]+\\)")
2398 (imap-mailbox-put 'uidvalidity
(match-string 1)))
2399 ((search-forward "READ-ONLY" nil t
)
2400 (imap-mailbox-put 'read-only t
))
2401 ((search-forward "NEWNAME " nil t
)
2402 (let (oldname newname
)
2403 (setq oldname
(imap-parse-string))
2405 (setq newname
(imap-parse-string))
2406 (imap-mailbox-put 'newname newname oldname
)))
2407 ((search-forward "TRYCREATE" nil t
)
2408 (imap-mailbox-put 'trycreate t imap-current-target-mailbox
))
2409 ((looking-at "APPENDUID \\([0-9]+\\) \\([0-9]+\\)")
2410 (imap-mailbox-put 'appenduid
2411 (list (match-string 1)
2412 (string-to-number (match-string 2)))
2413 imap-current-target-mailbox
))
2414 ((looking-at "COPYUID \\([0-9]+\\) \\([0-9,:]+\\) \\([0-9,:]+\\)")
2415 (imap-mailbox-put 'copyuid
(list (match-string 1)
2418 imap-current-target-mailbox
))
2419 ((search-forward "ALERT] " nil t
)
2420 (message "Imap server %s information: %s" imap-server
2421 (buffer-substring (point) (point-max)))))))
2423 ;; mailbox-list = "(" [mbx-list-flags] ")" SP
2424 ;; (DQUOTE QUOTED-CHAR DQUOTE / nil) SP mailbox
2426 ;; mbx-list-flags = *(mbx-list-oflag SP) mbx-list-sflag
2427 ;; *(SP mbx-list-oflag) /
2428 ;; mbx-list-oflag *(SP mbx-list-oflag)
2430 ;; mbx-list-oflag = "\Noinferiors" / flag-extension
2431 ;; ; Other flags; multiple possible per LIST response
2433 ;; mbx-list-sflag = "\Noselect" / "\Marked" / "\Unmarked"
2434 ;; ; Selectability flags; only one per LIST response
2436 ;; QUOTED-CHAR = <any TEXT-CHAR except quoted-specials> /
2437 ;; "\" quoted-specials
2439 ;; quoted-specials = DQUOTE / "\"
2441 (defun imap-parse-data-list (type)
2442 (let (flags delimiter mailbox
)
2443 (setq flags
(imap-parse-flag-list))
2444 (when (looking-at " NIL\\| \"\\\\?\\(.\\)\"")
2445 (setq delimiter
(match-string 1))
2446 (goto-char (1+ (match-end 0)))
2447 (when (setq mailbox
(imap-parse-mailbox))
2448 (imap-mailbox-put type t mailbox
)
2449 (imap-mailbox-put 'list-flags flags mailbox
)
2450 (imap-mailbox-put 'delimiter delimiter mailbox
)))))
2452 ;; msg_att ::= "(" 1#("ENVELOPE" SPACE envelope /
2453 ;; "FLAGS" SPACE "(" #(flag / "\Recent") ")" /
2454 ;; "INTERNALDATE" SPACE date_time /
2455 ;; "RFC822" [".HEADER" / ".TEXT"] SPACE nstring /
2456 ;; "RFC822.SIZE" SPACE number /
2457 ;; "BODY" ["STRUCTURE"] SPACE body /
2458 ;; "BODY" section ["<" number ">"] SPACE nstring /
2459 ;; "UID" SPACE uniqueid) ")"
2461 ;; date_time ::= <"> date_day_fixed "-" date_month "-" date_year
2462 ;; SPACE time SPACE zone <">
2464 ;; section ::= "[" [section_text / (nz_number *["." nz_number]
2465 ;; ["." (section_text / "MIME")])] "]"
2467 ;; section_text ::= "HEADER" / "HEADER.FIELDS" [".NOT"]
2468 ;; SPACE header_list / "TEXT"
2470 ;; header_fld_name ::= astring
2472 ;; header_list ::= "(" 1#header_fld_name ")"
2474 (defsubst imap-parse-header-list
()
2475 (when (eq (char-after) ?\
()
2477 (while (not (eq (char-after) ?\
)))
2479 (push (imap-parse-astring) strlist
))
2481 (nreverse strlist
))))
2483 (defsubst imap-parse-fetch-body-section
()
2485 (buffer-substring (point) (1- (re-search-forward "[] ]" nil t
)))))
2486 (if (eq (char-before) ?
)
2488 (mapconcat 'identity
(cons section
(imap-parse-header-list)) " ")
2489 (search-forward "]" nil t
))
2492 (defun imap-parse-fetch (response)
2493 (when (eq (char-after) ?\
()
2494 (let (uid flags envelope internaldate rfc822 rfc822header rfc822text
2495 rfc822size body bodydetail bodystructure flags-empty
)
2496 ;; Courier can insert spurious blank characters which will
2497 ;; confuse `read', so skip past them.
2498 (while (let ((moved (skip-chars-forward " \t")))
2499 (prog1 (not (eq (char-after) ?\
)))
2500 (unless (= moved
0) (backward-char))))
2502 (let ((token (read (current-buffer))))
2504 (cond ((eq token
'UID
)
2505 (setq uid
(condition-case ()
2506 (read (current-buffer))
2509 (setq flags
(imap-parse-flag-list))
2511 (setq flags-empty
't
)))
2512 ((eq token
'ENVELOPE
)
2513 (setq envelope
(imap-parse-envelope)))
2514 ((eq token
'INTERNALDATE
)
2515 (setq internaldate
(imap-parse-string)))
2517 (setq rfc822
(imap-parse-nstring)))
2518 ((eq token
'RFC822.HEADER
)
2519 (setq rfc822header
(imap-parse-nstring)))
2520 ((eq token
'RFC822.TEXT
)
2521 (setq rfc822text
(imap-parse-nstring)))
2522 ((eq token
'RFC822.SIZE
)
2523 (setq rfc822size
(read (current-buffer))))
2525 (if (eq (char-before) ?\
[)
2527 (upcase (imap-parse-fetch-body-section))
2528 (and (eq (char-after) ?
<)
2529 (buffer-substring (1+ (point))
2530 (search-forward ">" nil t
)))
2531 (progn (imap-forward)
2532 (imap-parse-nstring)))
2534 (setq body
(imap-parse-body))))
2535 ((eq token
'BODYSTRUCTURE
)
2536 (setq bodystructure
(imap-parse-body))))))
2538 (setq imap-current-message uid
)
2539 (imap-message-put uid
'UID uid
)
2540 (and (or flags flags-empty
) (imap-message-put uid
'FLAGS flags
))
2541 (and envelope
(imap-message-put uid
'ENVELOPE envelope
))
2542 (and internaldate
(imap-message-put uid
'INTERNALDATE internaldate
))
2543 (and rfc822
(imap-message-put uid
'RFC822 rfc822
))
2544 (and rfc822header
(imap-message-put uid
'RFC822.HEADER rfc822header
))
2545 (and rfc822text
(imap-message-put uid
'RFC822.TEXT rfc822text
))
2546 (and rfc822size
(imap-message-put uid
'RFC822.SIZE rfc822size
))
2547 (and body
(imap-message-put uid
'BODY body
))
2548 (and bodydetail
(imap-message-put uid
'BODYDETAIL bodydetail
))
2549 (and bodystructure
(imap-message-put uid
'BODYSTRUCTURE bodystructure
))
2550 (run-hooks 'imap-fetch-data-hook
)))))
2552 ;; mailbox-data = ...
2553 ;; "STATUS" SP mailbox SP "("
2554 ;; [status-att SP number
2555 ;; *(SP status-att SP number)] ")"
2558 ;; status-att = "MESSAGES" / "RECENT" / "UIDNEXT" / "UIDVALIDITY" /
2561 (defun imap-parse-status ()
2562 (let ((mailbox (imap-parse-mailbox)))
2563 (if (eq (char-after) ?
)
2565 (when (and mailbox
(eq (char-after) ?\
())
2566 (while (and (not (eq (char-after) ?\
)))
2567 (or (forward-char) t
)
2568 (looking-at "\\([A-Za-z]+\\) "))
2569 (let ((token (upcase (match-string 1))))
2570 (goto-char (match-end 0))
2571 (cond ((string= token
"MESSAGES")
2572 (imap-mailbox-put 'messages
(read (current-buffer)) mailbox
))
2573 ((string= token
"RECENT")
2574 (imap-mailbox-put 'recent
(read (current-buffer)) mailbox
))
2575 ((string= token
"UIDNEXT")
2576 (and (looking-at "[0-9]+")
2577 (imap-mailbox-put 'uidnext
(match-string 0) mailbox
)
2578 (goto-char (match-end 0))))
2579 ((string= token
"UIDVALIDITY")
2580 (and (looking-at "[0-9]+")
2581 (imap-mailbox-put 'uidvalidity
(match-string 0) mailbox
)
2582 (goto-char (match-end 0))))
2583 ((string= token
"UNSEEN")
2584 (imap-mailbox-put 'unseen
(read (current-buffer)) mailbox
))
2586 (message "Unknown status data %s in mailbox %s ignored"
2588 (read (current-buffer)))))))))
2590 ;; acl_data ::= "ACL" SPACE mailbox *(SPACE identifier SPACE
2593 ;; identifier ::= astring
2595 ;; rights ::= astring
2597 (defun imap-parse-acl ()
2598 (let ((mailbox (imap-parse-mailbox))
2599 identifier rights acl
)
2600 (while (eq (char-after) ?\
)
2602 (setq identifier
(imap-parse-astring))
2604 (setq rights
(imap-parse-astring))
2605 (setq acl
(append acl
(list (cons identifier rights
)))))
2606 (imap-mailbox-put 'acl acl mailbox
)))
2608 ;; flag-list = "(" [flag *(SP flag)] ")"
2610 ;; flag = "\Answered" / "\Flagged" / "\Deleted" /
2611 ;; "\Seen" / "\Draft" / flag-keyword / flag-extension
2612 ;; ; Does not include "\Recent"
2614 ;; flag-keyword = atom
2616 ;; flag-extension = "\" atom
2617 ;; ; Future expansion. Client implementations
2618 ;; ; MUST accept flag-extension flags. Server
2619 ;; ; implementations MUST NOT generate
2620 ;; ; flag-extension flags except as defined by
2621 ;; ; future standard or standards-track
2622 ;; ; revisions of this specification.
2624 (defun imap-parse-flag-list ()
2625 (let (flag-list start
)
2626 (assert (eq (char-after) ?\
() nil
"In imap-parse-flag-list")
2627 (while (and (not (eq (char-after) ?\
)))
2630 ;; next line for Courier IMAP bug.
2631 (skip-chars-forward " ")
2633 (> (skip-chars-forward "^ )" (point-at-eol)) 0))
2634 (push (buffer-substring start
(point)) flag-list
))
2635 (assert (eq (char-after) ?\
)) nil
"In imap-parse-flag-list")
2637 (nreverse flag-list
)))
2639 ;; envelope = "(" env-date SP env-subject SP env-from SP env-sender SP
2640 ;; env-reply-to SP env-to SP env-cc SP env-bcc SP
2641 ;; env-in-reply-to SP env-message-id ")"
2643 ;; env-bcc = "(" 1*address ")" / nil
2645 ;; env-cc = "(" 1*address ")" / nil
2647 ;; env-date = nstring
2649 ;; env-from = "(" 1*address ")" / nil
2651 ;; env-in-reply-to = nstring
2653 ;; env-message-id = nstring
2655 ;; env-reply-to = "(" 1*address ")" / nil
2657 ;; env-sender = "(" 1*address ")" / nil
2659 ;; env-subject = nstring
2661 ;; env-to = "(" 1*address ")" / nil
2663 (defun imap-parse-envelope ()
2664 (when (eq (char-after) ?\
()
2666 (vector (prog1 (imap-parse-nstring) ;; date
2668 (prog1 (imap-parse-nstring) ;; subject
2670 (prog1 (imap-parse-address-list) ;; from
2672 (prog1 (imap-parse-address-list) ;; sender
2674 (prog1 (imap-parse-address-list) ;; reply-to
2676 (prog1 (imap-parse-address-list) ;; to
2678 (prog1 (imap-parse-address-list) ;; cc
2680 (prog1 (imap-parse-address-list) ;; bcc
2682 (prog1 (imap-parse-nstring) ;; in-reply-to
2684 (prog1 (imap-parse-nstring) ;; message-id
2687 ;; body-fld-param = "(" string SP string *(SP string SP string) ")" / nil
2689 (defsubst imap-parse-string-list
()
2690 (cond ((eq (char-after) ?\
() ;; body-fld-param
2693 (while (setq str
(imap-parse-string))
2695 ;; buggy stalker communigate pro 3.0 doesn't print SPC
2696 ;; between body-fld-param's sometimes
2697 (or (eq (char-after) ?
\")
2699 (nreverse strlist
)))
2703 ;; body-extension = nstring / number /
2704 ;; "(" body-extension *(SP body-extension) ")"
2705 ;; ; Future expansion. Client implementations
2706 ;; ; MUST accept body-extension fields. Server
2707 ;; ; implementations MUST NOT generate
2708 ;; ; body-extension fields except as defined by
2709 ;; ; future standard or standards-track
2710 ;; ; revisions of this specification.
2712 (defun imap-parse-body-extension ()
2713 (if (eq (char-after) ?\
()
2716 (push (imap-parse-body-extension) b-e
)
2717 (while (eq (char-after) ?\
)
2719 (push (imap-parse-body-extension) b-e
))
2720 (assert (eq (char-after) ?\
)) nil
"In imap-parse-body-extension")
2723 (or (imap-parse-number)
2724 (imap-parse-nstring))))
2726 ;; body-ext-1part = body-fld-md5 [SP body-fld-dsp [SP body-fld-lang
2727 ;; *(SP body-extension)]]
2728 ;; ; MUST NOT be returned on non-extensible
2731 ;; body-ext-mpart = body-fld-param [SP body-fld-dsp [SP body-fld-lang
2732 ;; *(SP body-extension)]]
2733 ;; ; MUST NOT be returned on non-extensible
2736 (defsubst imap-parse-body-ext
()
2738 (when (eq (char-after) ?\
) ;; body-fld-dsp
2741 (if (eq (char-after) ?\
()
2744 (push (imap-parse-string) dsp
)
2746 (push (imap-parse-string-list) dsp
)
2748 ;; With assert, the code might not be eval'd.
2749 ;; (assert (imap-parse-nil) t "In imap-parse-body-ext")
2751 (push (nreverse dsp
) ext
))
2752 (when (eq (char-after) ?\
) ;; body-fld-lang
2754 (if (eq (char-after) ?\
()
2755 (push (imap-parse-string-list) ext
)
2756 (push (imap-parse-nstring) ext
))
2757 (while (eq (char-after) ?\
) ;; body-extension
2759 (setq ext
(append (imap-parse-body-extension) ext
)))))
2762 ;; body = "(" body-type-1part / body-type-mpart ")"
2764 ;; body-ext-1part = body-fld-md5 [SP body-fld-dsp [SP body-fld-lang
2765 ;; *(SP body-extension)]]
2766 ;; ; MUST NOT be returned on non-extensible
2769 ;; body-ext-mpart = body-fld-param [SP body-fld-dsp [SP body-fld-lang
2770 ;; *(SP body-extension)]]
2771 ;; ; MUST NOT be returned on non-extensible
2774 ;; body-fields = body-fld-param SP body-fld-id SP body-fld-desc SP
2775 ;; body-fld-enc SP body-fld-octets
2777 ;; body-fld-desc = nstring
2779 ;; body-fld-dsp = "(" string SP body-fld-param ")" / nil
2781 ;; body-fld-enc = (DQUOTE ("7BIT" / "8BIT" / "BINARY" / "BASE64"/
2782 ;; "QUOTED-PRINTABLE") DQUOTE) / string
2784 ;; body-fld-id = nstring
2786 ;; body-fld-lang = nstring / "(" string *(SP string) ")"
2788 ;; body-fld-lines = number
2790 ;; body-fld-md5 = nstring
2792 ;; body-fld-octets = number
2794 ;; body-fld-param = "(" string SP string *(SP string SP string) ")" / nil
2796 ;; body-type-1part = (body-type-basic / body-type-msg / body-type-text)
2797 ;; [SP body-ext-1part]
2799 ;; body-type-basic = media-basic SP body-fields
2800 ;; ; MESSAGE subtype MUST NOT be "RFC822"
2802 ;; body-type-msg = media-message SP body-fields SP envelope
2803 ;; SP body SP body-fld-lines
2805 ;; body-type-text = media-text SP body-fields SP body-fld-lines
2807 ;; body-type-mpart = 1*body SP media-subtype
2808 ;; [SP body-ext-mpart]
2810 ;; media-basic = ((DQUOTE ("APPLICATION" / "AUDIO" / "IMAGE" /
2811 ;; "MESSAGE" / "VIDEO") DQUOTE) / string) SP media-subtype
2812 ;; ; Defined in [MIME-IMT]
2814 ;; media-message = DQUOTE "MESSAGE" DQUOTE SP DQUOTE "RFC822" DQUOTE
2815 ;; ; Defined in [MIME-IMT]
2817 ;; media-subtype = string
2818 ;; ; Defined in [MIME-IMT]
2820 ;; media-text = DQUOTE "TEXT" DQUOTE SP media-subtype
2821 ;; ; Defined in [MIME-IMT]
2823 (defun imap-parse-body ()
2825 (when (eq (char-after) ?\
()
2827 (if (eq (char-after) ?\
()
2829 (while (and (eq (char-after) ?\
()
2830 (setq subbody
(imap-parse-body)))
2831 ;; buggy stalker communigate pro 3.0 insert a SPC between
2832 ;; parts in multiparts
2833 (when (and (eq (char-after) ?\
)
2834 (eq (char-after (1+ (point))) ?\
())
2836 (push subbody body
))
2838 (push (imap-parse-string) body
) ;; media-subtype
2839 (when (eq (char-after) ?\
) ;; body-ext-mpart:
2841 (if (eq (char-after) ?\
() ;; body-fld-param
2842 (push (imap-parse-string-list) body
)
2843 (push (and (imap-parse-nil) nil
) body
))
2845 (append (imap-parse-body-ext) body
))) ;; body-ext-...
2846 (assert (eq (char-after) ?\
)) nil
"In imap-parse-body")
2850 (push (imap-parse-string) body
) ;; media-type
2852 (push (imap-parse-string) body
) ;; media-subtype
2854 ;; next line for Sun SIMS bug
2855 (and (eq (char-after) ?
) (imap-forward))
2856 (if (eq (char-after) ?\
() ;; body-fld-param
2857 (push (imap-parse-string-list) body
)
2858 (push (and (imap-parse-nil) nil
) body
))
2860 (push (imap-parse-nstring) body
) ;; body-fld-id
2862 (push (imap-parse-nstring) body
) ;; body-fld-desc
2864 ;; next `or' for Sun SIMS bug, it regard body-fld-enc as a
2865 ;; nstring and return nil instead of defaulting back to 7BIT
2866 ;; as the standard says.
2867 (push (or (imap-parse-nstring) "7BIT") body
) ;; body-fld-enc
2869 (push (imap-parse-number) body
) ;; body-fld-octets
2871 ;; ok, we're done parsing the required parts, what comes now is one
2874 ;; envelope (then we're parsing body-type-msg)
2875 ;; body-fld-lines (then we're parsing body-type-text)
2876 ;; body-ext-1part (then we're parsing body-type-basic)
2878 ;; the problem is that the two first are in turn optionally followed
2879 ;; by the third. So we parse the first two here (if there are any)...
2881 (when (eq (char-after) ?\
)
2884 (cond ((eq (char-after) ?\
() ;; body-type-msg:
2885 (push (imap-parse-envelope) body
) ;; envelope
2887 (push (imap-parse-body) body
) ;; body
2888 ;; buggy stalker communigate pro 3.0 doesn't print
2889 ;; number of lines in message/rfc822 attachment
2890 (if (eq (char-after) ?\
))
2893 (push (imap-parse-number) body
))) ;; body-fld-lines
2894 ((setq lines
(imap-parse-number)) ;; body-type-text:
2895 (push lines body
)) ;; body-fld-lines
2897 (backward-char))))) ;; no match...
2899 ;; ...and then parse the third one here...
2901 (when (eq (char-after) ?\
) ;; body-ext-1part:
2903 (push (imap-parse-nstring) body
) ;; body-fld-md5
2904 (setq body
(append (imap-parse-body-ext) body
))) ;; body-ext-1part..
2906 (assert (eq (char-after) ?\
)) nil
"In imap-parse-body 2")
2910 (when imap-debug
; (untrace-all)
2912 (buffer-disable-undo (get-buffer-create imap-debug-buffer
))
2913 (mapc (lambda (f) (trace-function-background f imap-debug-buffer
))
2924 imap-interactive-login
2941 imap-send-command-wait
2946 imap-current-mailbox
2947 imap-current-mailbox-p-1
2948 imap-current-mailbox-p
2949 imap-mailbox-select-1
2951 imap-mailbox-examine-1
2952 imap-mailbox-examine
2953 imap-mailbox-unselect
2954 imap-mailbox-expunge
2956 imap-mailbox-create-1
2962 imap-mailbox-subscribe
2963 imap-mailbox-unsubscribe
2965 imap-mailbox-acl-get
2966 imap-mailbox-acl-set
2967 imap-mailbox-acl-delete
2968 imap-current-message
2969 imap-list-to-message-set
2976 imap-message-flag-permanent-p
2977 imap-message-flags-set
2978 imap-message-flags-del
2979 imap-message-flags-add
2980 imap-message-copyuid-1
2981 imap-message-copyuid
2983 imap-message-appenduid-1
2984 imap-message-appenduid
2996 imap-parse-resp-text
2997 imap-parse-resp-text-code
2998 imap-parse-data-list
3002 imap-parse-flag-list
3004 imap-parse-body-extension
3010 ;; arch-tag: 27369ed6-33e4-482f-96f1-8bb906ba70f7
3011 ;;; imap.el ends here