]> git.cworth.org Git - sup/commitdiff
updates for 0.0.2
authorwmorgan <wmorgan@5c8cc53c-5e98-4d25-b20a-d8db53a31250>
Sun, 10 Dec 2006 20:02:08 +0000 (20:02 +0000)
committerwmorgan <wmorgan@5c8cc53c-5e98-4d25-b20a-d8db53a31250>
Sun, 10 Dec 2006 20:02:08 +0000 (20:02 +0000)
git-svn-id: svn://rubyforge.org/var/svn/sup/trunk@76 5c8cc53c-5e98-4d25-b20a-d8db53a31250

README.txt
doc/TODO
lib/sup.rb
www/index.html

index 95cb2fb15a872b5d4f3acf7172c3d8d96b56a4a0..f1fbd51114e6884a405a0c4d93c07e00460e9c96 100644 (file)
@@ -53,8 +53,8 @@ Features:
 
 Current limitations which will be fixed:
 
-- Support for mbox only at this point. No support for POP, IMAP, mh,
-  GMail mailstores.
+- Support for mbox and IMAP only at this point. No support for POP, mh,
+  or GMail mailstores.
 
 - No internationalization support. No wide characters, no subject
   demangling. 
@@ -67,10 +67,15 @@ Current limitations which will be fixed:
 
 == SYNOPSYS:
 
-  1. sup-import <mbox filename>+
+  1. sup-import <source>+
   2. sup
   3. edit ~/.sup/config.yaml for the (very few) settings sup has
 
+  Where <source> is a filename (for mbox files), or an imap or imaps
+  url. In the case of imap, don't put the username and password in
+  the URI (which is a terrible, terrible idea). You will be prompted
+  for them.
+
   sup-import has several options which control whether you want
   messages from particular mailboxes not to be added to the inbox,
   or not to be marked as new, so run it with -h for help.
@@ -93,7 +98,7 @@ Current limitations which will be fixed:
 * gem install sup -y
 * Then, in rmail, change line 159 of multipart.rb to:
     chunk = chunk[0..start]
-  (Sorry. it's an unsupported package.) You might be able to get away
+  (Sorry; it's an unsupported package.) You might be able to get away
   without doing this but if you get frozen string exceptions when
   reading in multipart messages, this is what you need to change.
 
index 1126bc1fd2881d27b67db8ecf5a9e302d0fcf5a7..da6cd0d79253dcef53b0d51d48b297ac99478042 100644 (file)
--- a/doc/TODO
+++ b/doc/TODO
@@ -9,7 +9,12 @@ maybe: rangefilter on the initial inbox to only consider the most recent 1000 me
 select all, starred, to me, etc
 editing of arbitrary messages
 annotations on messages
+gmail
+pop
+move sup-import argument handling to getopt or something
 
+x handle broken sources better
+x imap
 x word wrap
 x background indexing
 x auto-insertion of draft messages
index 5bf39285f861dbef7a059e8edbfb58a1204eea69..353190caf6ddeea84ddd008ee7d3c027428eb32f 100644 (file)
@@ -15,7 +15,7 @@ class Object
 end
 
 module Redwood
-  VERSION = "0.0.1"
+  VERSION = "0.0.2"
 
   BASE_DIR   = File.join(ENV["HOME"], ".sup")
   CONFIG_FN  = File.join(BASE_DIR, "config.yaml")
index e912885d8e1a86578a0137834ec53bcc000c4ef7..9b7e031e6277cce44295a4c67d278b89acf860fb 100644 (file)
@@ -39,11 +39,12 @@ href="Philosophy.txt">philosophical statement</a>.
 
 <h2>Status</h2>
 
-<p>The current version of Sup is 0.0.1, released November 28th, 2006.
+<p>The current version of Sup is 0.0.2, released December 10th, 2006.
 This is an alpha release. It is unix-centric, mbox-specific, and has
-no i18n support. I plan to fix all of these problems.</p>
+no i18n support. It supports only mbox and IMAP, not POP or GMail. I
+plan to fix all of these problems.</p>
 
-<p>Other than those limitations, it works great. I use it for my
+<p>Other than those limitations, it works great! I use it for my
 everyday email.</p>
 
 <h2>Getting it</h2>