Synch to No Gnus 200601130715.
[elisp/gnus.git-] / lisp / nnimap.el
1 ;;; nnimap.el --- imap backend for Gnus
2
3 ;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 ;;   2005 Free Software Foundation, Inc.
5
6 ;; Author: Simon Josefsson <jas@pdc.kth.se>
7 ;;         Jim Radford <radford@robby.caltech.edu>
8 ;; Keywords: mail
9
10 ;; This file is part of GNU Emacs.
11
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; any later version.
16
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 ;; GNU General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25 ;; Boston, MA 02110-1301, USA.
26
27 ;;; Commentary:
28
29 ;; Todo, major things:
30 ;;
31 ;;   o Fix Gnus to view correct number of unread/total articles in group buffer
32 ;;   o Fix Gnus to handle leading '.' in group names (fixed?)
33 ;;   o Finish disconnected mode (moving articles between mailboxes unplugged)
34 ;;   o Sieve
35 ;;   o MIME (partial article fetches)
36 ;;   o Split to other backends, different split rules for different
37 ;;     servers/inboxes
38 ;;
39 ;; Todo, minor things:
40 ;;
41 ;;   o Don't require half of Gnus -- backends should be standalone
42 ;;   o Verify that we don't use IMAP4rev1 specific things (RFC2060 App B)
43 ;;   o Dont uid fetch 1,* in nnimap-retrive-groups (slow)
44 ;;   o Split up big fetches (1,* header especially) in smaller chunks
45 ;;   o What do I do with gnus-newsgroup-*?
46 ;;   o Tell Gnus about new groups (how can we tell?)
47 ;;   o Respooling (fix Gnus?) (unnecessary?)
48 ;;   o Add support for the following: (if applicable)
49 ;;       request-list-newsgroups, request-regenerate
50 ;;       list-active-group,
51 ;;       request-associate-buffer, request-restore-buffer,
52 ;;   o Do The Right Thing when UIDVALIDITY changes (what's the right thing?)
53 ;;   o Support RFC2221 (Login referrals)
54 ;;   o IMAP2BIS compatibility? (RFC2061)
55 ;;   o ACAP stuff (perhaps a different project, would be nice to ACAPify
56 ;;     .newsrc.eld)
57 ;;   o What about Gnus's article editing, can we support it?  NO!
58 ;;   o Use \Draft to support the draft group??
59 ;;   o Duplicate suppression
60 ;;   o Rewrite UID SEARCH UID X as UID FETCH X (UID) for those with slow servers
61
62 ;;; Code:
63
64 (eval-when-compile (require 'cl))
65 (require 'imap)
66
67 (require 'nnoo)
68 (require 'nnmail)
69 (require 'nnheader)
70 (require 'gnus)
71 (require 'gnus-range)
72 (require 'gnus-start)
73 (require 'gnus-int)
74
75 (eval-when-compile (require 'cl))
76
77 (nnoo-declare nnimap)
78
79 (defconst nnimap-version "nnimap 1.0")
80
81 (defgroup nnimap nil
82   "Reading IMAP mail with Gnus."
83   :group 'gnus)
84
85 (defvoo nnimap-address nil
86   "Address of physical IMAP server.  If nil, use the virtual server's name.")
87
88 (defvoo nnimap-server-port nil
89   "Port number on physical IMAP server.
90 If nil, defaults to 993 for TLS/SSL connections and 143 otherwise.")
91
92 ;; Splitting variables
93
94 (defcustom nnimap-split-crosspost t
95   "If non-nil, do crossposting if several split methods match the mail.
96 If nil, the first match found will be used."
97   :group 'nnimap
98   :type 'boolean)
99
100 (defcustom nnimap-split-inbox nil
101   "Name of mailbox to split mail from.
102
103 Mail is read from this mailbox and split according to rules in
104 `nnimap-split-rule'.
105
106 This can be a string or a list of strings."
107   :group 'nnimap
108   :type '(choice (string)
109                  (repeat string)))
110
111 (define-widget 'nnimap-strict-function 'function
112   "This widget only matches values that are functionp.
113
114 Warning: This means that a value that is the symbol of a not yet
115 loaded function will not match.  Use with care."
116   :match 'nnimap-strict-function-match)
117
118 (defun nnimap-strict-function-match (widget value)
119   "Ignoring WIDGET, match if VALUE is a function."
120   (functionp value))
121
122 (defcustom nnimap-split-rule nil
123   "Mail will be split according to these rules.
124
125 Mail is read from mailbox(es) specified in `nnimap-split-inbox'.
126
127 If you'd like, for instance, one mail group for mail from the
128 \"gnus-imap\" mailing list, one group for junk mail and leave
129 everything else in the incoming mailbox, you could do something like
130 this:
131
132 \(setq nnimap-split-rule '((\"INBOX.gnus-imap\"   \"From:.*gnus-imap\")
133                           (\"INBOX.junk\"        \"Subject:.*buy\")))
134
135 As you can see, `nnimap-split-rule' is a list of lists, where the
136 first element in each \"rule\" is the name of the IMAP mailbox (or the
137 symbol `junk' if you want to remove the mail), and the second is a
138 regexp that nnimap will try to match on the header to find a fit.
139
140 The second element can also be a function.  In that case, it will be
141 called narrowed to the headers with the first element of the rule as
142 the argument.  It should return a non-nil value if it thinks that the
143 mail belongs in that group.
144
145 This variable can also have a function as its value, the function will
146 be called with the headers narrowed and should return a group where it
147 thinks the article should be splitted to.  See `nnimap-split-fancy'.
148
149 To allow for different split rules on different virtual servers, and
150 even different split rules in different inboxes on the same server,
151 the syntax of this variable have been extended along the lines of:
152
153 \(setq nnimap-split-rule
154       '((\"my1server\"    (\".*\"    ((\"ding\"    \"ding@gnus.org\")
155                                   (\"junk\"    \"From:.*Simon\")))
156         (\"my2server\"    (\"INBOX\" nnimap-split-fancy))
157         (\"my[34]server\" (\".*\"    ((\"private\" \"To:.*Simon\")
158                                   (\"junk\"    my-junk-func)))))
159
160 The virtual server name is in fact a regexp, so that the same rules
161 may apply to several servers.  In the example, the servers
162 \"my3server\" and \"my4server\" both use the same rules.  Similarly,
163 the inbox string is also a regexp.  The actual splitting rules are as
164 before, either a function, or a list with group/regexp or
165 group/function elements."
166   :group 'nnimap
167   :type '(choice :tag "Rule type"
168                  (repeat :menu-tag "Single-server"
169                          :tag "Single-server list"
170                          (list (string :tag "Mailbox")
171                                (choice :tag "Predicate"
172                                        (regexp :tag "A regexp")
173                                        (nnimap-strict-function :tag "A function"))))
174                  (choice :menu-tag "A function"
175                          :tag "A function"
176                          (function-item nnimap-split-fancy)
177                          (function-item nnmail-split-fancy)
178                          (nnimap-strict-function :tag "User-defined function"))
179                  (repeat :menu-tag "Multi-server (extended)"
180                          :tag "Multi-server list"
181                          (list (regexp :tag "Server regexp")
182                                (list (regexp :tag "Incoming Mailbox regexp")
183                                      (repeat :tag "Rules for matching server(s) and mailbox(es)"
184                                              (list (string :tag "Destination mailbox")
185                                                    (choice :tag "Predicate"
186                                                            (regexp :tag "A Regexp")
187                                                            (nnimap-strict-function :tag "A Function")))))))))
188
189 (defcustom nnimap-split-predicate "UNSEEN UNDELETED"
190   "The predicate used to find articles to split.
191 If you use another IMAP client to peek on articles but always would
192 like nnimap to split them once it's started, you could change this to
193 \"UNDELETED\". Other available predicates are available in
194 RFC2060 section 6.4.4."
195   :group 'nnimap
196   :type 'string)
197
198 (defcustom nnimap-split-fancy nil
199   "Like the variable `nnmail-split-fancy'."
200   :group 'nnimap
201   :type 'sexp)
202
203 (defvar nnimap-split-download-body-default nil
204   "Internal variable with default value for `nnimap-split-download-body'.")
205
206 (defcustom nnimap-split-download-body 'default
207   "Whether to download entire articles during splitting.
208 This is generally not required, and will slow things down considerably.
209 You may need it if you want to use an advanced splitting function that
210 analyzes the body before splitting the article.
211 If this variable is nil, bodies will not be downloaded; if this
212 variable is the symbol `default' the default behaviour is
213 used (which currently is nil, unless you use a statistical
214 spam.el test); if this variable is another non-nil value bodies
215 will be downloaded."
216   :version "22.1"
217   :group 'nnimap
218   :type '(choice (const :tag "Let system decide" deault)
219                  boolean))
220
221 ;; Performance / bug workaround variables
222
223 (defcustom nnimap-close-asynchronous t
224   "Close mailboxes asynchronously in `nnimap-close-group'.
225 This means that errors caught by nnimap when closing the mailbox will
226 not prevent Gnus from updating the group status, which may be harmful.
227 However, it increases speed."
228   :version "22.1"
229   :type 'boolean
230   :group 'nnimap)
231
232 (defcustom nnimap-dont-close t
233   "Never close mailboxes.
234 This increases the speed of closing mailboxes (quiting group) but may
235 decrease the speed of selecting another mailbox later.  Re-selecting
236 the same mailbox will be faster though."
237   :version "22.1"
238   :type 'boolean
239   :group 'nnimap)
240
241 (defcustom nnimap-retrieve-groups-asynchronous t
242   "Send asynchronous STATUS commands for each mailbox before checking mail.
243 If you have mailboxes that rarely receives mail, this speeds up new
244 mail checking.  It works by first sending STATUS commands for each
245 mailbox, and then only checking groups which has a modified UIDNEXT
246 more carefully for new mail.
247
248 In summary, the default is O((1-p)*k+p*n) and changing it to nil makes
249 it O(n).  If p is small, then the default is probably faster."
250   :version "22.1"
251   :type 'boolean
252   :group 'nnimap)
253
254 (defvoo nnimap-need-unselect-to-notice-new-mail nil
255   "Unselect mailboxes before looking for new mail in them.
256 Some servers seem to need this under some circumstances.")
257
258 ;; Authorization / Privacy variables
259
260 (defvoo nnimap-auth-method nil
261   "Obsolete.")
262
263 (defvoo nnimap-stream nil
264   "How nnimap will connect to the server.
265
266 The default, nil, will try to use the \"best\" method the server can
267 handle.
268
269 Change this if
270
271 1) you want to connect with TLS/SSL.  The TLS/SSL integration
272    with IMAP is suboptimal so you'll have to tell it
273    specifically.
274
275 2) your server is more capable than your environment -- i.e. your
276    server accept Kerberos login's but you haven't installed the
277    `imtest' program or your machine isn't configured for Kerberos.
278
279 Possible choices: gssapi, kerberos4, starttls, tls, ssl, network, shell.
280 See also `imap-streams' and `imap-stream-alist'.")
281
282 (defvoo nnimap-authenticator nil
283   "How nnimap authenticate itself to the server.
284
285 The default, nil, will try to use the \"best\" method the server can
286 handle.
287
288 There is only one reason for fiddling with this variable, and that is
289 if your server is more capable than your environment -- i.e. you
290 connect to a server that accept Kerberos login's but you haven't
291 installed the `imtest' program or your machine isn't configured for
292 Kerberos.
293
294 Possible choices: gssapi, kerberos4, digest-md5, cram-md5, login, anonymous.
295 See also `imap-authenticators' and `imap-authenticator-alist'")
296
297 (defvoo nnimap-directory (nnheader-concat gnus-directory "overview/")
298   "Directory to keep NOV cache files for nnimap groups.
299 See also `nnimap-nov-file-name'.")
300
301 (defvoo nnimap-nov-file-name "nnimap."
302   "NOV cache base filename.
303 The group name and `nnimap-nov-file-name-suffix' will be appended.  A
304 typical complete file name would be
305 ~/News/overview/nnimap.pdc.INBOX.ding.nov, or
306 ~/News/overview/nnimap/pdc/INBOX/ding/nov if
307 `nnmail-use-long-file-names' is nil")
308
309 (defvoo nnimap-nov-file-name-suffix ".novcache"
310   "Suffix for NOV cache base filename.")
311
312 (defvoo nnimap-nov-is-evil gnus-agent
313   "If non-nil, never generate or use a local nov database for this backend.
314 Using nov databases should speed up header fetching considerably.
315 However, it will invoke a UID SEARCH UID command on the server, and
316 some servers implement this command inefficiently by opening each and
317 every message in the group, thus making it quite slow.
318 Unlike other backends, you do not need to take special care if you
319 flip this variable.")
320
321 (defvoo nnimap-search-uids-not-since-is-evil nil
322   "If non-nil, avoid \"UID SEARCH UID ... NOT SINCE\" queries when expiring.
323 Instead, use \"UID SEARCH SINCE\" to prune the list of expirable
324 articles within Gnus.  This seems to be faster on Courier in some cases.")
325
326 (defvoo nnimap-expunge-on-close 'always ; 'ask, 'never
327   "Whether to expunge a group when it is closed.
328 When a IMAP group with articles marked for deletion is closed, this
329 variable determine if nnimap should actually remove the articles or
330 not.
331
332 If always, nnimap always perform a expunge when closing the group.
333 If never, nnimap never expunges articles marked for deletion.
334 If ask, nnimap will ask you if you wish to expunge marked articles.
335
336 When setting this variable to `never', you can only expunge articles
337 by using `G x' (gnus-group-nnimap-expunge) from the Group buffer.")
338
339 (defvoo nnimap-list-pattern "*"
340   "A string LIMIT or list of strings with mailbox wildcards used to limit available groups.
341 See below for available wildcards.
342
343 The LIMIT string can be a cons cell (REFERENCE . LIMIT), where
344 REFERENCE will be passed as the first parameter to LIST/LSUB.  The
345 semantics of this are server specific, on the University of Washington
346 server you can specify a directory.
347
348 Example:
349  '(\"INBOX\" \"mail/*\" (\"~friend/mail/\" . \"list/*\"))
350
351 There are two wildcards * and %. * matches everything, % matches
352 everything in the current hierarchy.")
353
354 (defvoo nnimap-news-groups nil
355   "IMAP support a news-like mode, also known as bulletin board mode,
356 where replies is sent via IMAP instead of SMTP.
357
358 This variable should contain a regexp matching groups where you wish
359 replies to be stored to the mailbox directly.
360
361 Example:
362   '(\"^[^I][^N][^B][^O][^X].*$\")
363
364 This will match all groups not beginning with \"INBOX\".
365
366 Note that there is nothing technically different between mail-like and
367 news-like mailboxes.  If you wish to have a group with todo items or
368 similar which you wouldn't want to set up a mailing list for, you can
369 use this to make replies go directly to the group.")
370
371 (defvoo nnimap-expunge-search-string "UID %s NOT SINCE %s"
372   "IMAP search command to use for articles that are to be expired.
373 The first %s is replaced by a UID set of articles to search on,
374 and the second %s is replaced by a date criterium.
375
376 One useful (and perhaps the only useful) value to change this to would
377 be `UID %s NOT SENTSINCE %s' to make nnimap use the Date: header
378 instead of the internal date of messages.  See section 6.4.4 of RFC
379 2060 for more information on valid strings.")
380
381 (defvoo nnimap-importantize-dormant t
382   "If non-nil, mark \"dormant\" articles as \"ticked\" for other IMAP clients.
383 Note that within Gnus, dormant articles will still (only) be
384 marked as ticked.  This is to make \"dormant\" articles stand out,
385 just like \"ticked\" articles, in other IMAP clients.")
386
387 (defvoo nnimap-server-address nil
388   "Obsolete.  Use `nnimap-address'.")
389
390 (defcustom nnimap-authinfo-file "~/.authinfo"
391   "Authorization information for IMAP servers.  In .netrc format."
392   :type
393   '(choice file
394            (repeat :tag "Entries"
395                    :menu-tag "Inline"
396                    (list :format "%v"
397                          :value ("" ("login" . "") ("password" . ""))
398                          (string :tag "Host")
399                          (checklist :inline t
400                                     (cons :format "%v"
401                                           (const :format "" "login")
402                                           (string :format "Login: %v"))
403                                     (cons :format "%v"
404                                           (const :format "" "password")
405                                           (string :format "Password: %v"))))))
406   :group 'nnimap)
407
408 (defcustom nnimap-prune-cache t
409   "If non-nil, nnimap check whether articles still exist on server before using data stored in NOV cache."
410   :type 'boolean
411   :group 'nnimap)
412
413 (defvar nnimap-request-list-method 'imap-mailbox-list
414   "Method to use to request a list of all folders from the server.
415 If this is 'imap-mailbox-lsub, then use a server-side subscription list to
416 restrict visible folders.")
417
418 (defcustom nnimap-id nil
419   "Plist with client identity to send to server upon login.
420 Nil means no information is sent, symbol `no' to disable ID query
421 alltogheter, or plist with identifier-value pairs to send to
422 server.  RFC 2971 describes the list as follows:
423
424    Any string may be sent as a field, but the following are defined to
425    describe certain values that might be sent.  Implementations are free
426    to send none, any, or all of these.  Strings are not case-sensitive.
427    Field strings MUST NOT be longer than 30 octets.  Value strings MUST
428    NOT be longer than 1024 octets.  Implementations MUST NOT send more
429    than 30 field-value pairs.
430
431      name            Name of the program
432      version         Version number of the program
433      os              Name of the operating system
434      os-version      Version of the operating system
435      vendor          Vendor of the client/server
436      support-url     URL to contact for support
437      address         Postal address of contact/vendor
438      date            Date program was released, specified as a date-time
439                        in IMAP4rev1
440      command         Command used to start the program
441      arguments       Arguments supplied on the command line, if any
442                        if any
443      environment     Description of environment, i.e., UNIX environment
444                        variables or Windows registry settings
445
446    Implementations MUST NOT send the same field name more than once.
447
448 An example plist would be '(\"name\" \"Gnus\" \"version\" gnus-version-number
449 \"os\" system-configuration \"vendor\" \"GNU\")."
450   :group 'nnimap
451   :type '(choice (const :tag "No information" nil)
452                  (const :tag "Disable ID query" no)
453                  (plist :key-type string :value-type string)))
454
455 (defcustom nnimap-debug nil
456   "If non-nil, random debug spews are placed in *nnimap-debug* buffer.
457 Note that username, passwords and other privacy sensitive
458 information (such as e-mail) may be stored in the *nnimap-debug*
459 buffer.  It is not written to disk, however.  Do not enable this
460 variable unless you are comfortable with that."
461   :group 'nnimap
462   :type 'boolean)
463
464 ;; Internal variables:
465
466 (defvar nnimap-debug-buffer "*nnimap-debug*")
467 (defvar nnimap-mailbox-info (gnus-make-hashtable 997))
468 (defvar nnimap-current-move-server nil)
469 (defvar nnimap-current-move-group nil)
470 (defvar nnimap-current-move-article nil)
471 (defvar nnimap-length)
472 (defvar nnimap-progress-chars '(?| ?/ ?- ?\\))
473 (defvar nnimap-progress-how-often 20)
474 (defvar nnimap-counter)
475 (defvar nnimap-server-buffer-alist nil) ;; Map server name to buffers.
476 (defvar nnimap-current-server nil)      ;; Current server
477 (defvar nnimap-server-buffer nil)       ;; Current servers' buffer
478
479 \f
480
481 (nnoo-define-basics nnimap)
482
483 ;; Utility functions:
484
485 (defsubst nnimap-get-server-buffer (server)
486   "Return buffer for SERVER, if nil use current server."
487   (cadr (assoc (or server nnimap-current-server) nnimap-server-buffer-alist)))
488
489 (defun nnimap-remove-server-from-buffer-alist (server list)
490   "Remove SERVER from LIST."
491   (let (l)
492     (dolist (e list)
493       (unless (equal server (car-safe e))
494         (push e l)))
495     l))
496
497 (defun nnimap-possibly-change-server (server)
498   "Return buffer for SERVER, changing the current server as a side-effect.
499 If SERVER is nil, uses the current server."
500   (setq nnimap-current-server (or server nnimap-current-server)
501         nnimap-server-buffer (nnimap-get-server-buffer nnimap-current-server)))
502
503 (defun nnimap-verify-uidvalidity (group server)
504   "Verify stored uidvalidity match current one in GROUP on SERVER."
505   (let* ((gnusgroup (gnus-group-prefixed-name
506                      group (gnus-server-to-method
507                             (format "nnimap:%s" server))))
508          (new-uidvalidity (imap-mailbox-get 'uidvalidity))
509          (old-uidvalidity (gnus-group-get-parameter gnusgroup 'uidvalidity))
510          (dir (file-name-as-directory (expand-file-name nnimap-directory)))
511          (nameuid (nnheader-translate-file-chars
512                    (concat nnimap-nov-file-name
513                            (if (equal server "")
514                                "unnamed"
515                              server) "." group "." old-uidvalidity
516                              nnimap-nov-file-name-suffix) t))
517          (file (if (or nnmail-use-long-file-names
518                        (file-exists-p (expand-file-name nameuid dir)))
519                    (expand-file-name nameuid dir)
520                  (expand-file-name
521                   (encode-coding-string
522                    (nnheader-replace-chars-in-string nameuid ?. ?/)
523                    nnmail-pathname-coding-system)
524                   dir))))
525     (if old-uidvalidity
526         (if (not (equal old-uidvalidity new-uidvalidity))
527             ;; uidvalidity clash
528             (gnus-delete-file file)
529           (gnus-group-set-parameter gnusgroup 'uidvalidity new-uidvalidity)
530           t)
531       (gnus-group-add-parameter gnusgroup (cons 'uidvalidity new-uidvalidity))
532       t)))
533
534 (defun nnimap-before-find-minmax-bugworkaround ()
535   "Function called before iterating through mailboxes with
536 `nnimap-find-minmax-uid'."
537   (when nnimap-need-unselect-to-notice-new-mail
538     ;; XXX this is for UoW imapd problem, it doesn't notice new mail in
539     ;; currently selected mailbox without a re-select/examine.
540     (or (null (imap-current-mailbox nnimap-server-buffer))
541         (imap-mailbox-unselect nnimap-server-buffer))))
542
543 (defun nnimap-find-minmax-uid (group &optional examine)
544   "Find lowest and highest active article number in GROUP.
545 If EXAMINE is non-nil the group is selected read-only."
546   (with-current-buffer nnimap-server-buffer
547     (when (or (string= group (imap-current-mailbox))
548               (imap-mailbox-select group examine))
549       (let (minuid maxuid)
550         (when (> (imap-mailbox-get 'exists) 0)
551           (imap-fetch "1,*" "UID" nil 'nouidfetch)
552           (imap-message-map (lambda (uid Uid)
553                               (setq minuid (if minuid (min minuid uid) uid)
554                                     maxuid (if maxuid (max maxuid uid) uid)))
555                             'UID))
556         (list (imap-mailbox-get 'exists) minuid maxuid)))))
557
558 (defun nnimap-possibly-change-group (group &optional server)
559   "Make GROUP the current group, and SERVER the current server."
560   (when (nnimap-possibly-change-server server)
561     (with-current-buffer nnimap-server-buffer
562       (if (or (null group) (imap-current-mailbox-p group))
563           imap-current-mailbox
564         (if (imap-mailbox-select group)
565             (if (or (nnimap-verify-uidvalidity
566                      group (or server nnimap-current-server))
567                     (zerop (imap-mailbox-get 'exists group))
568                     t ;; for OGnus to see if ignoring uidvalidity
569                       ;; changes has any bad effects.
570                     (yes-or-no-p
571                      (format
572                       "nnimap: Group %s is not uidvalid.  Continue? " group)))
573                 imap-current-mailbox
574               (imap-mailbox-unselect)
575               (error "nnimap: Group %s is not uid-valid" group))
576           (nnheader-report 'nnimap (imap-error-text)))))))
577
578 (defun nnimap-replace-whitespace (string)
579   "Return STRING with all whitespace replaced with space."
580   (when string
581     (while (string-match "[\r\n\t]+" string)
582       (setq string (replace-match " " t t string)))
583     string))
584
585 ;; Required backend functions
586
587 (defun nnimap-retrieve-headers-progress ()
588   "Hook to insert NOV line for current article into `nntp-server-buffer'."
589   (and (numberp nnmail-large-newsgroup)
590        (zerop (% (incf nnimap-counter) nnimap-progress-how-often))
591        (> nnimap-length nnmail-large-newsgroup)
592        (nnheader-message 6 "nnimap: Retrieving headers... %c"
593                          (nth (/ (% nnimap-counter
594                                     (* (length nnimap-progress-chars)
595                                        nnimap-progress-how-often))
596                                  nnimap-progress-how-often)
597                               nnimap-progress-chars)))
598   (with-current-buffer nntp-server-buffer
599     (let (headers lines chars uid mbx)
600       (with-current-buffer nnimap-server-buffer
601         (setq uid imap-current-message
602               mbx imap-current-mailbox
603               headers (nnimap-demule
604                        (if (imap-capability 'IMAP4rev1)
605                            ;; xxx don't just use car? alist doesn't contain
606                            ;; anything else now, but it might...
607                            (nth 2 (car (imap-message-get uid 'BODYDETAIL)))
608                          (imap-message-get uid 'RFC822.HEADER)))
609               lines (imap-body-lines (imap-message-body imap-current-message))
610               chars (imap-message-get imap-current-message 'RFC822.SIZE)))
611       (nnheader-insert-nov
612        (with-temp-buffer
613          (buffer-disable-undo)
614          (insert headers)
615          (let ((head (nnheader-parse-naked-head uid)))
616            (mail-header-set-number head uid)
617            (mail-header-set-chars head chars)
618            (mail-header-set-lines head lines)
619            (mail-header-set-xref
620             head (format "%s %s:%d" (system-name) mbx uid))
621            head))))))
622
623 (defun nnimap-retrieve-which-headers (articles fetch-old)
624   "Get a range of articles to fetch based on ARTICLES and FETCH-OLD."
625   (with-current-buffer nnimap-server-buffer
626     (if (numberp (car-safe articles))
627         (imap-search
628          (concat "UID "
629                  (imap-range-to-message-set
630                   (gnus-compress-sequence
631                    (append (gnus-uncompress-sequence
632                             (and fetch-old
633                                  (cons (if (numberp fetch-old)
634                                            (max 1 (- (car articles) fetch-old))
635                                          1)
636                                        (1- (car articles)))))
637                            articles)))))
638       (mapcar (lambda (msgid)
639                 (imap-search
640                  (format "HEADER Message-Id \"%s\"" msgid)))
641               articles))))
642
643 (defun nnimap-group-overview-filename (group server)
644   "Make file name for GROUP on SERVER."
645   (let* ((dir (file-name-as-directory (expand-file-name nnimap-directory)))
646          (uidvalidity (gnus-group-get-parameter
647                        (gnus-group-prefixed-name
648                         group (gnus-server-to-method
649                                (format "nnimap:%s" server)))
650                        'uidvalidity))
651          (name (nnheader-translate-file-chars
652                 (concat nnimap-nov-file-name
653                         (if (equal server "")
654                             "unnamed"
655                           server) "." group nnimap-nov-file-name-suffix) t))
656          (nameuid (nnheader-translate-file-chars
657                    (concat nnimap-nov-file-name
658                            (if (equal server "")
659                                "unnamed"
660                              server) "." group "." uidvalidity
661                              nnimap-nov-file-name-suffix) t))
662          (oldfile (if (or nnmail-use-long-file-names
663                           (file-exists-p (expand-file-name name dir)))
664                       (expand-file-name name dir)
665                     (expand-file-name
666                      (encode-coding-string
667                       (nnheader-replace-chars-in-string name ?. ?/)
668                       nnmail-pathname-coding-system)
669                      dir)))
670          (newfile (if (or nnmail-use-long-file-names
671                           (file-exists-p (expand-file-name nameuid dir)))
672                       (expand-file-name nameuid dir)
673                     (expand-file-name
674                      (encode-coding-string
675                       (nnheader-replace-chars-in-string nameuid ?. ?/)
676                       nnmail-pathname-coding-system)
677                      dir))))
678     (when (and (file-exists-p oldfile) (not (file-exists-p newfile)))
679       (message "nnimap: Upgrading novcache filename...")
680       (sit-for 1)
681       (gnus-make-directory (file-name-directory newfile))
682       (unless (ignore-errors (rename-file oldfile newfile) t)
683         (if (ignore-errors (copy-file oldfile newfile) t)
684             (delete-file oldfile)
685           (error "Can't rename `%s' to `%s'" oldfile newfile))))
686     newfile))
687
688 (defun nnimap-retrieve-headers-from-file (group server)
689   (with-current-buffer nntp-server-buffer
690     (let ((nov (nnimap-group-overview-filename group server)))
691       (when (file-exists-p nov)
692         (nnheader-insert-file-contents nov)
693         (set-buffer-modified-p nil)
694         (let ((min (ignore-errors (goto-char (point-min))
695                                   (read (current-buffer))))
696               (max (ignore-errors (goto-char (point-max))
697                                   (forward-line -1)
698                                   (read (current-buffer)))))
699           (if (and (numberp min) (numberp max))
700               (cons min max)
701             ;; junk, remove it, it's saved later
702             (erase-buffer)
703             nil))))))
704
705 (defun nnimap-retrieve-headers-from-server (articles group server)
706   (with-current-buffer nnimap-server-buffer
707     (let ((imap-fetch-data-hook '(nnimap-retrieve-headers-progress))
708           (nnimap-length (gnus-range-length articles))
709           (nnimap-counter 0))
710       (imap-fetch (imap-range-to-message-set articles)
711                   (concat "(UID RFC822.SIZE BODY "
712                           (let ((headers
713                                  (append '(Subject From Date Message-Id
714                                                    References In-Reply-To Xref)
715                                          (copy-sequence
716                                           nnmail-extra-headers))))
717                             (if (imap-capability 'IMAP4rev1)
718                                 (format "BODY.PEEK[HEADER.FIELDS %s])" headers)
719                               (format "RFC822.HEADER.LINES %s)" headers)))))
720       (with-current-buffer nntp-server-buffer
721         (sort-numeric-fields 1 (point-min) (point-max)))
722       (and (numberp nnmail-large-newsgroup)
723            (> nnimap-length nnmail-large-newsgroup)
724            (nnheader-message 6 "nnimap: Retrieving headers...done")))))
725
726 (defun nnimap-dont-use-nov-p (group server)
727   (or gnus-nov-is-evil nnimap-nov-is-evil
728       (unless (and (gnus-make-directory
729                     (file-name-directory
730                      (nnimap-group-overview-filename group server)))
731                    (file-writable-p
732                     (nnimap-group-overview-filename group server)))
733         (message "nnimap: Nov cache not writable, %s"
734                  (nnimap-group-overview-filename group server)))))
735
736 (deffoo nnimap-retrieve-headers (articles &optional group server fetch-old)
737   (when (nnimap-possibly-change-group group server)
738     (with-current-buffer nntp-server-buffer
739       (erase-buffer)
740       (if (nnimap-dont-use-nov-p group server)
741           (nnimap-retrieve-headers-from-server
742            (gnus-compress-sequence articles) group server)
743         (let (uids cached low high)
744           (when (setq uids (nnimap-retrieve-which-headers articles fetch-old)
745                       low (car uids)
746                       high (car (last uids)))
747             (if (setq cached (nnimap-retrieve-headers-from-file group server))
748                 (progn
749                   ;; fetch articles with uids before cache block
750                   (when (< low (car cached))
751                     (goto-char (point-min))
752                     (nnimap-retrieve-headers-from-server
753                      (cons low (1- (car cached))) group server))
754                   ;; fetch articles with uids after cache block
755                   (when (> high (cdr cached))
756                     (goto-char (point-max))
757                     (nnimap-retrieve-headers-from-server
758                      (cons (1+ (cdr cached)) high) group server))
759                   (when nnimap-prune-cache
760                     ;; remove nov's for articles which has expired on server
761                     (goto-char (point-min))
762                     (dolist (uid (gnus-set-difference articles uids))
763                       (when (re-search-forward (format "^%d\t" uid) nil t)
764                         (gnus-delete-line)))))
765               ;; nothing cached, fetch whole range from server
766               (nnimap-retrieve-headers-from-server
767                (cons low high) group server))
768             (when (buffer-modified-p)
769               (nnmail-write-region
770                (point-min) (point-max)
771                (nnimap-group-overview-filename group server) nil 'nomesg))
772             (nnheader-nov-delete-outside-range low high))))
773       'nov)))
774
775 (defun nnimap-open-connection (server)
776   (if (not (imap-open nnimap-address nnimap-server-port nnimap-stream
777                       nnimap-authenticator nnimap-server-buffer))
778       (nnheader-report 'nnimap "Can't open connection to server %s" server)
779     (unless (or (imap-capability 'IMAP4 nnimap-server-buffer)
780                 (imap-capability 'IMAP4rev1 nnimap-server-buffer))
781       (imap-close nnimap-server-buffer)
782       (nnheader-report 'nnimap "Server %s is not IMAP4 compliant" server))
783     (let* ((list (progn (gnus-message 7 "Parsing authinfo file `%s'."
784                                       nnimap-authinfo-file)
785                         (netrc-parse nnimap-authinfo-file)))
786            (port (if nnimap-server-port
787                      (int-to-string nnimap-server-port)
788                    "imap"))
789            (user (netrc-machine-user-or-password
790                   "login"
791                   list
792                   (list server
793                         (or nnimap-server-address
794                             nnimap-address))
795                   (list port)
796                   (list "imap" "imaps")))
797            (passwd (netrc-machine-user-or-password
798                     "password"
799                     list
800                     (list server
801                           (or nnimap-server-address
802                               nnimap-address))
803                     (list port)
804                     (list "imap" "imaps"))))
805       (if (imap-authenticate user passwd nnimap-server-buffer)
806           (prog2
807               (setq nnimap-server-buffer-alist
808                     (nnimap-remove-server-from-buffer-alist
809                      server
810                      nnimap-server-buffer-alist))
811               (push (list server nnimap-server-buffer)
812                     nnimap-server-buffer-alist)
813             (imap-id nnimap-id nnimap-server-buffer)
814             (nnimap-possibly-change-server server))
815         (imap-close nnimap-server-buffer)
816         (kill-buffer nnimap-server-buffer)
817         (nnheader-report 'nnimap "Could not authenticate to %s" server)))))
818
819 (deffoo nnimap-open-server (server &optional defs)
820   (nnheader-init-server-buffer)
821   (if (nnimap-server-opened server)
822       t
823     (unless (assq 'nnimap-server-buffer defs)
824       (push (list 'nnimap-server-buffer (concat " *nnimap* " server)) defs))
825     ;; translate `nnimap-server-address' to `nnimap-address' in defs
826     ;; for people that configured nnimap with a very old version
827     (unless (assq 'nnimap-address defs)
828       (if (assq 'nnimap-server-address defs)
829           (push (list 'nnimap-address
830                       (cadr (assq 'nnimap-server-address defs))) defs)
831         (push (list 'nnimap-address server) defs)))
832     (nnoo-change-server 'nnimap server defs)
833     (or nnimap-server-buffer
834         (setq nnimap-server-buffer (cadr (assq 'nnimap-server-buffer defs))))
835     (with-current-buffer (get-buffer-create nnimap-server-buffer)
836       (nnoo-change-server 'nnimap server defs))
837     (or (and nnimap-server-buffer
838              (imap-opened nnimap-server-buffer)
839              (if (with-current-buffer nnimap-server-buffer
840                    (memq imap-state '(auth selected examine)))
841                  t
842                (imap-close nnimap-server-buffer)
843                (nnimap-open-connection server)))
844         (nnimap-open-connection server))))
845
846 (deffoo nnimap-server-opened (&optional server)
847   "Whether SERVER is opened.
848 If SERVER is the current virtual server, and the connection to the
849 physical server is alive, this function return a non-nil value.  If
850 SERVER is nil, it is treated as the current server."
851   ;; clean up autologouts??
852   (and (or server nnimap-current-server)
853        (nnoo-server-opened 'nnimap (or server nnimap-current-server))
854        (imap-opened (nnimap-get-server-buffer server))))
855
856 (deffoo nnimap-close-server (&optional server)
857   "Close connection to server and free all resources connected to it.
858 Return nil if the server couldn't be closed for some reason."
859   (let ((server (or server nnimap-current-server)))
860     (when (or (nnimap-server-opened server)
861               (imap-opened (nnimap-get-server-buffer server)))
862       (imap-close (nnimap-get-server-buffer server))
863       (kill-buffer (nnimap-get-server-buffer server))
864       (setq nnimap-server-buffer nil
865             nnimap-current-server nil
866             nnimap-server-buffer-alist
867             (nnimap-remove-server-from-buffer-alist
868              server
869              nnimap-server-buffer-alist)))
870     (nnoo-close-server 'nnimap server)))
871
872 (deffoo nnimap-request-close ()
873   "Close connection to all servers and free all resources that the backend have reserved.
874 All buffers that have been created by that
875 backend should be killed.  (Not the nntp-server-buffer, though.) This
876 function is generally only called when Gnus is shutting down."
877   (mapc (lambda (server) (nnimap-close-server (car server)))
878         nnimap-server-buffer-alist)
879   (setq nnimap-server-buffer-alist nil))
880
881 (deffoo nnimap-status-message (&optional server)
882   "This function returns the last error message from server."
883   (when (nnimap-possibly-change-server server)
884     (nnoo-status-message 'nnimap server)))
885
886 (defun nnimap-demule (string)
887   ;; BEWARE: we used to use string-as-multibyte here which is braindead
888   ;; because it will turn accidental emacs-mule-valid byte sequences
889   ;; into multibyte chars.  --Stef
890   ;; Reverted, braindead got 7.5 out of 10 on imdb, so it can't be
891   ;; that bad. --Simon
892   (funcall (if (and (fboundp 'string-as-multibyte)
893                     (subrp (symbol-function 'string-as-multibyte)))
894                'string-as-multibyte
895              'identity)
896            (or string "")))
897
898 (defun nnimap-make-callback (article gnus-callback buffer)
899   "Return a callback function."
900   `(lambda ()
901      (nnimap-callback ,article ,gnus-callback ,buffer)))
902
903 (defun nnimap-callback (article gnus-callback buffer)
904   (when (eq article (imap-current-message))
905     (remove-hook 'imap-fetch-data-hook
906                  (nnimap-make-callback article gnus-callback buffer))
907     (with-current-buffer buffer
908       (insert
909        (with-current-buffer nnimap-server-buffer
910          (nnimap-demule
911           (if (imap-capability 'IMAP4rev1)
912               ;; xxx don't just use car? alist doesn't contain
913               ;; anything else now, but it might...
914               (nth 2 (car (imap-message-get article 'BODYDETAIL)))
915             (imap-message-get article 'RFC822)))))
916       (nnheader-ms-strip-cr)
917       (funcall gnus-callback t))))
918
919 (defun nnimap-request-article-part (article part prop &optional
920                                             group server to-buffer detail)
921   (when (nnimap-possibly-change-group group server)
922     (let ((article (if (stringp article)
923                        (car-safe (imap-search
924                                   (format "HEADER Message-Id \"%s\"" article)
925                                   nnimap-server-buffer))
926                      article)))
927       (when article
928         (gnus-message 10 "nnimap: Fetching (part of) article %d from %s..."
929                       article (or group imap-current-mailbox
930                                   gnus-newsgroup-name))
931         (if (not nnheader-callback-function)
932             (with-current-buffer (or to-buffer nntp-server-buffer)
933               (erase-buffer)
934               (let ((data (imap-fetch article part prop nil
935                                       nnimap-server-buffer)))
936                 (when data
937                   (insert (nnimap-demule (if detail (nth 2 (car data)) data)))
938                   (nnheader-ms-strip-cr)
939                   (gnus-message
940                    10 "nnimap: Fetching (part of) article %d from %s...done"
941                    article (or group imap-current-mailbox gnus-newsgroup-name))
942                   (if (bobp)
943                       (nnheader-report 'nnimap "No such article %d in %s: %s"
944                                        article (or group imap-current-mailbox
945                                                    gnus-newsgroup-name)
946                                        (imap-error-text nnimap-server-buffer))
947                     (cons group article)))))
948           (add-hook 'imap-fetch-data-hook
949                     (nnimap-make-callback article
950                                           nnheader-callback-function
951                                           nntp-server-buffer))
952           (imap-fetch-asynch article part nil nnimap-server-buffer)
953           (cons group article))))))
954
955 (deffoo nnimap-asynchronous-p ()
956   t)
957
958 (deffoo nnimap-request-article (article &optional group server to-buffer)
959   (if (imap-capability 'IMAP4rev1 nnimap-server-buffer)
960       (nnimap-request-article-part
961        article "BODY.PEEK[]" 'BODYDETAIL group server to-buffer 'detail)
962     (nnimap-request-article-part
963      article "RFC822.PEEK" 'RFC822 group server to-buffer)))
964
965 (deffoo nnimap-request-head (article &optional group server to-buffer)
966   (if (imap-capability 'IMAP4rev1 nnimap-server-buffer)
967       (nnimap-request-article-part
968        article "BODY.PEEK[HEADER]" 'BODYDETAIL group server to-buffer 'detail)
969     (nnimap-request-article-part
970      article "RFC822.HEADER" 'RFC822.HEADER group server to-buffer)))
971
972 (deffoo nnimap-request-body (article &optional group server to-buffer)
973   (if (imap-capability 'IMAP4rev1 nnimap-server-buffer)
974       (nnimap-request-article-part
975        article "BODY.PEEK[TEXT]" 'BODYDETAIL group server to-buffer 'detail)
976     (nnimap-request-article-part
977      article "RFC822.TEXT.PEEK" 'RFC822.TEXT group server to-buffer)))
978
979 (deffoo nnimap-request-group (group &optional server fast)
980   (nnimap-request-update-info-internal
981    group
982    (gnus-get-info (gnus-group-prefixed-name
983                    group (gnus-server-to-method (format "nnimap:%s" server))))
984    server)
985   (when (nnimap-possibly-change-group group server)
986     (nnimap-before-find-minmax-bugworkaround)
987     (let (info)
988       (cond (fast group)
989             ((null (setq info (nnimap-find-minmax-uid group t)))
990              (nnheader-report 'nnimap "Could not get active info for %s"
991                               group))
992             (t
993              (nnheader-insert "211 %d %d %d %s\n" (or (nth 0 info) 0)
994                               (max 1 (or (nth 1 info) 1))
995                               (or (nth 2 info) 0) group)
996              (nnheader-report 'nnimap "Group %s selected" group)
997              t)))))
998
999 (defun nnimap-update-unseen (group &optional server)
1000   "Update the unseen count in `nnimap-mailbox-info'."
1001   (gnus-sethash
1002    (gnus-group-prefixed-name group server)
1003    (let ((old (gnus-gethash-safe (gnus-group-prefixed-name group server)
1004                                  nnimap-mailbox-info)))
1005      (list (nth 0 old) (nth 1 old)
1006            (imap-mailbox-status group 'unseen nnimap-server-buffer)
1007            (nth 3 old)))
1008    nnimap-mailbox-info))
1009
1010 (defun nnimap-close-group (group &optional server)
1011   (with-current-buffer nnimap-server-buffer
1012     (when (and (imap-opened)
1013                (nnimap-possibly-change-group group server))
1014       (nnimap-update-unseen group server)
1015       (case nnimap-expunge-on-close
1016         (always (progn
1017                   (imap-mailbox-expunge nnimap-close-asynchronous)
1018                   (unless nnimap-dont-close
1019                     (imap-mailbox-close nnimap-close-asynchronous))))
1020         (ask (if (and (imap-search "DELETED")
1021                       (gnus-y-or-n-p (format "Expunge articles in group `%s'? "
1022                                              imap-current-mailbox)))
1023                  (progn
1024                    (imap-mailbox-expunge nnimap-close-asynchronous)
1025                    (unless nnimap-dont-close
1026                      (imap-mailbox-close nnimap-close-asynchronous)))
1027                (imap-mailbox-unselect)))
1028         (t (imap-mailbox-unselect)))
1029       (not imap-current-mailbox))))
1030
1031 (defun nnimap-pattern-to-list-arguments (pattern)
1032   (mapcar (lambda (p)
1033             (cons (car-safe p) (or (cdr-safe p) p)))
1034           (if (and (listp pattern)
1035                    (listp (cdr pattern)))
1036               pattern
1037             (list pattern))))
1038
1039 (deffoo nnimap-request-list (&optional server)
1040   (when (nnimap-possibly-change-server server)
1041     (with-current-buffer nntp-server-buffer
1042       (erase-buffer))
1043     (gnus-message 5 "nnimap: Generating active list%s..."
1044                   (if (> (length server) 0) (concat " for " server) ""))
1045     (nnimap-before-find-minmax-bugworkaround)
1046     (with-current-buffer nnimap-server-buffer
1047       (dolist (pattern (nnimap-pattern-to-list-arguments nnimap-list-pattern))
1048         (dolist (mbx (funcall nnimap-request-list-method
1049                               (cdr pattern) (car pattern)))
1050           (or (member "\\NoSelect" (imap-mailbox-get 'list-flags mbx))
1051               (let ((info (nnimap-find-minmax-uid mbx 'examine)))
1052                 (when info
1053                   (with-current-buffer nntp-server-buffer
1054                     (insert (format "\"%s\" %d %d y\n"
1055                                     mbx (or (nth 2 info) 0)
1056                                     (max 1 (or (nth 1 info) 1)))))))))))
1057     (gnus-message 5 "nnimap: Generating active list%s...done"
1058                   (if (> (length server) 0) (concat " for " server) ""))
1059     t))
1060
1061 (deffoo nnimap-request-post (&optional server)
1062   (let ((success t))
1063     (dolist (mbx (message-unquote-tokens
1064                   (message-tokenize-header
1065                    (message-fetch-field "Newsgroups") ", ")) success)
1066       (let ((to-newsgroup (gnus-group-prefixed-name mbx gnus-command-method)))
1067         (or (gnus-active to-newsgroup)
1068             (gnus-activate-group to-newsgroup)
1069             (if (gnus-y-or-n-p (format "No such group: %s.  Create it? "
1070                                        to-newsgroup))
1071                 (or (and (gnus-request-create-group
1072                           to-newsgroup gnus-command-method)
1073                          (gnus-activate-group to-newsgroup nil nil
1074                                               gnus-command-method))
1075                     (error "Couldn't create group %s" to-newsgroup)))
1076             (error "No such group: %s" to-newsgroup))
1077         (unless (nnimap-request-accept-article mbx (nth 1 gnus-command-method))
1078           (setq success nil))))))
1079
1080 ;; Optional backend functions
1081
1082 (defun nnimap-string-lessp-numerical (s1 s2)
1083   "Return t if first arg string is less than second in numerical order."
1084   (cond ((string= s1 s2)
1085          nil)
1086         ((> (length s1) (length s2))
1087          nil)
1088         ((< (length s1) (length s2))
1089          t)
1090         ((< (string-to-number (substring s1 0 1))
1091             (string-to-number (substring s2 0 1)))
1092          t)
1093         ((> (string-to-number (substring s1 0 1))
1094             (string-to-number (substring s2 0 1)))
1095          nil)
1096         (t
1097          (nnimap-string-lessp-numerical (substring s1 1) (substring s2 1)))))
1098
1099 (deffoo nnimap-retrieve-groups (groups &optional server)
1100   (when (nnimap-possibly-change-server server)
1101     (gnus-message 5 "nnimap: Checking mailboxes...")
1102     (with-current-buffer nntp-server-buffer
1103       (erase-buffer)
1104       (nnimap-before-find-minmax-bugworkaround)
1105       (let (asyncgroups slowgroups)
1106         (if (null nnimap-retrieve-groups-asynchronous)
1107             (setq slowgroups groups)
1108           (dolist (group groups)
1109             (gnus-message 9 "nnimap: Quickly checking mailbox %s" group)
1110             (add-to-list (if (gnus-gethash-safe
1111                               (gnus-group-prefixed-name group server)
1112                               nnimap-mailbox-info)
1113                              'asyncgroups
1114                            'slowgroups)
1115                          (list group (imap-mailbox-status-asynch
1116                                       group '(uidvalidity uidnext unseen)
1117                                       nnimap-server-buffer))))
1118           (dolist (asyncgroup asyncgroups)
1119             (let ((group (nth 0 asyncgroup))
1120                   (tag   (nth 1 asyncgroup))
1121                   new old)
1122               (when (imap-ok-p (imap-wait-for-tag tag nnimap-server-buffer))
1123                 (if (or (not (string=
1124                               (nth 0 (gnus-gethash (gnus-group-prefixed-name
1125                                                     group server)
1126                                                    nnimap-mailbox-info))
1127                               (imap-mailbox-get 'uidvalidity group
1128                                                 nnimap-server-buffer)))
1129                         (not (string=
1130                               (nth 1 (gnus-gethash (gnus-group-prefixed-name
1131                                                     group server)
1132                                                    nnimap-mailbox-info))
1133                               (imap-mailbox-get 'uidnext group
1134                                                 nnimap-server-buffer))))
1135                     (push (list group) slowgroups)
1136                   (insert (nth 3 (gnus-gethash (gnus-group-prefixed-name
1137                                                 group server)
1138                                                nnimap-mailbox-info))))))))
1139         (dolist (group slowgroups)
1140           (if nnimap-retrieve-groups-asynchronous
1141               (setq group (car group)))
1142           (gnus-message 7 "nnimap: Mailbox %s modified" group)
1143           (imap-mailbox-put 'uidnext nil group nnimap-server-buffer)
1144           (or (member "\\NoSelect" (imap-mailbox-get 'list-flags group
1145                                                      nnimap-server-buffer))
1146               (let* ((info (nnimap-find-minmax-uid group 'examine))
1147                      (str (format "\"%s\" %d %d y\n" group
1148                                   (or (nth 2 info) 0)
1149                                   (max 1 (or (nth 1 info) 1)))))
1150                 (when (> (or (imap-mailbox-get 'recent group
1151                                                nnimap-server-buffer) 0)
1152                          0)
1153                   (push (list (cons group 0)) nnmail-split-history))
1154                 (insert str)
1155                 (when nnimap-retrieve-groups-asynchronous
1156                   (gnus-sethash
1157                    (gnus-group-prefixed-name group server)
1158                    (list (or (imap-mailbox-get
1159                               'uidvalidity group nnimap-server-buffer)
1160                              (imap-mailbox-status
1161                               group 'uidvalidity nnimap-server-buffer))
1162                          (or (imap-mailbox-get
1163                               'uidnext group nnimap-server-buffer)
1164                              (imap-mailbox-status
1165                               group 'uidnext nnimap-server-buffer))
1166                          (or (imap-mailbox-get
1167                               'unseen group nnimap-server-buffer)
1168                              (imap-mailbox-status
1169                               group 'unseen nnimap-server-buffer))
1170                          str)
1171                    nnimap-mailbox-info)))))))
1172     (gnus-message 5 "nnimap: Checking mailboxes...done")
1173     'active))
1174
1175 (deffoo nnimap-request-update-info-internal (group info &optional server)
1176   (when (nnimap-possibly-change-group group server)
1177     (when info;; xxx what does this mean? should we create a info?
1178       (with-current-buffer nnimap-server-buffer
1179         (gnus-message 5 "nnimap: Updating info for %s..."
1180                       (gnus-info-group info))
1181
1182         (when (nnimap-mark-permanent-p 'read)
1183           (let (seen unseen)
1184             ;; read info could contain articles marked unread by other
1185             ;; imap clients!  we correct this
1186             (setq seen (gnus-uncompress-range (gnus-info-read info))
1187                   unseen (imap-search "UNSEEN UNDELETED")
1188                   seen (gnus-set-difference seen unseen)
1189                   ;; seen might lack articles marked as read by other
1190                   ;; imap clients! we correct this
1191                   seen (append seen (imap-search "SEEN"))
1192                   ;; remove dupes
1193                   seen (sort seen '<)
1194                   seen (gnus-compress-sequence seen t)
1195                   ;; we can't return '(1) since this isn't a "list of ranges",
1196                   ;; and we can't return '((1)) since g-list-of-unread-articles
1197                   ;; is buggy so we return '((1 . 1)).
1198                   seen (if (and (integerp (car seen))
1199                                 (null (cdr seen)))
1200                            (list (cons (car seen) (car seen)))
1201                          seen))
1202             (gnus-info-set-read info seen)))
1203
1204         (mapcar (lambda (pred)
1205                   (when (or (eq (cdr pred) 'recent)
1206                             (and (nnimap-mark-permanent-p (cdr pred))
1207                                  (member (nnimap-mark-to-flag (cdr pred))
1208                                          (imap-mailbox-get 'flags))))
1209                     (gnus-info-set-marks
1210                      info
1211                      (gnus-update-alist-soft
1212                       (cdr pred)
1213                       (gnus-compress-sequence
1214                        (imap-search (nnimap-mark-to-predicate (cdr pred))))
1215                       (gnus-info-marks info))
1216                      t)))
1217                 gnus-article-mark-lists)
1218
1219         (when nnimap-importantize-dormant
1220           ;; nnimap mark dormant article as ticked too (for other clients)
1221           ;; so we remove that mark for gnus since we support dormant
1222           (gnus-info-set-marks
1223            info
1224            (gnus-update-alist-soft
1225             'tick
1226             (gnus-remove-from-range
1227              (cdr-safe (assoc 'tick (gnus-info-marks info)))
1228              (cdr-safe (assoc 'dormant (gnus-info-marks info))))
1229             (gnus-info-marks info))
1230            t))
1231
1232         (gnus-message 5 "nnimap: Updating info for %s...done"
1233                       (gnus-info-group info))
1234
1235         info))))
1236
1237 (deffoo nnimap-request-type (group &optional article)
1238   (if (and nnimap-news-groups (string-match nnimap-news-groups group))
1239       'news
1240     'mail))
1241
1242 (deffoo nnimap-request-set-mark (group actions &optional server)
1243   (when (nnimap-possibly-change-group group server)
1244     (with-current-buffer nnimap-server-buffer
1245       (let (action)
1246         (gnus-message 7 "nnimap: Setting marks in %s..." group)
1247         (while (setq action (pop actions))
1248           (let ((range (nth 0 action))
1249                 (what  (nth 1 action))
1250                 (cmdmarks (nth 2 action))
1251                 marks)
1252             ;; bookmark can't be stored (not list/range
1253             (setq cmdmarks (delq 'bookmark cmdmarks))
1254             ;; killed can't be stored (not list/range
1255             (setq cmdmarks (delq 'killed cmdmarks))
1256             ;; unsent are for nndraft groups only
1257             (setq cmdmarks (delq 'unsent cmdmarks))
1258             ;; cache flags are pointless on the server
1259             (setq cmdmarks (delq 'cache cmdmarks))
1260             ;; seen flags are local to each gnus
1261             (setq cmdmarks (delq 'seen cmdmarks))
1262             ;; recent marks can't be set
1263             (setq cmdmarks (delq 'recent cmdmarks))
1264             (when nnimap-importantize-dormant
1265               ;; flag dormant articles as ticked
1266               (if (memq 'dormant cmdmarks)
1267                   (setq cmdmarks (cons 'tick cmdmarks))))
1268             ;; remove stuff we are forbidden to store
1269             (mapc (lambda (mark)
1270                     (if (imap-message-flag-permanent-p
1271                          (nnimap-mark-to-flag mark))
1272                         (setq marks (cons mark marks))))
1273                   cmdmarks)
1274             (when (and range marks)
1275               (cond ((eq what 'del)
1276                      (imap-message-flags-del
1277                       (imap-range-to-message-set range)
1278                       (nnimap-mark-to-flag marks nil t)))
1279                     ((eq what 'add)
1280                      (imap-message-flags-add
1281                       (imap-range-to-message-set range)
1282                       (nnimap-mark-to-flag marks nil t)))
1283                     ((eq what 'set)
1284                      (imap-message-flags-set
1285                       (imap-range-to-message-set range)
1286                       (nnimap-mark-to-flag marks nil t)))))))
1287         (gnus-message 7 "nnimap: Setting marks in %s...done" group))))
1288   nil)
1289
1290 (defun nnimap-split-fancy ()
1291   "Like the function `nnmail-split-fancy', but uses `nnimap-split-fancy'."
1292   (let ((nnmail-split-fancy nnimap-split-fancy))
1293     (nnmail-split-fancy)))
1294
1295 (defun nnimap-split-to-groups (rules)
1296   ;; tries to match all rules in nnimap-split-rule against content of
1297   ;; nntp-server-buffer, returns a list of groups that matched.
1298   (with-current-buffer nntp-server-buffer
1299     ;; Fold continuation lines.
1300     (goto-char (point-min))
1301     (while (re-search-forward "\\(\r?\n[ \t]+\\)+" nil t)
1302       (replace-match " " t t))
1303     (if (functionp rules)
1304         (funcall rules)
1305       (let (to-groups regrepp)
1306         (catch 'split-done
1307           (dolist (rule rules to-groups)
1308             (let ((group (car rule))
1309                   (regexp (cadr rule)))
1310               (goto-char (point-min))
1311               (when (and (if (stringp regexp)
1312                              (progn
1313                                (if (not (stringp group))
1314                                    (setq group (eval group))
1315                                  (setq regrepp
1316                                        (string-match "\\\\[0-9&]" group)))
1317                                (re-search-forward regexp nil t))
1318                            (funcall regexp group))
1319                          ;; Don't enter the article into the same group twice.
1320                          (not (assoc group to-groups)))
1321                 (push (if regrepp
1322                           (nnmail-expand-newtext group)
1323                         group)
1324                       to-groups)
1325                 (or nnimap-split-crosspost
1326                     (throw 'split-done to-groups))))))))))
1327
1328 (defun nnimap-assoc-match (key alist)
1329   (let (element)
1330     (while (and alist (not element))
1331       (if (string-match (car (car alist)) key)
1332           (setq element (car alist)))
1333       (setq alist (cdr alist)))
1334     element))
1335
1336 (defun nnimap-split-find-rule (server inbox)
1337   (if (and (listp nnimap-split-rule) (listp (car nnimap-split-rule))
1338            (list (cdar nnimap-split-rule)) (listp (cadar nnimap-split-rule)))
1339       ;; extended format
1340       (cadr (nnimap-assoc-match inbox (cdr (nnimap-assoc-match
1341                                             server nnimap-split-rule))))
1342     nnimap-split-rule))
1343
1344 (defun nnimap-split-find-inbox (server)
1345   (if (listp nnimap-split-inbox)
1346       nnimap-split-inbox
1347     (list nnimap-split-inbox)))
1348
1349 (defun nnimap-split-articles (&optional group server)
1350   (when (nnimap-possibly-change-server server)
1351     (with-current-buffer nnimap-server-buffer
1352       (let (rule inbox removeorig (inboxes (nnimap-split-find-inbox server)))
1353         ;; iterate over inboxes
1354         (while (and (setq inbox (pop inboxes))
1355                     (nnimap-possibly-change-group inbox));; SELECT
1356           ;; find split rule for this server / inbox
1357           (when (setq rule (nnimap-split-find-rule server inbox))
1358             ;; iterate over articles
1359             (dolist (article (imap-search nnimap-split-predicate))
1360               (when (if (if (eq nnimap-split-download-body 'default)
1361                             nnimap-split-download-body-default
1362                           nnimap-split-download-body)
1363                         (and (nnimap-request-article article)
1364                              (with-current-buffer nntp-server-buffer (mail-narrow-to-head)))
1365                       (nnimap-request-head article))
1366                 ;; copy article to right group(s)
1367                 (setq removeorig nil)
1368                 (dolist (to-group (nnimap-split-to-groups rule))
1369                   (cond ((eq to-group 'junk)
1370                          (message "IMAP split removed %s:%s:%d" server inbox
1371                                   article)
1372                          (setq removeorig t))
1373                         ((imap-message-copy (number-to-string article)
1374                                             to-group nil 'nocopyuid)
1375                          (message "IMAP split moved %s:%s:%d to %s" server
1376                                   inbox article to-group)
1377                          (setq removeorig t)
1378                          (when nnmail-cache-accepted-message-ids
1379                            (with-current-buffer nntp-server-buffer
1380                              (let (msgid)
1381                                (and (setq msgid
1382                                           (nnmail-fetch-field "message-id"))
1383                                     (nnmail-cache-insert msgid
1384                                                          to-group
1385                                                          (nnmail-fetch-field "subject"))))))
1386                          ;; Add the group-art list to the history list.
1387                          (push (list (cons to-group 0)) nnmail-split-history))
1388                         (t
1389                          (message "IMAP split failed to move %s:%s:%d to %s"
1390                                   server inbox article to-group))))
1391                 (if (if (eq nnimap-split-download-body 'default)
1392                         nnimap-split-download-body-default
1393                       nnimap-split-download-body)
1394                     (widen))
1395                 ;; remove article if it was successfully copied somewhere
1396                 (and removeorig
1397                      (imap-message-flags-add (format "%d" article)
1398                                              "\\Seen \\Deleted")))))
1399           (when (imap-mailbox-select inbox);; just in case
1400             ;; todo: UID EXPUNGE (if available) to remove splitted articles
1401             (imap-mailbox-expunge)
1402             (imap-mailbox-close)))
1403         (when nnmail-cache-accepted-message-ids
1404           (nnmail-cache-close))
1405         t))))
1406
1407 (deffoo nnimap-request-scan (&optional group server)
1408   (nnimap-split-articles group server))
1409
1410 (deffoo nnimap-request-newgroups (date &optional server)
1411   (when (nnimap-possibly-change-server server)
1412     (with-current-buffer nntp-server-buffer
1413       (gnus-message 5 "nnimap: Listing subscribed mailboxes%s%s..."
1414                     (if (> (length server) 0) " on " "") server)
1415       (erase-buffer)
1416       (nnimap-before-find-minmax-bugworkaround)
1417       (dolist (pattern (nnimap-pattern-to-list-arguments
1418                         nnimap-list-pattern))
1419         (dolist (mbx (imap-mailbox-lsub (cdr pattern) (car pattern) nil
1420                                         nnimap-server-buffer))
1421           (or (catch 'found
1422                 (dolist (mailbox (imap-mailbox-get 'list-flags mbx
1423                                                    nnimap-server-buffer))
1424                   (if (string= (downcase mailbox) "\\noselect")
1425                       (throw 'found t)))
1426                 nil)
1427               (let ((info (nnimap-find-minmax-uid mbx 'examine)))
1428                 (when info
1429                   (insert (format "\"%s\" %d %d y\n"
1430                                   mbx (or (nth 2 info) 0)
1431                                   (max 1 (or (nth 1 info) 1)))))))))
1432       (gnus-message 5 "nnimap: Listing subscribed mailboxes%s%s...done"
1433                     (if (> (length server) 0) " on " "") server))
1434     t))
1435
1436 (deffoo nnimap-request-create-group (group &optional server args)
1437   (when (nnimap-possibly-change-server server)
1438     (or (imap-mailbox-status group 'uidvalidity nnimap-server-buffer)
1439         (imap-mailbox-create group nnimap-server-buffer)
1440         (nnheader-report 'nnimap "%S"
1441                          (imap-error-text nnimap-server-buffer)))))
1442
1443 (defun nnimap-time-substract (time1 time2)
1444   "Return TIME for TIME1 - TIME2."
1445   (let* ((ms (- (car time1) (car time2)))
1446          (ls (- (nth 1 time1) (nth 1 time2))))
1447     (if (< ls 0)
1448         (list (- ms 1) (+ (expt 2 16) ls))
1449       (list ms ls))))
1450
1451 (eval-when-compile (require 'parse-time))
1452 (defun nnimap-date-days-ago (daysago)
1453   "Return date, in format \"3-Aug-1998\", for DAYSAGO days ago."
1454   (require 'parse-time)
1455   (let* ((time (nnimap-time-substract (current-time) (days-to-time daysago)))
1456          (date (format-time-string
1457                 (format "%%d-%s-%%Y"
1458                         (capitalize (car (rassoc (nth 4 (decode-time time))
1459                                                  parse-time-months))))
1460                 time)))
1461     (if (eq ?0 (string-to-char date))
1462         (substring date 1)
1463       date)))
1464
1465 (defun nnimap-request-expire-articles-progress ()
1466   (gnus-message 5 "nnimap: Marking article %d for deletion..."
1467                 imap-current-message))
1468
1469 (defun nnimap-expiry-target (arts group server)
1470   (unless (eq nnmail-expiry-target 'delete)
1471     (with-temp-buffer
1472       (dolist (art arts)
1473         (nnimap-request-article art group server (current-buffer))
1474         ;; hints for optimization in `nnimap-request-accept-article'
1475         (let ((nnimap-current-move-article art)
1476               (nnimap-current-move-group group)
1477               (nnimap-current-move-server server))
1478           (nnmail-expiry-target-group nnmail-expiry-target group))))
1479     ;; It is not clear if `nnmail-expiry-target' somehow cause the
1480     ;; current group to be changed or not, so we make sure here.
1481     (nnimap-possibly-change-group group server)))
1482
1483 ;; Notice that we don't actually delete anything, we just mark them deleted.
1484 (deffoo nnimap-request-expire-articles (articles group &optional server force)
1485   (let ((artseq (gnus-compress-sequence articles)))
1486     (when (and artseq (nnimap-possibly-change-group group server))
1487       (with-current-buffer nnimap-server-buffer
1488         (let ((days (or (and nnmail-expiry-wait-function
1489                              (funcall nnmail-expiry-wait-function group))
1490                         nnmail-expiry-wait)))
1491           (cond ((or force (eq days 'immediate))
1492                  (let ((oldarts (imap-search
1493                                  (concat "UID "
1494                                          (imap-range-to-message-set artseq)))))
1495                    (when oldarts
1496                      (nnimap-expiry-target oldarts group server)
1497                      (when (imap-message-flags-add
1498                             (imap-range-to-message-set
1499                              (gnus-compress-sequence oldarts)) "\\Deleted")
1500                        (setq articles (gnus-set-difference
1501                                        articles oldarts))))))
1502                 ((and nnimap-search-uids-not-since-is-evil (numberp days))
1503                  (let* ((all-new-articles
1504                          (gnus-compress-sequence
1505                           (imap-search (format "SINCE %s"
1506                                                (nnimap-date-days-ago days)))))
1507                         (oldartseq
1508                          (gnus-range-difference artseq all-new-articles))
1509                         (oldarts (gnus-uncompress-range oldartseq)))
1510                    (when oldarts
1511                      (nnimap-expiry-target oldarts group server)
1512                      (when (imap-message-flags-add
1513                             (imap-range-to-message-set oldartseq)
1514                             "\\Deleted")
1515                        (setq articles (gnus-set-difference
1516                                        articles oldarts))))))
1517                 ((numberp days)
1518                  (let ((oldarts (imap-search
1519                                  (format nnimap-expunge-search-string
1520                                          (imap-range-to-message-set artseq)
1521                                          (nnimap-date-days-ago days))))
1522                        (imap-fetch-data-hook
1523                         '(nnimap-request-expire-articles-progress)))
1524                    (when oldarts
1525                      (nnimap-expiry-target oldarts group server)
1526                      (when (imap-message-flags-add
1527                             (imap-range-to-message-set
1528                              (gnus-compress-sequence oldarts)) "\\Deleted")
1529                        (setq articles (gnus-set-difference
1530                                        articles oldarts)))))))))))
1531   ;; return articles not deleted
1532   articles)
1533
1534 (deffoo nnimap-request-move-article (article group server accept-form 
1535                                              &optional last move-is-internal)
1536   (when (nnimap-possibly-change-server server)
1537     (save-excursion
1538       (let ((buf (get-buffer-create " *nnimap move*"))
1539             (nnimap-current-move-article article)
1540             (nnimap-current-move-group group)
1541             (nnimap-current-move-server nnimap-current-server)
1542             result)
1543         (gnus-message 10 "nnimap-request-move-article: this is an %s move"
1544                       (if move-is-internal
1545                           "internal"
1546                         "external"))
1547         ;; request the article only when the move is NOT internal
1548         (and (or move-is-internal
1549                  (nnimap-request-article article group server))
1550              (save-excursion
1551                (set-buffer buf)
1552                (buffer-disable-undo (current-buffer))
1553                (insert-buffer-substring nntp-server-buffer)
1554                (setq result (eval accept-form))
1555                (kill-buffer buf)
1556                result)
1557              (imap-message-flags-add
1558               (imap-range-to-message-set (list article))
1559               "\\Deleted" 'silent nnimap-server-buffer))
1560         result))))
1561
1562 (deffoo nnimap-request-accept-article (group &optional server last)
1563   (when (nnimap-possibly-change-server server)
1564     (let (uid)
1565       (if (setq uid
1566                 (if (string= nnimap-current-server nnimap-current-move-server)
1567                     ;; moving article within same server, speed it up...
1568                     (and (nnimap-possibly-change-group
1569                           nnimap-current-move-group)
1570                          (imap-message-copy (number-to-string
1571                                              nnimap-current-move-article)
1572                                             group 'dontcreate nil
1573                                             nnimap-server-buffer))
1574                   (with-current-buffer (current-buffer)
1575                     (goto-char (point-min))
1576                     ;; remove any 'From blabla' lines, some IMAP servers
1577                     ;; reject the entire message otherwise.
1578                     (when (looking-at "^From[^:]")
1579                       (delete-region (point) (progn (forward-line) (point))))
1580                     ;; turn into rfc822 format (\r\n eol's)
1581                     (while (search-forward "\n" nil t)
1582                       (replace-match "\r\n"))
1583                     (when nnmail-cache-accepted-message-ids
1584                       (nnmail-cache-insert (nnmail-fetch-field "message-id")
1585                                            group
1586                                            (nnmail-fetch-field "subject"))))
1587                   (when (and last nnmail-cache-accepted-message-ids)
1588                     (nnmail-cache-close))
1589                   ;; this 'or' is for Cyrus server bug
1590                   (or (null (imap-current-mailbox nnimap-server-buffer))
1591                       (imap-mailbox-unselect nnimap-server-buffer))
1592                   (imap-message-append group (current-buffer) nil nil
1593                                        nnimap-server-buffer)))
1594           (cons group (nth 1 uid))
1595         (nnheader-report 'nnimap (imap-error-text nnimap-server-buffer))))))
1596
1597 (deffoo nnimap-request-delete-group (group force &optional server)
1598   (when (nnimap-possibly-change-server server)
1599     (with-current-buffer nnimap-server-buffer
1600       (if force
1601           (or (null (imap-mailbox-status group 'uidvalidity))
1602               (imap-mailbox-delete group))
1603         ;; UNSUBSCRIBE?
1604         t))))
1605
1606 (deffoo nnimap-request-rename-group (group new-name &optional server)
1607   (when (nnimap-possibly-change-server server)
1608     (imap-mailbox-rename group new-name nnimap-server-buffer)))
1609
1610 (defun nnimap-expunge (mailbox server)
1611   (when (nnimap-possibly-change-group mailbox server)
1612     (imap-mailbox-expunge nil nnimap-server-buffer)))
1613
1614 (defun nnimap-acl-get (mailbox server)
1615   (when (nnimap-possibly-change-server server)
1616     (and (imap-capability 'ACL nnimap-server-buffer)
1617          (imap-mailbox-acl-get mailbox nnimap-server-buffer))))
1618
1619 (defun nnimap-acl-edit (mailbox method old-acls new-acls)
1620   (when (nnimap-possibly-change-server (cadr method))
1621     (unless (imap-capability 'ACL nnimap-server-buffer)
1622       (error "Your server does not support ACL editing"))
1623     (with-current-buffer nnimap-server-buffer
1624       ;; delete all removed identifiers
1625       (mapc (lambda (old-acl)
1626               (unless (assoc (car old-acl) new-acls)
1627                 (or (imap-mailbox-acl-delete (car old-acl) mailbox)
1628                     (error "Can't delete ACL for %s" (car old-acl)))))
1629             old-acls)
1630       ;; set all changed acl's
1631       (mapc (lambda (new-acl)
1632               (let ((new-rights (cdr new-acl))
1633                     (old-rights (cdr (assoc (car new-acl) old-acls))))
1634                 (unless (and old-rights new-rights
1635                              (string= old-rights new-rights))
1636                   (or (imap-mailbox-acl-set (car new-acl) new-rights mailbox)
1637                       (error "Can't set ACL for %s to %s" (car new-acl)
1638                              new-rights)))))
1639             new-acls)
1640       t)))
1641
1642 \f
1643 ;;; Internal functions
1644
1645 ;;
1646 ;; This is confusing.
1647 ;;
1648 ;; mark      => read, tick, draft, reply etc
1649 ;; flag      => "\\Seen", "\\Flagged", "\\Draft", "gnus-expire" etc
1650 ;; predicate => "SEEN", "FLAGGED", "DRAFT", "KEYWORD gnus-expire" etc
1651 ;;
1652 ;; Mark should not really contain 'read since it's not a "mark" in the Gnus
1653 ;; world, but we cheat.  Mark == gnus-article-mark-lists + '(read . read).
1654 ;;
1655
1656 (defconst nnimap-mark-to-predicate-alist
1657   (mapcar
1658    (lambda (pair)                       ; cdr is the mark
1659      (or (assoc (cdr pair)
1660                 '((read . "SEEN")
1661                   (tick . "FLAGGED")
1662                   (draft . "DRAFT")
1663                   (recent . "RECENT")
1664                   (reply . "ANSWERED")))
1665          (cons (cdr pair)
1666                (format "KEYWORD gnus-%s" (symbol-name (cdr pair))))))
1667    (cons '(read . read) gnus-article-mark-lists)))
1668
1669 (defun nnimap-mark-to-predicate (pred)
1670   "Convert a Gnus mark (a symbol such as read, tick, expire) to a IMAP predicate.
1671 This is a string such as \"SEEN\", \"FLAGGED\", \"KEYWORD gnus-expire\",
1672 to be used within a IMAP SEARCH query."
1673   (cdr (assq pred nnimap-mark-to-predicate-alist)))
1674
1675 (defconst nnimap-mark-to-flag-alist
1676   (mapcar
1677    (lambda (pair)
1678      (or (assoc (cdr pair)
1679                 '((read . "\\Seen")
1680                   (tick . "\\Flagged")
1681                   (draft . "\\Draft")
1682                   (recent . "\\Recent")
1683                   (reply . "\\Answered")))
1684          (cons (cdr pair)
1685                (format "gnus-%s" (symbol-name (cdr pair))))))
1686    (cons '(read . read) gnus-article-mark-lists)))
1687
1688 (defun nnimap-mark-to-flag-1 (preds)
1689   (if (and (not (null preds)) (listp preds))
1690       (cons (nnimap-mark-to-flag (car preds))
1691             (nnimap-mark-to-flag (cdr preds)))
1692     (cdr (assoc preds nnimap-mark-to-flag-alist))))
1693
1694 (defun nnimap-mark-to-flag (preds &optional always-list make-string)
1695   "Convert a Gnus mark (a symbol such as read, tick, expire) to a IMAP flag.
1696 This is a string such as \"\\Seen\", \"\\Flagged\", \"gnus-expire\", to
1697 be used in a STORE FLAGS command."
1698   (let ((result (nnimap-mark-to-flag-1 preds)))
1699     (setq result (if (and (or make-string always-list)
1700                           (not (listp result)))
1701                      (list result)
1702                    result))
1703     (if make-string
1704         (mapconcat (lambda (flag)
1705                      (if (listp flag)
1706                          (mapconcat 'identity flag " ")
1707                        flag))
1708                    result " ")
1709       result)))
1710
1711 (defun nnimap-mark-permanent-p (mark &optional group)
1712   "Return t iff MARK can be permanently (between IMAP sessions) saved on articles, in GROUP."
1713   (imap-message-flag-permanent-p (nnimap-mark-to-flag mark)))
1714
1715 (when nnimap-debug
1716   (require 'trace)
1717   (buffer-disable-undo (get-buffer-create nnimap-debug-buffer))
1718   (mapcar (lambda (f) (trace-function-background f nnimap-debug-buffer))
1719           '(
1720             nnimap-possibly-change-server
1721             nnimap-verify-uidvalidity
1722             nnimap-find-minmax-uid
1723             nnimap-before-find-minmax-bugworkaround
1724             nnimap-possibly-change-group
1725             ;;nnimap-replace-whitespace
1726             nnimap-retrieve-headers-progress
1727             nnimap-retrieve-which-headers
1728             nnimap-group-overview-filename
1729             nnimap-retrieve-headers-from-file
1730             nnimap-retrieve-headers-from-server
1731             nnimap-retrieve-headers
1732             nnimap-open-connection
1733             nnimap-open-server
1734             nnimap-server-opened
1735             nnimap-close-server
1736             nnimap-request-close
1737             nnimap-status-message
1738             ;;nnimap-demule
1739             nnimap-request-article-part
1740             nnimap-request-article
1741             nnimap-request-head
1742             nnimap-request-body
1743             nnimap-request-group
1744             nnimap-close-group
1745             nnimap-pattern-to-list-arguments
1746             nnimap-request-list
1747             nnimap-request-post
1748             nnimap-retrieve-groups
1749             nnimap-request-update-info-internal
1750             nnimap-request-type
1751             nnimap-request-set-mark
1752             nnimap-split-to-groups
1753             nnimap-split-find-rule
1754             nnimap-split-find-inbox
1755             nnimap-split-articles
1756             nnimap-request-scan
1757             nnimap-request-newgroups
1758             nnimap-request-create-group
1759             nnimap-time-substract
1760             nnimap-date-days-ago
1761             nnimap-request-expire-articles-progress
1762             nnimap-request-expire-articles
1763             nnimap-request-move-article
1764             nnimap-request-accept-article
1765             nnimap-request-delete-group
1766             nnimap-request-rename-group
1767             gnus-group-nnimap-expunge
1768             gnus-group-nnimap-edit-acl
1769             gnus-group-nnimap-edit-acl-done
1770             nnimap-group-mode-hook
1771             nnimap-mark-to-predicate
1772             nnimap-mark-to-flag-1
1773             nnimap-mark-to-flag
1774             nnimap-mark-permanent-p
1775             )))
1776
1777 (provide 'nnimap)
1778
1779 ;;; nnimap.el ends here