vmail 1.1.7 → 1.1.8
Sign up to get free protection for your applications and to get access to all the features.
- data/README.markdown +3 -3
- data/TODO +9 -0
- data/lib/vmail/imap_client.rb +4 -3
- data/lib/vmail/version.rb +1 -1
- metadata +3 -3
data/README.markdown
CHANGED
@@ -484,9 +484,9 @@ vmail users, please add them to the [vmail wiki][wiki].
|
|
484
484
|
|
485
485
|
## How to contact the developer
|
486
486
|
|
487
|
-
My name is Daniel Choi. I am based in Cambridge,
|
488
|
-
dhchoi@gmail.com. You can [follow me on Twitter][twitter] too.
|
489
|
-
out goes to my funny, smart, and supportive fellow hacker alums of
|
487
|
+
My name is Daniel Choi. I am based in Cambridge, Massachusetts, USA, and you
|
488
|
+
can email me at dhchoi@gmail.com. You can [follow me on Twitter][twitter] too.
|
489
|
+
A big shout out goes to my funny, smart, and supportive fellow hacker alums of
|
490
490
|
[Betahouse][betahouse].
|
491
491
|
|
492
492
|
[betahouse]:http://betahouse.org/
|
data/TODO
CHANGED
@@ -93,3 +93,12 @@ Thu Dec 23 08:40:57 EST 2010
|
|
93
93
|
Fri Dec 24 10:13:58 EST 2010
|
94
94
|
|
95
95
|
- make contacts groups to add a bunch of contacts at once?
|
96
|
+
|
97
|
+
|
98
|
+
------------------------------------------------------------------------
|
99
|
+
Sat Dec 25 09:07:28 EST 2010
|
100
|
+
|
101
|
+
- change vmail to take a file or files (e.g. globbed) as argument and
|
102
|
+
send them. This will let the user enter password on invocation.
|
103
|
+
|
104
|
+
|
data/lib/vmail/imap_client.rb
CHANGED
@@ -491,10 +491,11 @@ EOF
|
|
491
491
|
d = {:mail => mail, :size => size, :message_text => message_text}
|
492
492
|
message_cache[[@mailbox, uid]] = d
|
493
493
|
rescue
|
494
|
-
msg = "Error encountered parsing message index #{index} seqno #{seqno} uid #{uid}:\n#{$!}\n#{$!.backtrace.join("\n")}"
|
494
|
+
msg = "Error encountered parsing message index #{index} seqno #{seqno} uid #{uid}:\n#{$!}\n#{$!.backtrace.join("\n")}" +
|
495
|
+
"\n\nRaw message:\n\n" + mail.to_s
|
495
496
|
log msg
|
496
|
-
log
|
497
|
-
msg
|
497
|
+
log message_text
|
498
|
+
{:message_text => msg}
|
498
499
|
end
|
499
500
|
|
500
501
|
def prefetch_adjacent(index)
|
data/lib/vmail/version.rb
CHANGED
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 1
|
7
7
|
- 1
|
8
|
-
-
|
9
|
-
version: 1.1.
|
8
|
+
- 8
|
9
|
+
version: 1.1.8
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Daniel Choi
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-12-
|
17
|
+
date: 2010-12-28 00:00:00 -05:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|