summaryrefslogtreecommitdiffstats
path: root/imap/TODO
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1999-09-07 06:53:08 +0000
committerThomas Roessler <roessler@does-not-exist.org>1999-09-07 06:53:08 +0000
commit458307e72af511d2fad7961fdd180f02b9f77256 (patch)
tree5ea94d8f9a3790829f107aef4b7ee56ddf9b3fd1 /imap/TODO
parentf7e524f1a7100545042241e68f83099a07c30086 (diff)
* redoes the folder update optimisation I did yesterday. It's somewhat
cleaner and less invasive, and I'm not so worried about memory leaks now. * Fixes the bug where mutt would append a '/' to $folder even if it was only {mailhost}, causing mutt to browse the root directory instead of the home directory. * includes a first stab at preserving the D flag on the IMAP server. Now if you answer no to 'Purge deleted', the server still stores the messages as deleted, but doesn't expunge them on exit. NOTE: this is a first attempt. Play around, but don't mark things as deleted that you'd be sorry to see disappear. (From: Brendan Cully <brendan@kublai.com>)
Diffstat (limited to 'imap/TODO')
-rw-r--r--imap/TODO43
1 files changed, 26 insertions, 17 deletions
diff --git a/imap/TODO b/imap/TODO
index 340071d7..28b96712 100644
--- a/imap/TODO
+++ b/imap/TODO
@@ -1,4 +1,4 @@
-IMAP enhancements/fixes, by priority:
+IMAP enhancements, by priority:
[ -- socket -- ]
* Smarter connection code. Mutt should handle dropped connections/routing
@@ -18,23 +18,17 @@ IMAP enhancements/fixes, by priority:
Possibly we could use a tree-view in the browser, w/ expand, collapse.
For low-bandwidth lines we could defer getting subfolder lists until the
folder is expanded.
-
-[ -- new features -- ]
-* Implement server message COPY, instead of FETCH/APPEND.
-
- PRIORITY: [** ]
-
-* Implement the received folder on IMAP. (Wait on COPY).
-
+ Current thought is that <ENTER> will select a mailbox if it doesn't have
+ subfolders or enter the folder if it does. If it has messages and subfolders,
+ we'll use a new key to select it as a mailbox.
+ 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: [** ]
-* Commands for creating/deleting folders on the server, since users may not
- otherwise be able to do this on IMAP servers.
-
- PRIORITY: [** ]
-
-* Implement READ-ONLY support, and the x (quit without saving changes)
- command.
+[ -- speed -- ]
+* Implement server message COPY, instead of FETCH/APPEND.
PRIORITY: [** ]
@@ -54,5 +48,20 @@ IMAP enhancements/fixes, by priority:
PRIORITY: [* ]
+[ -- new features -- ]
+* Implement the received folder on IMAP. (Wait on COPY).
+
+ PRIORITY: [** ]
+
+* Commands for creating/deleting folders on the server, since users may not
+ otherwise be able to do this on IMAP servers.
+
+ PRIORITY: [** ]
+
+* Implement READ-ONLY support, and the x (quit without saving changes)
+ command.
+
+ PRIORITY: [** ]
+
Brendan Cully <brendan@kublai.com>
-Updated: 19990904
+Updated: 19990906