summaryrefslogtreecommitdiffstats
path: root/imap/TODO
blob: c27817bd3344f2c02189c6fd72b1c82f44df41e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
IMAP enhancements, by priority:

[ -- socket -- ]

* Smarter connection code. Mutt should handle dropped connections/routing
  problems gracefully. It should be able to transparently reconnect. This
  is facilitated by the next item.

  PRIORITY: [***]

* General connection code rewrite. All commands should be queued via
  a single interface for communicating with the server. Nothing should
  have to read or write directly to the socket.

  PRIORITY: [***]

[ -- browsing -- ]

* We should maybe add a new imap_format string for IMAP browsing, without all
  the stat variables but with tags like how many messages are in the folders,
  how many subfolders, that weird \Marked tag, etc.
 
  PRIORITY: [** ]

[ -- speed -- ]

* Persistent caching of data. I think the nicest way to do this is to store
  local copies like IMAP does, with an invisible control message at the top,
  and extra invisible headers in the message (for UID/dirty bits). This does
  some nice things:
  o We can use the existing mbox driver.
  o Mutt can read mail stored in IMAP spools transparently and
    nondestructively.
  o An IMAP server could function off of a local cache - maybe we can begin
    to develop some sort of IMAP clustering system.
  Disadvantage:
  o IMAP can't discriminate between its own store and a fake Mutt cache. If
    the server changes its file format, bad things might happen. Could be
    worked around with a specific Mutt header in all messages, probably.

  PRIORITY: [*  ]

* Instead of testing for the existence of a mailbox for APPEND, just append
  and create/retry on failure. This is only a small bandwidth savings, but
  it should be easy.

  PRIORITY: [*  ]

[ -- new features -- ]

* Commands for creating/deleting folders on the server, since users may not
  otherwise be able to do this on IMAP servers.
  Delete done, still must implement create.

  PRIORITY: [** ]

* Implement the x (quit without saving changes) command.

  PRIORITY: [** ]

Brendan Cully <brendan@kublai.com>
Updated: 20000704