1 ;;; nnimap.el --- imap backend for Gnus
3 ;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007 Free Software Foundation, Inc.
6 ;; Author: Simon Josefsson <jas@pdc.kth.se>
7 ;; Jim Radford <radford@robby.caltech.edu>
10 ;; This file is part of GNU Emacs.
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)
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.
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
24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25 ;; Boston, MA 02110-1301, USA.
29 ;; Todo, major things:
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)
35 ;; o MIME (partial article fetches)
36 ;; o Split to other backends, different split rules for different
39 ;; Todo, minor things:
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?)
47 ;; o Respooling (fix Gnus?) (unnecessary?)
48 ;; o Add support for the following: (if applicable)
49 ;; request-list-newsgroups, request-regenerate
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
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
60 ;; o Rewrite UID SEARCH UID X as UID FETCH X (UID) for those with slow servers
74 (eval-when-compile (require 'cl
))
78 (defconst nnimap-version
"nnimap 1.0")
81 "Reading IMAP mail with Gnus."
84 (defvoo nnimap-address nil
85 "Address of physical IMAP server. If nil, use the virtual server's name.")
87 (defvoo nnimap-server-port nil
88 "Port number on physical IMAP server.
89 If nil, defaults to 993 for TLS/SSL connections and 143 otherwise.")
91 ;; Splitting variables
93 (defcustom nnimap-split-crosspost t
94 "If non-nil, do crossposting if several split methods match the mail.
95 If nil, the first match found will be used."
99 (defcustom nnimap-split-inbox nil
100 "Name of mailbox to split mail from.
102 Mail is read from this mailbox and split according to rules in
105 This can be a string or a list of strings."
107 :type
'(choice (string)
110 (define-widget 'nnimap-strict-function
'function
111 "This widget only matches values that are functionp.
113 Warning: This means that a value that is the symbol of a not yet
114 loaded function will not match. Use with care."
115 :match
'nnimap-strict-function-match
)
117 (defun nnimap-strict-function-match (widget value
)
118 "Ignoring WIDGET, match if VALUE is a function."
121 (defcustom nnimap-split-rule nil
122 "Mail will be split according to these rules.
124 Mail is read from mailbox(es) specified in `nnimap-split-inbox'.
126 If you'd like, for instance, one mail group for mail from the
127 \"gnus-imap\" mailing list, one group for junk mail and leave
128 everything else in the incoming mailbox, you could do something like
131 \(setq nnimap-split-rule '((\"INBOX.gnus-imap\" \"From:.*gnus-imap\")
132 (\"INBOX.junk\" \"Subject:.*buy\")))
134 As you can see, `nnimap-split-rule' is a list of lists, where the
135 first element in each \"rule\" is the name of the IMAP mailbox (or the
136 symbol `junk' if you want to remove the mail), and the second is a
137 regexp that nnimap will try to match on the header to find a fit.
139 The second element can also be a function. In that case, it will be
140 called narrowed to the headers with the first element of the rule as
141 the argument. It should return a non-nil value if it thinks that the
142 mail belongs in that group.
144 This variable can also have a function as its value, the function will
145 be called with the headers narrowed and should return a group where it
146 thinks the article should be splitted to. See `nnimap-split-fancy'.
148 To allow for different split rules on different virtual servers, and
149 even different split rules in different inboxes on the same server,
150 the syntax of this variable have been extended along the lines of:
152 \(setq nnimap-split-rule
153 '((\"my1server\" (\".*\" ((\"ding\" \"ding@gnus.org\")
154 (\"junk\" \"From:.*Simon\")))
155 (\"my2server\" (\"INBOX\" nnimap-split-fancy))
156 (\"my[34]server\" (\".*\" ((\"private\" \"To:.*Simon\")
157 (\"junk\" my-junk-func)))))
159 The virtual server name is in fact a regexp, so that the same rules
160 may apply to several servers. In the example, the servers
161 \"my3server\" and \"my4server\" both use the same rules. Similarly,
162 the inbox string is also a regexp. The actual splitting rules are as
163 before, either a function, or a list with group/regexp or
164 group/function elements."
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"
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")))))))))
188 (defcustom nnimap-split-predicate
"UNSEEN UNDELETED"
189 "The predicate used to find articles to split.
190 If you use another IMAP client to peek on articles but always would
191 like nnimap to split them once it's started, you could change this to
192 \"UNDELETED\". Other available predicates are available in
193 RFC2060 section 6.4.4."
197 (defcustom nnimap-split-fancy nil
198 "Like the variable `nnmail-split-fancy'."
202 (defvar nnimap-split-download-body-default nil
203 "Internal variable with default value for `nnimap-split-download-body'.")
205 (defcustom nnimap-split-download-body
'default
206 "Whether to download entire articles during splitting.
207 This is generally not required, and will slow things down considerably.
208 You may need it if you want to use an advanced splitting function that
209 analyzes the body before splitting the article.
210 If this variable is nil, bodies will not be downloaded; if this
211 variable is the symbol `default' the default behaviour is
212 used (which currently is nil, unless you use a statistical
213 spam.el test); if this variable is another non-nil value bodies
217 :type
'(choice (const :tag
"Let system decide" deault
)
220 ;; Performance / bug workaround variables
222 (defcustom nnimap-close-asynchronous t
223 "Close mailboxes asynchronously in `nnimap-close-group'.
224 This means that errors caught by nnimap when closing the mailbox will
225 not prevent Gnus from updating the group status, which may be harmful.
226 However, it increases speed."
231 (defcustom nnimap-dont-close t
232 "Never close mailboxes.
233 This increases the speed of closing mailboxes (quiting group) but may
234 decrease the speed of selecting another mailbox later. Re-selecting
235 the same mailbox will be faster though."
240 (defcustom nnimap-retrieve-groups-asynchronous t
241 "Send asynchronous STATUS commands for each mailbox before checking mail.
242 If you have mailboxes that rarely receives mail, this speeds up new
243 mail checking. It works by first sending STATUS commands for each
244 mailbox, and then only checking groups which has a modified UIDNEXT
245 more carefully for new mail.
247 In summary, the default is O((1-p)*k+p*n) and changing it to nil makes
248 it O(n). If p is small, then the default is probably faster."
253 (defvoo nnimap-need-unselect-to-notice-new-mail nil
254 "Unselect mailboxes before looking for new mail in them.
255 Some servers seem to need this under some circumstances.")
257 ;; Authorization / Privacy variables
259 (defvoo nnimap-auth-method nil
262 (defvoo nnimap-stream nil
263 "How nnimap will connect to the server.
265 The default, nil, will try to use the \"best\" method the server can
270 1) you want to connect with TLS/SSL. The TLS/SSL integration
271 with IMAP is suboptimal so you'll have to tell it
274 2) 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.
278 Possible choices: gssapi, kerberos4, starttls, tls, ssl, network, shell.
279 See also `imap-streams' and `imap-stream-alist'.")
281 (defvoo nnimap-authenticator nil
282 "How nnimap authenticate itself to the server.
284 The default, nil, will try to use the \"best\" method the server can
287 There is only one reason for fiddling with this variable, and that is
288 if your server is more capable than your environment -- i.e. you
289 connect to a server that accept Kerberos login's but you haven't
290 installed the `imtest' program or your machine isn't configured for
293 Possible choices: gssapi, kerberos4, digest-md5, cram-md5, login, anonymous.
294 See also `imap-authenticators' and `imap-authenticator-alist'")
296 (defvoo nnimap-directory
(nnheader-concat gnus-directory
"overview/")
297 "Directory to keep NOV cache files for nnimap groups.
298 See also `nnimap-nov-file-name'.")
300 (defvoo nnimap-nov-file-name
"nnimap."
301 "NOV cache base filename.
302 The group name and `nnimap-nov-file-name-suffix' will be appended. A
303 typical 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")
308 (defvoo nnimap-nov-file-name-suffix
".novcache"
309 "Suffix for NOV cache base filename.")
311 (defvoo nnimap-nov-is-evil gnus-agent
312 "If non-nil, never generate or use a local nov database for this backend.
313 Using nov databases should speed up header fetching considerably.
314 However, it will invoke a UID SEARCH UID command on the server, and
315 some servers implement this command inefficiently by opening each and
316 every message in the group, thus making it quite slow.
317 Unlike other backends, you do not need to take special care if you
318 flip this variable.")
320 (defvoo nnimap-search-uids-not-since-is-evil nil
321 "If non-nil, avoid \"UID SEARCH UID ... NOT SINCE\" queries when expiring.
322 Instead, use \"UID SEARCH SINCE\" to prune the list of expirable
323 articles within Gnus. This seems to be faster on Courier in some cases.")
325 (defvoo nnimap-expunge-on-close
'always
; 'ask, 'never
326 "Whether to expunge a group when it is closed.
327 When a IMAP group with articles marked for deletion is closed, this
328 variable determine if nnimap should actually remove the articles or
331 If always, nnimap always perform a expunge when closing the group.
332 If never, nnimap never expunges articles marked for deletion.
333 If ask, nnimap will ask you if you wish to expunge marked articles.
335 When setting this variable to `never', you can only expunge articles
336 by using `G x' (gnus-group-nnimap-expunge) from the Group buffer.")
338 (defvoo nnimap-list-pattern
"*"
339 "A string LIMIT or list of strings with mailbox wildcards used to limit available groups.
340 See below for available wildcards.
342 The LIMIT string can be a cons cell (REFERENCE . LIMIT), where
343 REFERENCE will be passed as the first parameter to LIST/LSUB. The
344 semantics of this are server specific, on the University of Washington
345 server you can specify a directory.
348 '(\"INBOX\" \"mail/*\" (\"~friend/mail/\" . \"list/*\"))
350 There are two wildcards * and %. * matches everything, % matches
351 everything in the current hierarchy.")
353 (defvoo nnimap-news-groups nil
354 "IMAP support a news-like mode, also known as bulletin board mode,
355 where replies is sent via IMAP instead of SMTP.
357 This variable should contain a regexp matching groups where you wish
358 replies to be stored to the mailbox directly.
361 '(\"^[^I][^N][^B][^O][^X].*$\")
363 This will match all groups not beginning with \"INBOX\".
365 Note that there is nothing technically different between mail-like and
366 news-like mailboxes. If you wish to have a group with todo items or
367 similar which you wouldn't want to set up a mailing list for, you can
368 use this to make replies go directly to the group.")
370 (defvoo nnimap-expunge-search-string
"UID %s NOT SINCE %s"
371 "IMAP search command to use for articles that are to be expired.
372 The first %s is replaced by a UID set of articles to search on,
373 and the second %s is replaced by a date criterium.
375 One useful (and perhaps the only useful) value to change this to would
376 be `UID %s NOT SENTSINCE %s' to make nnimap use the Date: header
377 instead of the internal date of messages. See section 6.4.4 of RFC
378 2060 for more information on valid strings.
380 However, if `nnimap-search-uids-not-since-is-evil' is true, this
381 variable has no effect since the search logic is reversed.")
383 (defvoo nnimap-importantize-dormant t
384 "If non-nil, mark \"dormant\" articles as \"ticked\" for other IMAP clients.
385 Note that within Gnus, dormant articles will still (only) be
386 marked as ticked. This is to make \"dormant\" articles stand out,
387 just like \"ticked\" articles, in other IMAP clients.")
389 (defvoo nnimap-server-address nil
390 "Obsolete. Use `nnimap-address'.")
392 (defcustom nnimap-authinfo-file
"~/.authinfo"
393 "Authorization information for IMAP servers. In .netrc format."
396 (repeat :tag
"Entries"
399 :value
("" ("login" .
"") ("password" .
""))
403 (const :format
"" "login")
404 (string :format
"Login: %v"))
406 (const :format
"" "password")
407 (string :format
"Password: %v"))))))
410 (defcustom nnimap-prune-cache t
411 "If non-nil, nnimap check whether articles still exist on server before using data stored in NOV cache."
415 (defvar nnimap-request-list-method
'imap-mailbox-list
416 "Method to use to request a list of all folders from the server.
417 If this is 'imap-mailbox-lsub, then use a server-side subscription list to
418 restrict visible folders.")
420 (defcustom nnimap-debug nil
421 "If non-nil, random debug spews are placed in *nnimap-debug* buffer.
422 Note that username, passwords and other privacy sensitive
423 information (such as e-mail) may be stored in the *nnimap-debug*
424 buffer. It is not written to disk, however. Do not enable this
425 variable unless you are comfortable with that."
429 ;; Internal variables:
431 (defvar nnimap-debug-buffer
"*nnimap-debug*")
432 (defvar nnimap-mailbox-info
(gnus-make-hashtable 997))
433 (defvar nnimap-current-move-server nil
)
434 (defvar nnimap-current-move-group nil
)
435 (defvar nnimap-current-move-article nil
)
436 (defvar nnimap-length
)
437 (defvar nnimap-progress-chars
'(?| ?
/ ?- ?
\\))
438 (defvar nnimap-progress-how-often
20)
439 (defvar nnimap-counter
)
440 (defvar nnimap-server-buffer-alist nil
) ;; Map server name to buffers.
441 (defvar nnimap-current-server nil
) ;; Current server
442 (defvar nnimap-server-buffer nil
) ;; Current servers' buffer
446 (nnoo-define-basics nnimap
)
448 ;; Utility functions:
450 (defsubst nnimap-get-server-buffer
(server)
451 "Return buffer for SERVER, if nil use current server."
452 (cadr (assoc (or server nnimap-current-server
) nnimap-server-buffer-alist
)))
454 (defun nnimap-possibly-change-server (server)
455 "Return buffer for SERVER, changing the current server as a side-effect.
456 If SERVER is nil, uses the current server."
457 (setq nnimap-current-server
(or server nnimap-current-server
)
458 nnimap-server-buffer
(nnimap-get-server-buffer nnimap-current-server
)))
460 (defun nnimap-verify-uidvalidity (group server
)
461 "Verify stored uidvalidity match current one in GROUP on SERVER."
462 (let* ((gnusgroup (gnus-group-prefixed-name
463 group
(gnus-server-to-method
464 (format "nnimap:%s" server
))))
465 (new-uidvalidity (imap-mailbox-get 'uidvalidity
))
466 (old-uidvalidity (gnus-group-get-parameter gnusgroup
'uidvalidity
))
467 (dir (file-name-as-directory (expand-file-name nnimap-directory
)))
468 (nameuid (nnheader-translate-file-chars
469 (concat nnimap-nov-file-name
470 (if (equal server
"")
472 server
) "." group
"." old-uidvalidity
473 nnimap-nov-file-name-suffix
) t
))
474 (file (if (or nnmail-use-long-file-names
475 (file-exists-p (expand-file-name nameuid dir
)))
476 (expand-file-name nameuid dir
)
478 (mm-encode-coding-string
479 (nnheader-replace-chars-in-string nameuid ?. ?
/)
480 nnmail-pathname-coding-system
)
483 (if (not (equal old-uidvalidity new-uidvalidity
))
485 (gnus-delete-file file
)
486 (gnus-group-set-parameter gnusgroup
'uidvalidity new-uidvalidity
)
488 (gnus-group-add-parameter gnusgroup
(cons 'uidvalidity new-uidvalidity
))
491 (defun nnimap-before-find-minmax-bugworkaround ()
492 "Function called before iterating through mailboxes with
493 `nnimap-find-minmax-uid'."
494 (when nnimap-need-unselect-to-notice-new-mail
495 ;; XXX this is for UoW imapd problem, it doesn't notice new mail in
496 ;; currently selected mailbox without a re-select/examine.
497 (or (null (imap-current-mailbox nnimap-server-buffer
))
498 (imap-mailbox-unselect nnimap-server-buffer
))))
500 (defun nnimap-find-minmax-uid (group &optional examine
)
501 "Find lowest and highest active article number in GROUP.
502 If EXAMINE is non-nil the group is selected read-only."
503 (with-current-buffer nnimap-server-buffer
504 (when (or (string= group
(imap-current-mailbox))
505 (imap-mailbox-select group examine
))
507 (when (> (imap-mailbox-get 'exists
) 0)
508 (imap-fetch "1,*" "UID" nil
'nouidfetch
)
509 (imap-message-map (lambda (uid Uid
)
510 (setq minuid
(if minuid
(min minuid uid
) uid
)
511 maxuid
(if maxuid
(max maxuid uid
) uid
)))
513 (list (imap-mailbox-get 'exists
) minuid maxuid
)))))
515 (defun nnimap-possibly-change-group (group &optional server
)
516 "Make GROUP the current group, and SERVER the current server."
517 (when (nnimap-possibly-change-server server
)
518 (with-current-buffer nnimap-server-buffer
519 (if (or (null group
) (imap-current-mailbox-p group
))
521 (if (imap-mailbox-select group
)
522 (if (or (nnimap-verify-uidvalidity
523 group
(or server nnimap-current-server
))
524 (zerop (imap-mailbox-get 'exists group
))
525 t
;; for OGnus to see if ignoring uidvalidity
526 ;; changes has any bad effects.
529 "nnimap: Group %s is not uidvalid. Continue? " group
)))
531 (imap-mailbox-unselect)
532 (error "nnimap: Group %s is not uid-valid" group
))
533 (nnheader-report 'nnimap
(imap-error-text)))))))
535 (defun nnimap-replace-whitespace (string)
536 "Return STRING with all whitespace replaced with space."
538 (while (string-match "[\r\n\t]+" string
)
539 (setq string
(replace-match " " t t string
)))
542 ;; Required backend functions
544 (defun nnimap-retrieve-headers-progress ()
545 "Hook to insert NOV line for current article into `nntp-server-buffer'."
546 (and (numberp nnmail-large-newsgroup
)
547 (zerop (%
(incf nnimap-counter
) nnimap-progress-how-often
))
548 (> nnimap-length nnmail-large-newsgroup
)
549 (nnheader-message 6 "nnimap: Retrieving headers... %c"
550 (nth (/ (% nnimap-counter
551 (* (length nnimap-progress-chars
)
552 nnimap-progress-how-often
))
553 nnimap-progress-how-often
)
554 nnimap-progress-chars
)))
555 (with-current-buffer nntp-server-buffer
556 (let (headers lines chars uid mbx
)
557 (with-current-buffer nnimap-server-buffer
558 (setq uid imap-current-message
559 mbx imap-current-mailbox
560 headers
(nnimap-demule
561 (if (imap-capability 'IMAP4rev1
)
562 ;; xxx don't just use car? alist doesn't contain
563 ;; anything else now, but it might...
564 (nth 2 (car (imap-message-get uid
'BODYDETAIL
)))
565 (imap-message-get uid
'RFC822.HEADER
)))
566 lines
(imap-body-lines (imap-message-body imap-current-message
))
567 chars
(imap-message-get imap-current-message
'RFC822.SIZE
)))
570 (buffer-disable-undo)
572 (let ((head (nnheader-parse-naked-head)))
573 (mail-header-set-number head uid
)
574 (mail-header-set-chars head chars
)
575 (mail-header-set-lines head lines
)
576 (mail-header-set-xref
577 head
(format "%s %s:%d" (system-name) mbx uid
))
580 (defun nnimap-retrieve-which-headers (articles fetch-old
)
581 "Get a range of articles to fetch based on ARTICLES and FETCH-OLD."
582 (with-current-buffer nnimap-server-buffer
583 (if (numberp (car-safe articles
))
586 (imap-range-to-message-set
587 (gnus-compress-sequence
588 (append (gnus-uncompress-sequence
590 (cons (if (numberp fetch-old
)
591 (max 1 (- (car articles
) fetch-old
))
593 (1- (car articles
)))))
595 (mapcar (lambda (msgid)
597 (format "HEADER Message-Id \"%s\"" msgid
)))
600 (defun nnimap-group-overview-filename (group server
)
601 "Make file name for GROUP on SERVER."
602 (let* ((dir (file-name-as-directory (expand-file-name nnimap-directory
)))
603 (uidvalidity (gnus-group-get-parameter
604 (gnus-group-prefixed-name
605 group
(gnus-server-to-method
606 (format "nnimap:%s" server
)))
608 (name (nnheader-translate-file-chars
609 (concat nnimap-nov-file-name
610 (if (equal server
"")
612 server
) "." group nnimap-nov-file-name-suffix
) t
))
613 (nameuid (nnheader-translate-file-chars
614 (concat nnimap-nov-file-name
615 (if (equal server
"")
617 server
) "." group
"." uidvalidity
618 nnimap-nov-file-name-suffix
) t
))
619 (oldfile (if (or nnmail-use-long-file-names
620 (file-exists-p (expand-file-name name dir
)))
621 (expand-file-name name dir
)
623 (mm-encode-coding-string
624 (nnheader-replace-chars-in-string name ?. ?
/)
625 nnmail-pathname-coding-system
)
627 (newfile (if (or nnmail-use-long-file-names
628 (file-exists-p (expand-file-name nameuid dir
)))
629 (expand-file-name nameuid dir
)
631 (mm-encode-coding-string
632 (nnheader-replace-chars-in-string nameuid ?. ?
/)
633 nnmail-pathname-coding-system
)
635 (when (and (file-exists-p oldfile
) (not (file-exists-p newfile
)))
636 (message "nnimap: Upgrading novcache filename...")
638 (gnus-make-directory (file-name-directory newfile
))
639 (unless (ignore-errors (rename-file oldfile newfile
) t
)
640 (if (ignore-errors (copy-file oldfile newfile
) t
)
641 (delete-file oldfile
)
642 (error "Can't rename `%s' to `%s'" oldfile newfile
))))
645 (defun nnimap-retrieve-headers-from-file (group server
)
646 (with-current-buffer nntp-server-buffer
647 (let ((nov (nnimap-group-overview-filename group server
)))
648 (when (file-exists-p nov
)
649 (mm-insert-file-contents nov
)
650 (set-buffer-modified-p nil
)
651 (let ((min (ignore-errors (goto-char (point-min))
652 (read (current-buffer))))
653 (max (ignore-errors (goto-char (point-max))
655 (read (current-buffer)))))
656 (if (and (numberp min
) (numberp max
))
658 ;; junk, remove it, it's saved later
662 (defun nnimap-retrieve-headers-from-server (articles group server
)
663 (with-current-buffer nnimap-server-buffer
664 (let ((imap-fetch-data-hook '(nnimap-retrieve-headers-progress))
665 (nnimap-length (gnus-range-length articles
))
667 (imap-fetch (imap-range-to-message-set articles
)
668 (concat "(UID RFC822.SIZE BODY "
670 (append '(Subject From Date Message-Id
671 References In-Reply-To Xref
)
673 nnmail-extra-headers
))))
674 (if (imap-capability 'IMAP4rev1
)
675 (format "BODY.PEEK[HEADER.FIELDS %s])" headers
)
676 (format "RFC822.HEADER.LINES %s)" headers
)))))
677 (with-current-buffer nntp-server-buffer
678 (sort-numeric-fields 1 (point-min) (point-max)))
679 (and (numberp nnmail-large-newsgroup
)
680 (> nnimap-length nnmail-large-newsgroup
)
681 (nnheader-message 6 "nnimap: Retrieving headers...done")))))
683 (defun nnimap-dont-use-nov-p (group server
)
684 (or gnus-nov-is-evil nnimap-nov-is-evil
685 (unless (and (gnus-make-directory
687 (nnimap-group-overview-filename group server
)))
689 (nnimap-group-overview-filename group server
)))
690 (message "nnimap: Nov cache not writable, %s"
691 (nnimap-group-overview-filename group server
)))))
693 (deffoo nnimap-retrieve-headers
(articles &optional group server fetch-old
)
694 (when (nnimap-possibly-change-group group server
)
695 (with-current-buffer nntp-server-buffer
697 (if (nnimap-dont-use-nov-p group server
)
698 (nnimap-retrieve-headers-from-server
699 (gnus-compress-sequence articles
) group server
)
700 (let (uids cached low high
)
701 (when (setq uids
(nnimap-retrieve-which-headers articles fetch-old
)
703 high
(car (last uids
)))
704 (if (setq cached
(nnimap-retrieve-headers-from-file group server
))
706 ;; fetch articles with uids before cache block
707 (when (< low
(car cached
))
708 (goto-char (point-min))
709 (nnimap-retrieve-headers-from-server
710 (cons low
(1- (car cached
))) group server
))
711 ;; fetch articles with uids after cache block
712 (when (> high
(cdr cached
))
713 (goto-char (point-max))
714 (nnimap-retrieve-headers-from-server
715 (cons (1+ (cdr cached
)) high
) group server
))
716 (when nnimap-prune-cache
717 ;; remove nov's for articles which has expired on server
718 (goto-char (point-min))
719 (dolist (uid (gnus-set-difference articles uids
))
720 (when (re-search-forward (format "^%d\t" uid
) nil t
)
721 (gnus-delete-line)))))
722 ;; nothing cached, fetch whole range from server
723 (nnimap-retrieve-headers-from-server
724 (cons low high
) group server
))
725 (when (buffer-modified-p)
727 (point-min) (point-max)
728 (nnimap-group-overview-filename group server
) nil
'nomesg
))
729 (nnheader-nov-delete-outside-range low high
))))
732 (defun nnimap-open-connection (server)
733 (if (not (imap-open nnimap-address nnimap-server-port nnimap-stream
734 nnimap-authenticator nnimap-server-buffer
))
735 (nnheader-report 'nnimap
"Can't open connection to server %s" server
)
736 (unless (or (imap-capability 'IMAP4 nnimap-server-buffer
)
737 (imap-capability 'IMAP4rev1 nnimap-server-buffer
))
738 (imap-close nnimap-server-buffer
)
739 (nnheader-report 'nnimap
"Server %s is not IMAP4 compliant" server
))
740 (let* ((list (progn (gnus-message 7 "Parsing authinfo file `%s'."
741 nnimap-authinfo-file
)
742 (gnus-parse-netrc nnimap-authinfo-file
)))
743 (port (if nnimap-server-port
744 (int-to-string nnimap-server-port
)
746 (alist (or (gnus-netrc-machine list server port
"imap")
747 (gnus-netrc-machine list server port
"imaps")
748 (gnus-netrc-machine list
749 (or nnimap-server-address
752 (gnus-netrc-machine list
753 (or nnimap-server-address
756 (user (gnus-netrc-get alist
"login"))
757 (passwd (gnus-netrc-get alist
"password")))
758 (if (imap-authenticate user passwd nnimap-server-buffer
)
760 (push (list server nnimap-server-buffer
)
761 nnimap-server-buffer-alist
)
762 (nnimap-possibly-change-server server
))
763 (imap-close nnimap-server-buffer
)
764 (kill-buffer nnimap-server-buffer
)
765 (nnheader-report 'nnimap
"Could not authenticate to %s" server
)))))
767 (deffoo nnimap-open-server
(server &optional defs
)
768 (nnheader-init-server-buffer)
769 (if (nnimap-server-opened server
)
771 (unless (assq 'nnimap-server-buffer defs
)
772 (push (list 'nnimap-server-buffer
(concat " *nnimap* " server
)) defs
))
773 ;; translate `nnimap-server-address' to `nnimap-address' in defs
774 ;; for people that configured nnimap with a very old version
775 (unless (assq 'nnimap-address defs
)
776 (if (assq 'nnimap-server-address defs
)
777 (push (list 'nnimap-address
778 (cadr (assq 'nnimap-server-address defs
))) defs
)
779 (push (list 'nnimap-address server
) defs
)))
780 (nnoo-change-server 'nnimap server defs
)
781 (or nnimap-server-buffer
782 (setq nnimap-server-buffer
(cadr (assq 'nnimap-server-buffer defs
))))
783 (with-current-buffer (get-buffer-create nnimap-server-buffer
)
784 (nnoo-change-server 'nnimap server defs
))
785 (or (and nnimap-server-buffer
786 (imap-opened nnimap-server-buffer
)
787 (if (with-current-buffer nnimap-server-buffer
788 (memq imap-state
'(auth select examine
)))
790 (imap-close nnimap-server-buffer
)
791 (nnimap-open-connection server
)))
792 (nnimap-open-connection server
))))
794 (deffoo nnimap-server-opened
(&optional server
)
795 "Whether SERVER is opened.
796 If SERVER is the current virtual server, and the connection to the
797 physical server is alive, this function return a non-nil value. If
798 SERVER is nil, it is treated as the current server."
799 ;; clean up autologouts??
800 (and (or server nnimap-current-server
)
801 (nnoo-server-opened 'nnimap
(or server nnimap-current-server
))
802 (imap-opened (nnimap-get-server-buffer server
))))
804 (deffoo nnimap-close-server
(&optional server
)
805 "Close connection to server and free all resources connected to it.
806 Return nil if the server couldn't be closed for some reason."
807 (let ((server (or server nnimap-current-server
)))
808 (when (or (nnimap-server-opened server
)
809 (imap-opened (nnimap-get-server-buffer server
)))
810 (imap-close (nnimap-get-server-buffer server
))
811 (kill-buffer (nnimap-get-server-buffer server
))
812 (setq nnimap-server-buffer nil
813 nnimap-current-server nil
814 nnimap-server-buffer-alist
815 (delq server nnimap-server-buffer-alist
)))
816 (nnoo-close-server 'nnimap server
)))
818 (deffoo nnimap-request-close
()
819 "Close connection to all servers and free all resources that the backend have reserved.
820 All buffers that have been created by that
821 backend should be killed. (Not the nntp-server-buffer, though.) This
822 function is generally only called when Gnus is shutting down."
823 (mapcar (lambda (server) (nnimap-close-server (car server
)))
824 nnimap-server-buffer-alist
)
825 (setq nnimap-server-buffer-alist nil
))
827 (deffoo nnimap-status-message
(&optional server
)
828 "This function returns the last error message from server."
829 (when (nnimap-possibly-change-server server
)
830 (nnoo-status-message 'nnimap server
)))
832 (defun nnimap-demule (string)
833 ;; BEWARE: we used to use string-as-multibyte here which is braindead
834 ;; because it will turn accidental emacs-mule-valid byte sequences
835 ;; into multibyte chars. --Stef
836 ;; Reverted, braindead got 7.5 out of 10 on imdb, so it can't be
838 (funcall (if (and (fboundp 'string-as-multibyte
)
839 (subrp (symbol-function 'string-as-multibyte
)))
844 (defun nnimap-make-callback (article gnus-callback buffer
)
845 "Return a callback function."
847 (nnimap-callback ,article
,gnus-callback
,buffer
)))
849 (defun nnimap-callback (article gnus-callback buffer
)
850 (when (eq article
(imap-current-message))
851 (remove-hook 'imap-fetch-data-hook
852 (nnimap-make-callback article gnus-callback buffer
))
853 (with-current-buffer buffer
855 (with-current-buffer nnimap-server-buffer
857 (if (imap-capability 'IMAP4rev1
)
858 ;; xxx don't just use car? alist doesn't contain
859 ;; anything else now, but it might...
860 (nth 2 (car (imap-message-get article
'BODYDETAIL
)))
861 (imap-message-get article
'RFC822
)))))
862 (nnheader-ms-strip-cr)
863 (funcall gnus-callback t
))))
865 (defun nnimap-request-article-part (article part prop
&optional
866 group server to-buffer detail
)
867 (when (nnimap-possibly-change-group group server
)
868 (let ((article (if (stringp article
)
869 (car-safe (imap-search
870 (format "HEADER Message-Id \"%s\"" article
)
871 nnimap-server-buffer
))
874 (gnus-message 10 "nnimap: Fetching (part of) article %d from %s..."
875 article
(or group imap-current-mailbox
876 gnus-newsgroup-name
))
877 (if (not nnheader-callback-function
)
878 (with-current-buffer (or to-buffer nntp-server-buffer
)
880 (let ((data (imap-fetch article part prop nil
881 nnimap-server-buffer
)))
882 (insert (nnimap-demule (if detail
885 (nnheader-ms-strip-cr)
887 10 "nnimap: Fetching (part of) article %d from %s...done"
888 article
(or group imap-current-mailbox gnus-newsgroup-name
))
890 (nnheader-report 'nnimap
"No such article %d in %s: %s"
891 article
(or group imap-current-mailbox
893 (imap-error-text nnimap-server-buffer
))
894 (cons group article
)))
895 (add-hook 'imap-fetch-data-hook
896 (nnimap-make-callback article
897 nnheader-callback-function
899 (imap-fetch-asynch article part nil nnimap-server-buffer
)
900 (cons group article
))))))
902 (deffoo nnimap-asynchronous-p
()
905 (deffoo nnimap-request-article
(article &optional group server to-buffer
)
906 (if (imap-capability 'IMAP4rev1 nnimap-server-buffer
)
907 (nnimap-request-article-part
908 article
"BODY.PEEK[]" 'BODYDETAIL group server to-buffer
'detail
)
909 (nnimap-request-article-part
910 article
"RFC822.PEEK" 'RFC822 group server to-buffer
)))
912 (deffoo nnimap-request-head
(article &optional group server to-buffer
)
913 (if (imap-capability 'IMAP4rev1 nnimap-server-buffer
)
914 (nnimap-request-article-part
915 article
"BODY.PEEK[HEADER]" 'BODYDETAIL group server to-buffer
'detail
)
916 (nnimap-request-article-part
917 article
"RFC822.HEADER" 'RFC822.HEADER group server to-buffer
)))
919 (deffoo nnimap-request-body
(article &optional group server to-buffer
)
920 (if (imap-capability 'IMAP4rev1 nnimap-server-buffer
)
921 (nnimap-request-article-part
922 article
"BODY.PEEK[TEXT]" 'BODYDETAIL group server to-buffer
'detail
)
923 (nnimap-request-article-part
924 article
"RFC822.TEXT.PEEK" 'RFC822.TEXT group server to-buffer
)))
926 (deffoo nnimap-request-group
(group &optional server fast
)
927 (nnimap-request-update-info-internal
929 (gnus-get-info (gnus-group-prefixed-name
930 group
(gnus-server-to-method (format "nnimap:%s" server
))))
932 (when (nnimap-possibly-change-group group server
)
933 (nnimap-before-find-minmax-bugworkaround)
936 ((null (setq info
(nnimap-find-minmax-uid group t
)))
937 (nnheader-report 'nnimap
"Could not get active info for %s"
940 (nnheader-insert "211 %d %d %d %s\n" (or (nth 0 info
) 0)
941 (max 1 (or (nth 1 info
) 1))
942 (or (nth 2 info
) 0) group
)
943 (nnheader-report 'nnimap
"Group %s selected" group
)
946 (defun nnimap-update-unseen (group &optional server
)
947 "Update the unseen count in `nnimap-mailbox-info'."
949 (gnus-group-prefixed-name group server
)
950 (let ((old (gnus-gethash-safe (gnus-group-prefixed-name group server
)
951 nnimap-mailbox-info
)))
952 (list (nth 0 old
) (nth 1 old
)
953 (imap-mailbox-status group
'unseen nnimap-server-buffer
)
955 nnimap-mailbox-info
))
957 (defun nnimap-close-group (group &optional server
)
958 (with-current-buffer nnimap-server-buffer
959 (when (and (imap-opened)
960 (nnimap-possibly-change-group group server
))
961 (nnimap-update-unseen group server
)
962 (case nnimap-expunge-on-close
964 (imap-mailbox-expunge nnimap-close-asynchronous
)
965 (unless nnimap-dont-close
966 (imap-mailbox-close nnimap-close-asynchronous
))))
967 (ask (if (and (imap-search "DELETED")
968 (gnus-y-or-n-p (format "Expunge articles in group `%s'? "
969 imap-current-mailbox
)))
971 (imap-mailbox-expunge nnimap-close-asynchronous
)
972 (unless nnimap-dont-close
973 (imap-mailbox-close nnimap-close-asynchronous
)))
974 (imap-mailbox-unselect)))
975 (t (imap-mailbox-unselect)))
976 (not imap-current-mailbox
))))
978 (defun nnimap-pattern-to-list-arguments (pattern)
980 (cons (car-safe p
) (or (cdr-safe p
) p
)))
981 (if (and (listp pattern
)
982 (listp (cdr pattern
)))
986 (deffoo nnimap-request-list
(&optional server
)
987 (when (nnimap-possibly-change-server server
)
988 (with-current-buffer nntp-server-buffer
990 (gnus-message 5 "nnimap: Generating active list%s..."
991 (if (> (length server
) 0) (concat " for " server
) ""))
992 (nnimap-before-find-minmax-bugworkaround)
993 (with-current-buffer nnimap-server-buffer
994 (dolist (pattern (nnimap-pattern-to-list-arguments nnimap-list-pattern
))
995 (dolist (mbx (funcall nnimap-request-list-method
996 (cdr pattern
) (car pattern
)))
997 (or (member "\\NoSelect" (imap-mailbox-get 'list-flags mbx
))
998 (let ((info (nnimap-find-minmax-uid mbx
'examine
)))
1000 (with-current-buffer nntp-server-buffer
1001 (insert (format "\"%s\" %d %d y\n"
1002 mbx
(or (nth 2 info
) 0)
1003 (max 1 (or (nth 1 info
) 1)))))))))))
1004 (gnus-message 5 "nnimap: Generating active list%s...done"
1005 (if (> (length server
) 0) (concat " for " server
) ""))
1008 (deffoo nnimap-request-post
(&optional server
)
1010 (dolist (mbx (message-unquote-tokens
1011 (message-tokenize-header
1012 (message-fetch-field "Newsgroups") ", ")) success
)
1013 (let ((to-newsgroup (gnus-group-prefixed-name mbx gnus-command-method
)))
1014 (or (gnus-active to-newsgroup
)
1015 (gnus-activate-group to-newsgroup
)
1016 (if (gnus-y-or-n-p (format "No such group: %s. Create it? "
1018 (or (and (gnus-request-create-group
1019 to-newsgroup gnus-command-method
)
1020 (gnus-activate-group to-newsgroup nil nil
1021 gnus-command-method
))
1022 (error "Couldn't create group %s" to-newsgroup
)))
1023 (error "No such group: %s" to-newsgroup
))
1024 (unless (nnimap-request-accept-article mbx
(nth 1 gnus-command-method
))
1025 (setq success nil
))))))
1027 ;; Optional backend functions
1029 (defun nnimap-string-lessp-numerical (s1 s2
)
1030 "Return t if first arg string is less than second in numerical order."
1031 (cond ((string= s1 s2
)
1033 ((> (length s1
) (length s2
))
1035 ((< (length s1
) (length s2
))
1037 ((< (string-to-number (substring s1
0 1))
1038 (string-to-number (substring s2
0 1)))
1040 ((> (string-to-number (substring s1
0 1))
1041 (string-to-number (substring s2
0 1)))
1044 (nnimap-string-lessp-numerical (substring s1
1) (substring s2
1)))))
1046 (deffoo nnimap-retrieve-groups
(groups &optional server
)
1047 (when (nnimap-possibly-change-server server
)
1048 (gnus-message 5 "nnimap: Checking mailboxes...")
1049 (with-current-buffer nntp-server-buffer
1051 (nnimap-before-find-minmax-bugworkaround)
1052 (let (asyncgroups slowgroups
)
1053 (if (null nnimap-retrieve-groups-asynchronous
)
1054 (setq slowgroups groups
)
1055 (dolist (group groups
)
1056 (gnus-message 9 "nnimap: Quickly checking mailbox %s" group
)
1057 (add-to-list (if (gnus-gethash-safe
1058 (gnus-group-prefixed-name group server
)
1059 nnimap-mailbox-info
)
1062 (list group
(imap-mailbox-status-asynch
1063 group
'(uidvalidity uidnext unseen
)
1064 nnimap-server-buffer
))))
1065 (dolist (asyncgroup asyncgroups
)
1066 (let ((group (nth 0 asyncgroup
))
1067 (tag (nth 1 asyncgroup
))
1069 (when (imap-ok-p (imap-wait-for-tag tag nnimap-server-buffer
))
1070 (if (or (not (string=
1071 (nth 0 (gnus-gethash (gnus-group-prefixed-name
1073 nnimap-mailbox-info
))
1074 (imap-mailbox-get 'uidvalidity group
1075 nnimap-server-buffer
)))
1077 (nth 1 (gnus-gethash (gnus-group-prefixed-name
1079 nnimap-mailbox-info
))
1080 (imap-mailbox-get 'uidnext group
1081 nnimap-server-buffer
))))
1082 (push (list group
) slowgroups
)
1083 (insert (nth 3 (gnus-gethash (gnus-group-prefixed-name
1085 nnimap-mailbox-info
))))))))
1086 (dolist (group slowgroups
)
1087 (if nnimap-retrieve-groups-asynchronous
1088 (setq group
(car group
)))
1089 (gnus-message 7 "nnimap: Mailbox %s modified" group
)
1090 (imap-mailbox-put 'uidnext nil group nnimap-server-buffer
)
1091 (or (member "\\NoSelect" (imap-mailbox-get 'list-flags group
1092 nnimap-server-buffer
))
1093 (let* ((info (nnimap-find-minmax-uid group
'examine
))
1094 (str (format "\"%s\" %d %d y\n" group
1096 (max 1 (or (nth 1 info
) 1)))))
1097 (when (> (or (imap-mailbox-get 'recent group
1098 nnimap-server-buffer
) 0)
1100 (push (list (cons group
0)) nnmail-split-history
))
1102 (when nnimap-retrieve-groups-asynchronous
1104 (gnus-group-prefixed-name group server
)
1105 (list (or (imap-mailbox-get
1106 'uidvalidity group nnimap-server-buffer
)
1107 (imap-mailbox-status
1108 group
'uidvalidity nnimap-server-buffer
))
1109 (or (imap-mailbox-get
1110 'uidnext group nnimap-server-buffer
)
1111 (imap-mailbox-status
1112 group
'uidnext nnimap-server-buffer
))
1113 (or (imap-mailbox-get
1114 'unseen group nnimap-server-buffer
)
1115 (imap-mailbox-status
1116 group
'unseen nnimap-server-buffer
))
1118 nnimap-mailbox-info
)))))))
1119 (gnus-message 5 "nnimap: Checking mailboxes...done")
1122 (deffoo nnimap-request-update-info-internal
(group info
&optional server
)
1123 (when (nnimap-possibly-change-group group server
)
1124 (when info
;; xxx what does this mean? should we create a info?
1125 (with-current-buffer nnimap-server-buffer
1126 (gnus-message 5 "nnimap: Updating info for %s..."
1127 (gnus-info-group info
))
1129 (when (nnimap-mark-permanent-p 'read
)
1131 ;; read info could contain articles marked unread by other
1132 ;; imap clients! we correct this
1133 (setq unseen
(gnus-compress-sequence
1134 (imap-search "UNSEEN UNDELETED"))
1135 seen
(gnus-range-difference (gnus-info-read info
) unseen
)
1136 seen
(gnus-range-add seen
1137 (gnus-compress-sequence
1138 (imap-search "SEEN")))
1139 seen
(if (and (integerp (car seen
))
1141 (list (cons (car seen
) (car seen
)))
1143 (gnus-info-set-read info seen
)))
1145 (mapcar (lambda (pred)
1146 (when (or (eq (cdr pred
) 'recent
)
1147 (and (nnimap-mark-permanent-p (cdr pred
))
1148 (member (nnimap-mark-to-flag (cdr pred
))
1149 (imap-mailbox-get 'flags
))))
1150 (gnus-info-set-marks
1152 (gnus-update-alist-soft
1154 (gnus-compress-sequence
1155 (imap-search (nnimap-mark-to-predicate (cdr pred
))))
1156 (gnus-info-marks info
))
1158 gnus-article-mark-lists
)
1160 (when nnimap-importantize-dormant
1161 ;; nnimap mark dormant article as ticked too (for other clients)
1162 ;; so we remove that mark for gnus since we support dormant
1163 (gnus-info-set-marks
1165 (gnus-update-alist-soft
1167 (gnus-remove-from-range
1168 (cdr-safe (assoc 'tick
(gnus-info-marks info
)))
1169 (cdr-safe (assoc 'dormant
(gnus-info-marks info
))))
1170 (gnus-info-marks info
))
1173 (gnus-message 5 "nnimap: Updating info for %s...done"
1174 (gnus-info-group info
))
1178 (deffoo nnimap-request-type
(group &optional article
)
1179 (if (and nnimap-news-groups
(string-match nnimap-news-groups group
))
1183 (deffoo nnimap-request-set-mark
(group actions
&optional server
)
1184 (when (nnimap-possibly-change-group group server
)
1185 (with-current-buffer nnimap-server-buffer
1187 (gnus-message 7 "nnimap: Setting marks in %s..." group
)
1188 (while (setq action
(pop actions
))
1189 (let ((range (nth 0 action
))
1190 (what (nth 1 action
))
1191 (cmdmarks (nth 2 action
))
1193 ;; bookmark can't be stored (not list/range
1194 (setq cmdmarks
(delq 'bookmark cmdmarks
))
1195 ;; killed can't be stored (not list/range
1196 (setq cmdmarks
(delq 'killed cmdmarks
))
1197 ;; unsent are for nndraft groups only
1198 (setq cmdmarks
(delq 'unsent cmdmarks
))
1199 ;; cache flags are pointless on the server
1200 (setq cmdmarks
(delq 'cache cmdmarks
))
1201 ;; seen flags are local to each gnus
1202 (setq cmdmarks
(delq 'seen cmdmarks
))
1203 ;; recent marks can't be set
1204 (setq cmdmarks
(delq 'recent cmdmarks
))
1205 (when nnimap-importantize-dormant
1206 ;; flag dormant articles as ticked
1207 (if (memq 'dormant cmdmarks
)
1208 (setq cmdmarks
(cons 'tick cmdmarks
))))
1209 ;; remove stuff we are forbidden to store
1210 (mapcar (lambda (mark)
1211 (if (imap-message-flag-permanent-p
1212 (nnimap-mark-to-flag mark
))
1213 (setq marks
(cons mark marks
))))
1215 (when (and range marks
)
1216 (cond ((eq what
'del
)
1217 (imap-message-flags-del
1218 (imap-range-to-message-set range
)
1219 (nnimap-mark-to-flag marks nil t
)))
1221 (imap-message-flags-add
1222 (imap-range-to-message-set range
)
1223 (nnimap-mark-to-flag marks nil t
)))
1225 (imap-message-flags-set
1226 (imap-range-to-message-set range
)
1227 (nnimap-mark-to-flag marks nil t
)))))))
1228 (gnus-message 7 "nnimap: Setting marks in %s...done" group
))))
1231 (defun nnimap-split-fancy ()
1232 "Like the function `nnmail-split-fancy', but uses `nnimap-split-fancy'."
1233 (let ((nnmail-split-fancy nnimap-split-fancy
))
1234 (nnmail-split-fancy)))
1236 (defun nnimap-split-to-groups (rules)
1237 ;; tries to match all rules in nnimap-split-rule against content of
1238 ;; nntp-server-buffer, returns a list of groups that matched.
1239 (with-current-buffer nntp-server-buffer
1240 ;; Fold continuation lines.
1241 (goto-char (point-min))
1242 (while (re-search-forward "\\(\r?\n[ \t]+\\)+" nil t
)
1243 (replace-match " " t t
))
1244 (if (functionp rules
)
1246 (let (to-groups regrepp
)
1248 (dolist (rule rules to-groups
)
1249 (let ((group (car rule
))
1250 (regexp (cadr rule
)))
1251 (goto-char (point-min))
1252 (when (and (if (stringp regexp
)
1254 (if (not (stringp group
))
1255 (setq group
(eval group
))
1257 (string-match "\\\\[0-9&]" group
)))
1258 (re-search-forward regexp nil t
))
1259 (funcall regexp group
))
1260 ;; Don't enter the article into the same group twice.
1261 (not (assoc group to-groups
)))
1263 (nnmail-expand-newtext group
)
1266 (or nnimap-split-crosspost
1267 (throw 'split-done to-groups
))))))))))
1269 (defun nnimap-assoc-match (key alist
)
1271 (while (and alist
(not element
))
1272 (if (string-match (car (car alist
)) key
)
1273 (setq element
(car alist
)))
1274 (setq alist
(cdr alist
)))
1277 (defun nnimap-split-find-rule (server inbox
)
1278 (if (and (listp nnimap-split-rule
) (listp (car nnimap-split-rule
))
1279 (list (cdar nnimap-split-rule
)) (listp (cadar nnimap-split-rule
)))
1281 (cadr (nnimap-assoc-match inbox
(cdr (nnimap-assoc-match
1282 server nnimap-split-rule
))))
1285 (defun nnimap-split-find-inbox (server)
1286 (if (listp nnimap-split-inbox
)
1288 (list nnimap-split-inbox
)))
1290 (defun nnimap-split-articles (&optional group server
)
1291 (when (nnimap-possibly-change-server server
)
1292 (with-current-buffer nnimap-server-buffer
1293 (let (rule inbox removeorig
(inboxes (nnimap-split-find-inbox server
)))
1294 ;; iterate over inboxes
1295 (while (and (setq inbox
(pop inboxes
))
1296 (nnimap-possibly-change-group inbox
)) ;; SELECT
1297 ;; find split rule for this server / inbox
1298 (when (setq rule
(nnimap-split-find-rule server inbox
))
1299 ;; iterate over articles
1300 (dolist (article (imap-search nnimap-split-predicate
))
1301 (when (if (if (eq nnimap-split-download-body
'default
)
1302 nnimap-split-download-body-default
1303 nnimap-split-download-body
)
1304 (and (nnimap-request-article article
)
1305 (with-current-buffer nntp-server-buffer
(mail-narrow-to-head)))
1306 (nnimap-request-head article
))
1307 ;; copy article to right group(s)
1308 (setq removeorig nil
)
1309 (dolist (to-group (nnimap-split-to-groups rule
))
1310 (cond ((eq to-group
'junk
)
1311 (message "IMAP split removed %s:%s:%d" server inbox
1313 (setq removeorig t
))
1314 ((imap-message-copy (number-to-string article
)
1315 to-group nil
'nocopyuid
)
1316 (message "IMAP split moved %s:%s:%d to %s" server
1317 inbox article to-group
)
1319 (when nnmail-cache-accepted-message-ids
1320 (with-current-buffer nntp-server-buffer
1323 (nnmail-fetch-field "message-id"))
1324 (nnmail-cache-insert msgid
1326 (nnmail-fetch-field "subject"))))))
1327 ;; Add the group-art list to the history list.
1328 (push (list (cons to-group
0)) nnmail-split-history
))
1330 (message "IMAP split failed to move %s:%s:%d to %s"
1331 server inbox article to-group
))))
1332 (if (if (eq nnimap-split-download-body
'default
)
1333 nnimap-split-download-body-default
1334 nnimap-split-download-body
)
1336 ;; remove article if it was successfully copied somewhere
1338 (imap-message-flags-add (format "%d" article
)
1339 "\\Seen \\Deleted")))))
1340 (when (imap-mailbox-select inbox
) ;; just in case
1341 ;; todo: UID EXPUNGE (if available) to remove splitted articles
1342 (imap-mailbox-expunge)
1343 (imap-mailbox-close)))
1344 (when nnmail-cache-accepted-message-ids
1345 (nnmail-cache-close))
1348 (deffoo nnimap-request-scan
(&optional group server
)
1349 (nnimap-split-articles group server
))
1351 (deffoo nnimap-request-newgroups
(date &optional server
)
1352 (when (nnimap-possibly-change-server server
)
1353 (with-current-buffer nntp-server-buffer
1354 (gnus-message 5 "nnimap: Listing subscribed mailboxes%s%s..."
1355 (if (> (length server
) 0) " on " "") server
)
1357 (nnimap-before-find-minmax-bugworkaround)
1358 (dolist (pattern (nnimap-pattern-to-list-arguments
1359 nnimap-list-pattern
))
1360 (dolist (mbx (imap-mailbox-lsub (cdr pattern
) (car pattern
) nil
1361 nnimap-server-buffer
))
1363 (dolist (mailbox (imap-mailbox-get 'list-flags mbx
1364 nnimap-server-buffer
))
1365 (if (string= (downcase mailbox
) "\\noselect")
1368 (let ((info (nnimap-find-minmax-uid mbx
'examine
)))
1370 (insert (format "\"%s\" %d %d y\n"
1371 mbx
(or (nth 2 info
) 0)
1372 (max 1 (or (nth 1 info
) 1)))))))))
1373 (gnus-message 5 "nnimap: Listing subscribed mailboxes%s%s...done"
1374 (if (> (length server
) 0) " on " "") server
))
1377 (deffoo nnimap-request-create-group
(group &optional server args
)
1378 (when (nnimap-possibly-change-server server
)
1379 (or (imap-mailbox-status group
'uidvalidity nnimap-server-buffer
)
1380 (imap-mailbox-create group nnimap-server-buffer
)
1381 (nnheader-report 'nnimap
"%S"
1382 (imap-error-text nnimap-server-buffer
)))))
1384 (defun nnimap-time-substract (time1 time2
)
1385 "Return TIME for TIME1 - TIME2."
1386 (let* ((ms (- (car time1
) (car time2
)))
1387 (ls (- (nth 1 time1
) (nth 1 time2
))))
1389 (list (- ms
1) (+ (expt 2 16) ls
))
1392 (eval-when-compile (require 'parse-time
))
1393 (defun nnimap-date-days-ago (daysago)
1394 "Return date, in format \"3-Aug-1998\", for DAYSAGO days ago."
1395 (require 'parse-time
)
1396 (let* ((time (nnimap-time-substract (current-time) (days-to-time daysago
)))
1397 (date (format-time-string
1398 (format "%%d-%s-%%Y"
1399 (capitalize (car (rassoc (nth 4 (decode-time time
))
1400 parse-time-months
))))
1402 (if (eq ?
0 (string-to-char date
))
1406 (defun nnimap-request-expire-articles-progress ()
1407 (gnus-message 5 "nnimap: Marking article %d for deletion..."
1408 imap-current-message
))
1410 (defun nnimap-expiry-target (arts group server
)
1411 (unless (eq nnmail-expiry-target
'delete
)
1414 (nnimap-request-article art group server
(current-buffer))
1415 ;; hints for optimization in `nnimap-request-accept-article'
1416 (let ((nnimap-current-move-article art
)
1417 (nnimap-current-move-group group
)
1418 (nnimap-current-move-server server
))
1419 (nnmail-expiry-target-group nnmail-expiry-target group
))))
1420 ;; It is not clear if `nnmail-expiry-target' somehow cause the
1421 ;; current group to be changed or not, so we make sure here.
1422 (nnimap-possibly-change-group group server
)))
1424 ;; Notice that we don't actually delete anything, we just mark them deleted.
1425 (deffoo nnimap-request-expire-articles
(articles group
&optional server force
)
1426 (let ((artseq (gnus-compress-sequence articles
)))
1427 (when (and artseq
(nnimap-possibly-change-group group server
))
1428 (with-current-buffer nnimap-server-buffer
1429 (let ((days (or (and nnmail-expiry-wait-function
1430 (funcall nnmail-expiry-wait-function group
))
1431 nnmail-expiry-wait
)))
1432 (cond ((or force
(eq days
'immediate
))
1433 (let ((oldarts (imap-search
1435 (imap-range-to-message-set artseq
)))))
1437 (nnimap-expiry-target oldarts group server
)
1438 (when (imap-message-flags-add
1439 (imap-range-to-message-set
1440 (gnus-compress-sequence oldarts
)) "\\Deleted")
1441 (setq articles
(gnus-set-difference
1442 articles oldarts
))))))
1443 ((and nnimap-search-uids-not-since-is-evil
(numberp days
))
1444 (let* ((all-new-articles
1445 (gnus-compress-sequence
1446 (imap-search (format "SINCE %s"
1447 (nnimap-date-days-ago days
)))))
1449 (gnus-range-difference artseq all-new-articles
))
1450 (oldarts (gnus-uncompress-range oldartseq
)))
1452 (nnimap-expiry-target oldarts group server
)
1453 (when (imap-message-flags-add
1454 (imap-range-to-message-set oldartseq
)
1456 (setq articles
(gnus-set-difference
1457 articles oldarts
))))))
1459 (let ((oldarts (imap-search
1460 (format nnimap-expunge-search-string
1461 (imap-range-to-message-set artseq
)
1462 (nnimap-date-days-ago days
))))
1463 (imap-fetch-data-hook
1464 '(nnimap-request-expire-articles-progress)))
1466 (nnimap-expiry-target oldarts group server
)
1467 (when (imap-message-flags-add
1468 (imap-range-to-message-set
1469 (gnus-compress-sequence oldarts
)) "\\Deleted")
1470 (setq articles
(gnus-set-difference
1471 articles oldarts
)))))))))))
1472 ;; return articles not deleted
1475 (deffoo nnimap-request-move-article
(article group server
1476 accept-form
&optional last
)
1477 (when (nnimap-possibly-change-server server
)
1479 (let ((buf (get-buffer-create " *nnimap move*"))
1480 (nnimap-current-move-article article
)
1481 (nnimap-current-move-group group
)
1482 (nnimap-current-move-server nnimap-current-server
)
1484 (and (nnimap-request-article article group server
)
1487 (buffer-disable-undo (current-buffer))
1488 (insert-buffer-substring nntp-server-buffer
)
1489 (setq result
(eval accept-form
))
1492 (nnimap-possibly-change-group group server
)
1493 (imap-message-flags-add
1494 (imap-range-to-message-set (list article
))
1495 "\\Deleted" 'silent nnimap-server-buffer
))
1498 (deffoo nnimap-request-accept-article
(group &optional server last
)
1499 (when (nnimap-possibly-change-server server
)
1502 (if (string= nnimap-current-server nnimap-current-move-server
)
1503 ;; moving article within same server, speed it up...
1504 (and (nnimap-possibly-change-group
1505 nnimap-current-move-group
)
1506 (imap-message-copy (number-to-string
1507 nnimap-current-move-article
)
1508 group
'dontcreate nil
1509 nnimap-server-buffer
))
1510 (with-current-buffer (current-buffer)
1511 (goto-char (point-min))
1512 ;; remove any 'From blabla' lines, some IMAP servers
1513 ;; reject the entire message otherwise.
1514 (when (looking-at "^From[^:]")
1515 (delete-region (point) (progn (forward-line) (point))))
1516 ;; turn into rfc822 format (\r\n eol's)
1517 (while (search-forward "\n" nil t
)
1518 (replace-match "\r\n"))
1519 (when nnmail-cache-accepted-message-ids
1520 (nnmail-cache-insert (nnmail-fetch-field "message-id")
1522 (nnmail-fetch-field "subject"))))
1523 (when (and last nnmail-cache-accepted-message-ids
)
1524 (nnmail-cache-close))
1525 ;; this 'or' is for Cyrus server bug
1526 (or (null (imap-current-mailbox nnimap-server-buffer
))
1527 (imap-mailbox-unselect nnimap-server-buffer
))
1528 (imap-message-append group
(current-buffer) nil nil
1529 nnimap-server-buffer
)))
1530 (cons group
(nth 1 uid
))
1531 (nnheader-report 'nnimap
(imap-error-text nnimap-server-buffer
))))))
1533 (deffoo nnimap-request-delete-group
(group force
&optional server
)
1534 (when (nnimap-possibly-change-server server
)
1535 (with-current-buffer nnimap-server-buffer
1537 (or (null (imap-mailbox-status group
'uidvalidity
))
1538 (imap-mailbox-delete group
))
1542 (deffoo nnimap-request-rename-group
(group new-name
&optional server
)
1543 (when (nnimap-possibly-change-server server
)
1544 (imap-mailbox-rename group new-name nnimap-server-buffer
)))
1546 (defun nnimap-expunge (mailbox server
)
1547 (when (nnimap-possibly-change-group mailbox server
)
1548 (imap-mailbox-expunge nil nnimap-server-buffer
)))
1550 (defun nnimap-acl-get (mailbox server
)
1551 (when (nnimap-possibly-change-server server
)
1552 (and (imap-capability 'ACL nnimap-server-buffer
)
1553 (imap-mailbox-acl-get mailbox nnimap-server-buffer
))))
1555 (defun nnimap-acl-edit (mailbox method old-acls new-acls
)
1556 (when (nnimap-possibly-change-server (cadr method
))
1557 (unless (imap-capability 'ACL nnimap-server-buffer
)
1558 (error "Your server does not support ACL editing"))
1559 (with-current-buffer nnimap-server-buffer
1560 ;; delete all removed identifiers
1561 (mapcar (lambda (old-acl)
1562 (unless (assoc (car old-acl
) new-acls
)
1563 (or (imap-mailbox-acl-delete (car old-acl
) mailbox
)
1564 (error "Can't delete ACL for %s" (car old-acl
)))))
1566 ;; set all changed acl's
1567 (mapcar (lambda (new-acl)
1568 (let ((new-rights (cdr new-acl
))
1569 (old-rights (cdr (assoc (car new-acl
) old-acls
))))
1570 (unless (and old-rights new-rights
1571 (string= old-rights new-rights
))
1572 (or (imap-mailbox-acl-set (car new-acl
) new-rights mailbox
)
1573 (error "Can't set ACL for %s to %s" (car new-acl
)
1579 ;;; Internal functions
1582 ;; This is confusing.
1584 ;; mark => read, tick, draft, reply etc
1585 ;; flag => "\\Seen", "\\Flagged", "\\Draft", "gnus-expire" etc
1586 ;; predicate => "SEEN", "FLAGGED", "DRAFT", "KEYWORD gnus-expire" etc
1588 ;; Mark should not really contain 'read since it's not a "mark" in the Gnus
1589 ;; world, but we cheat. Mark == gnus-article-mark-lists + '(read . read).
1592 (defconst nnimap-mark-to-predicate-alist
1594 (lambda (pair) ; cdr is the mark
1595 (or (assoc (cdr pair
)
1600 (reply .
"ANSWERED")))
1602 (format "KEYWORD gnus-%s" (symbol-name (cdr pair
))))))
1603 (cons '(read . read
) gnus-article-mark-lists
)))
1605 (defun nnimap-mark-to-predicate (pred)
1606 "Convert a Gnus mark (a symbol such as read, tick, expire) to a IMAP predicate.
1607 This is a string such as \"SEEN\", \"FLAGGED\", \"KEYWORD gnus-expire\",
1608 to be used within a IMAP SEARCH query."
1609 (cdr (assq pred nnimap-mark-to-predicate-alist
)))
1611 (defconst nnimap-mark-to-flag-alist
1614 (or (assoc (cdr pair
)
1616 (tick .
"\\Flagged")
1618 (recent .
"\\Recent")
1619 (reply .
"\\Answered")))
1621 (format "gnus-%s" (symbol-name (cdr pair
))))))
1622 (cons '(read . read
) gnus-article-mark-lists
)))
1624 (defun nnimap-mark-to-flag-1 (preds)
1625 (if (and (not (null preds
)) (listp preds
))
1626 (cons (nnimap-mark-to-flag (car preds
))
1627 (nnimap-mark-to-flag (cdr preds
)))
1628 (cdr (assoc preds nnimap-mark-to-flag-alist
))))
1630 (defun nnimap-mark-to-flag (preds &optional always-list make-string
)
1631 "Convert a Gnus mark (a symbol such as read, tick, expire) to a IMAP flag.
1632 This is a string such as \"\\Seen\", \"\\Flagged\", \"gnus-expire\", to
1633 be used in a STORE FLAGS command."
1634 (let ((result (nnimap-mark-to-flag-1 preds
)))
1635 (setq result
(if (and (or make-string always-list
)
1636 (not (listp result
)))
1640 (mapconcat (lambda (flag)
1642 (mapconcat 'identity flag
" ")
1647 (defun nnimap-mark-permanent-p (mark &optional group
)
1648 "Return t iff MARK can be permanently (between IMAP sessions) saved on articles, in GROUP."
1649 (imap-message-flag-permanent-p (nnimap-mark-to-flag mark
)))
1653 (buffer-disable-undo (get-buffer-create nnimap-debug-buffer
))
1654 (mapcar (lambda (f) (trace-function-background f nnimap-debug-buffer
))
1656 nnimap-possibly-change-server
1657 nnimap-verify-uidvalidity
1658 nnimap-find-minmax-uid
1659 nnimap-before-find-minmax-bugworkaround
1660 nnimap-possibly-change-group
1661 ;;nnimap-replace-whitespace
1662 nnimap-retrieve-headers-progress
1663 nnimap-retrieve-which-headers
1664 nnimap-group-overview-filename
1665 nnimap-retrieve-headers-from-file
1666 nnimap-retrieve-headers-from-server
1667 nnimap-retrieve-headers
1668 nnimap-open-connection
1670 nnimap-server-opened
1672 nnimap-request-close
1673 nnimap-status-message
1675 nnimap-request-article-part
1676 nnimap-request-article
1679 nnimap-request-group
1681 nnimap-pattern-to-list-arguments
1684 nnimap-retrieve-groups
1685 nnimap-request-update-info-internal
1687 nnimap-request-set-mark
1688 nnimap-split-to-groups
1689 nnimap-split-find-rule
1690 nnimap-split-find-inbox
1691 nnimap-split-articles
1693 nnimap-request-newgroups
1694 nnimap-request-create-group
1695 nnimap-time-substract
1696 nnimap-date-days-ago
1697 nnimap-request-expire-articles-progress
1698 nnimap-request-expire-articles
1699 nnimap-request-move-article
1700 nnimap-request-accept-article
1701 nnimap-request-delete-group
1702 nnimap-request-rename-group
1703 gnus-group-nnimap-expunge
1704 gnus-group-nnimap-edit-acl
1705 gnus-group-nnimap-edit-acl-done
1706 nnimap-group-mode-hook
1707 nnimap-mark-to-predicate
1708 nnimap-mark-to-flag-1
1710 nnimap-mark-permanent-p
1715 ;; arch-tag: 2b001f20-3ff9-4094-a0ad-46807c1ba70b
1716 ;;; nnimap.el ends here