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