sup 0.0.8 → 0.1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of sup might be problematic. Click here for more details.
- data/HACKING +6 -36
- data/History.txt +11 -0
- data/Manifest.txt +5 -0
- data/README.txt +13 -31
- data/Rakefile +3 -3
- data/bin/sup +167 -89
- data/bin/sup-add +39 -29
- data/bin/sup-config +57 -31
- data/bin/sup-sync +60 -54
- data/bin/sup-sync-back +143 -0
- data/doc/FAQ.txt +56 -19
- data/doc/Philosophy.txt +34 -33
- data/doc/TODO +76 -46
- data/doc/UserGuide.txt +142 -122
- data/lib/sup.rb +76 -36
- data/lib/sup/account.rb +27 -19
- data/lib/sup/buffer.rb +130 -44
- data/lib/sup/contact.rb +1 -1
- data/lib/sup/draft.rb +1 -2
- data/lib/sup/imap.rb +64 -19
- data/lib/sup/index.rb +95 -16
- data/lib/sup/keymap.rb +1 -1
- data/lib/sup/label.rb +31 -5
- data/lib/sup/maildir.rb +7 -5
- data/lib/sup/mbox.rb +34 -15
- data/lib/sup/mbox/loader.rb +30 -12
- data/lib/sup/mbox/ssh-loader.rb +7 -5
- data/lib/sup/message.rb +93 -44
- data/lib/sup/modes/buffer-list-mode.rb +1 -1
- data/lib/sup/modes/completion-mode.rb +55 -0
- data/lib/sup/modes/compose-mode.rb +6 -25
- data/lib/sup/modes/contact-list-mode.rb +1 -1
- data/lib/sup/modes/edit-message-mode.rb +119 -29
- data/lib/sup/modes/file-browser-mode.rb +108 -0
- data/lib/sup/modes/forward-mode.rb +3 -20
- data/lib/sup/modes/inbox-mode.rb +9 -12
- data/lib/sup/modes/label-list-mode.rb +28 -46
- data/lib/sup/modes/label-search-results-mode.rb +1 -16
- data/lib/sup/modes/line-cursor-mode.rb +44 -5
- data/lib/sup/modes/person-search-results-mode.rb +1 -16
- data/lib/sup/modes/reply-mode.rb +18 -31
- data/lib/sup/modes/resume-mode.rb +6 -6
- data/lib/sup/modes/scroll-mode.rb +6 -5
- data/lib/sup/modes/search-results-mode.rb +6 -17
- data/lib/sup/modes/thread-index-mode.rb +70 -28
- data/lib/sup/modes/thread-view-mode.rb +65 -29
- data/lib/sup/person.rb +71 -30
- data/lib/sup/poll.rb +13 -4
- data/lib/sup/rfc2047.rb +61 -0
- data/lib/sup/sent.rb +7 -5
- data/lib/sup/source.rb +12 -9
- data/lib/sup/suicide.rb +36 -0
- data/lib/sup/tagger.rb +6 -6
- data/lib/sup/textfield.rb +76 -14
- data/lib/sup/thread.rb +97 -123
- data/lib/sup/util.rb +167 -1
- metadata +30 -5
metadata
CHANGED
@@ -1,17 +1,17 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
|
-
rubygems_version: 0.
|
2
|
+
rubygems_version: 0.9.0
|
3
3
|
specification_version: 1
|
4
4
|
name: sup
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.
|
7
|
-
date: 2007-
|
6
|
+
version: "0.1"
|
7
|
+
date: 2007-07-17 00:00:00 -07:00
|
8
8
|
summary: A console-based email client with the best features of GMail, mutt, and emacs. Features full text search, labels, tagged operations, multiple buffers, recent contacts, and more.
|
9
9
|
require_paths:
|
10
10
|
- lib
|
11
11
|
email: wmorgan-sup@masanjin.net
|
12
12
|
homepage: http://sup.rubyforge.org
|
13
13
|
rubyforge_project: sup
|
14
|
-
description: "Sup is a console-based email client
|
14
|
+
description: "Sup is a console-based email client for people with a lot of email. It supports tagging, very fast full-text search, automatic contact-list management, and more. If you're the type of person who treats email as an extension of your long-term memory, Sup is for you. Sup makes it easy to: - Handle massive amounts of email. - Mix email from different sources: mbox files (even across different machines), Maildir directories, IMAP folders, POP accounts, and GMail accounts. - Instantaneously search over your entire email collection. Search over body text, or use a query language to combine search predicates in any way. - Handle multiple accounts. Replying to email sent to a particular account will use the correct SMTP server, signature, and from address. - Add custom code to handle certain types of messages or to handle certain types of text within messages. - Organize email with user-defined labels, automatically track recent contacts, and much more! The goal of Sup is to become the email client of choice for nerds everywhere."
|
15
15
|
autorequire:
|
16
16
|
default_executable:
|
17
17
|
bindir: bin
|
@@ -25,6 +25,7 @@ required_ruby_version: !ruby/object:Gem::Version::Requirement
|
|
25
25
|
platform: ruby
|
26
26
|
signing_key:
|
27
27
|
cert_chain:
|
28
|
+
post_install_message:
|
28
29
|
authors:
|
29
30
|
- William Morgan
|
30
31
|
files:
|
@@ -40,6 +41,7 @@ files:
|
|
40
41
|
- bin/sup-dump
|
41
42
|
- bin/sup-recover-sources
|
42
43
|
- bin/sup-sync
|
44
|
+
- bin/sup-sync-back
|
43
45
|
- doc/FAQ.txt
|
44
46
|
- doc/Philosophy.txt
|
45
47
|
- doc/TODO
|
@@ -63,9 +65,11 @@ files:
|
|
63
65
|
- lib/sup/message.rb
|
64
66
|
- lib/sup/mode.rb
|
65
67
|
- lib/sup/modes/buffer-list-mode.rb
|
68
|
+
- lib/sup/modes/completion-mode.rb
|
66
69
|
- lib/sup/modes/compose-mode.rb
|
67
70
|
- lib/sup/modes/contact-list-mode.rb
|
68
71
|
- lib/sup/modes/edit-message-mode.rb
|
72
|
+
- lib/sup/modes/file-browser-mode.rb
|
69
73
|
- lib/sup/modes/forward-mode.rb
|
70
74
|
- lib/sup/modes/help-mode.rb
|
71
75
|
- lib/sup/modes/inbox-mode.rb
|
@@ -84,8 +88,10 @@ files:
|
|
84
88
|
- lib/sup/modes/thread-view-mode.rb
|
85
89
|
- lib/sup/person.rb
|
86
90
|
- lib/sup/poll.rb
|
91
|
+
- lib/sup/rfc2047.rb
|
87
92
|
- lib/sup/sent.rb
|
88
93
|
- lib/sup/source.rb
|
94
|
+
- lib/sup/suicide.rb
|
89
95
|
- lib/sup/tagger.rb
|
90
96
|
- lib/sup/textfield.rb
|
91
97
|
- lib/sup/thread.rb
|
@@ -104,6 +110,7 @@ executables:
|
|
104
110
|
- sup-dump
|
105
111
|
- sup-recover-sources
|
106
112
|
- sup-sync
|
113
|
+
- sup-sync-back
|
107
114
|
extensions: []
|
108
115
|
|
109
116
|
requirements: []
|
@@ -161,5 +168,23 @@ dependencies:
|
|
161
168
|
requirements:
|
162
169
|
- - ">="
|
163
170
|
- !ruby/object:Gem::Version
|
164
|
-
version: "1.
|
171
|
+
version: "1.7"
|
172
|
+
version:
|
173
|
+
- !ruby/object:Gem::Dependency
|
174
|
+
name: lockfile
|
175
|
+
version_requirement:
|
176
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
177
|
+
requirements:
|
178
|
+
- - ">"
|
179
|
+
- !ruby/object:Gem::Version
|
180
|
+
version: 0.0.0
|
181
|
+
version:
|
182
|
+
- !ruby/object:Gem::Dependency
|
183
|
+
name: mime-types
|
184
|
+
version_requirement:
|
185
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
186
|
+
requirements:
|
187
|
+
- - ">"
|
188
|
+
- !ruby/object:Gem::Version
|
189
|
+
version: 0.0.0
|
165
190
|
version:
|