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