vmail 1.1.1 → 1.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/README.markdown +7 -2
- data/lib/vmail/imap_client.rb +2 -1
- data/lib/vmail/version.rb +1 -1
- metadata +3 -3
data/README.markdown
CHANGED
@@ -486,8 +486,13 @@ vmail users, please add them to the [vmail wiki][wiki].
|
|
486
486
|
|
487
487
|
## How to contact the developer
|
488
488
|
|
489
|
-
My name is Daniel Choi. I am based in Cambridge, MA, and you can email me at
|
490
|
-
You can [follow me on Twitter][twitter] too.
|
489
|
+
My name is Daniel Choi. I am based in Cambridge, MA, and you can email me at
|
490
|
+
dhchoi@gmail.com. You can [follow me on Twitter][twitter] too. A big shout
|
491
|
+
out goes to my funny, smart, and supportive fellow hacker alums of
|
492
|
+
[Betahouse][betahouse].
|
493
|
+
|
494
|
+
[betahouse]:http://betahouse.org/
|
495
|
+
|
491
496
|
|
492
497
|
[twitter]:http://twitter.com/#!/danchoi
|
493
498
|
|
data/lib/vmail/imap_client.rb
CHANGED
@@ -147,7 +147,8 @@ module Vmail
|
|
147
147
|
end
|
148
148
|
|
149
149
|
def list_mailboxes
|
150
|
-
|
150
|
+
log 'loading mailboxes...'
|
151
|
+
@mailboxes ||= ((@imap.list("[Gmail]/", "%") || []) + (@imap.list("", "%")) || []).
|
151
152
|
select {|struct| struct.attr.none? {|a| a == :Noselect} }.
|
152
153
|
map {|struct| struct.name}.
|
153
154
|
map {|name| MailboxAliases.invert[name] || name}
|
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
|
+
- 2
|
9
|
+
version: 1.1.2
|
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-23 00:00:00 -05:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|