vmail 2.5.7 → 2.5.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.markdown +1 -1
- data/lib/vmail/reply_templating.rb +3 -1
- data/lib/vmail/version.rb +1 -1
- metadata +19 -3
data/README.markdown
CHANGED
@@ -301,7 +301,7 @@ Make sure you append *.txt to the filename, or else Vmail won't recognize it as
|
|
301
301
|
a potential email when you reload it.
|
302
302
|
|
303
303
|
Make sure you don't use `:wq` unless you mean to quit Vmail immediately. After
|
304
|
-
you save the draft to a file, you can go back to the message list by typing
|
304
|
+
you save the draft to a file, you can go back to the message list by typing `,q`
|
305
305
|
in normal mode.
|
306
306
|
|
307
307
|
To resume writing the draft later, just type `:e my_draft_filename.txt` to load
|
@@ -52,7 +52,9 @@ module Vmail
|
|
52
52
|
end
|
53
53
|
xs = xs.select {|x|
|
54
54
|
email = (x[/<([^>]+)>/, 1] || x)
|
55
|
-
email !~ /#{reply_recipient}/
|
55
|
+
email !~ /#{reply_recipient}/ \
|
56
|
+
&& email !~ /#@username/ \
|
57
|
+
&& (@always_cc ? (email !~ /#{@always_cc}/) : true)
|
56
58
|
}
|
57
59
|
if @always_cc
|
58
60
|
xs << @always_cc
|
data/lib/vmail/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vmail
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.5.
|
4
|
+
version: 2.5.8
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-10-20 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: mail
|
@@ -157,4 +157,20 @@ rubygems_version: 1.8.23
|
|
157
157
|
signing_key:
|
158
158
|
specification_version: 3
|
159
159
|
summary: A Vim interface to Gmail
|
160
|
-
test_files:
|
160
|
+
test_files:
|
161
|
+
- test/address_quoter_test.rb
|
162
|
+
- test/base64_test.rb
|
163
|
+
- test/fixtures/euc-kr-header.eml
|
164
|
+
- test/fixtures/euc-kr-html.eml
|
165
|
+
- test/fixtures/google-affiliate.eml
|
166
|
+
- test/fixtures/htmlbody.eml
|
167
|
+
- test/fixtures/moleskine-html.eml
|
168
|
+
- test/fixtures/reply-template-encoding-test.eml
|
169
|
+
- test/fixtures/reply_all.eml
|
170
|
+
- test/fixtures/rfc_part.eml
|
171
|
+
- test/fixtures/textbody-nocontenttype.eml
|
172
|
+
- test/fixtures/with-attachments.eml
|
173
|
+
- test/message_formatter_test.rb
|
174
|
+
- test/reply_template_test.rb
|
175
|
+
- test/test_helper.rb
|
176
|
+
- test/time_format_test.rb
|