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