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