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