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