vmail 1.7.1 → 1.7.2

Sign up to get free protection for your applications and to get access to all the features.
data/README.markdown CHANGED
@@ -297,7 +297,7 @@ The current version of Vmail can handle attachments to a certain extent.
297
297
  When you're viewing a message with attachments, you'll see something like this
298
298
  at the top of the message window:
299
299
 
300
- 4 kb
300
+ <4vlj45.29529.zoe2@instantwatcher.com> 1kb Seen
301
301
  - image/png; name=canada.png
302
302
  - image/gif; name=arrow_right.gif
303
303
  ---------------------------------------
@@ -458,12 +458,12 @@ in the original terminal window to stop the Vmail process.
458
458
 
459
459
  Vmail generates a few files in the current directory when it is running:
460
460
 
461
+ * `vmail.db` is a sqlite3 database. Vmail uses this to cache messages it has seen..
462
+
461
463
  * `vmailbuffer` holds the message list. This file should get deleted automatically when Vmail quits.
462
464
 
463
465
  * `current_message.txt` holds the current message being shown. Not deleted on quit.
464
466
 
465
- * `sent-messages.txt` will contain copies of any messages you send from Vmail
466
-
467
467
  * `part.html` is created if you open an HTML mail part from Vmail.
468
468
 
469
469
  Finally, Vmail logs output to a `vmail.log` file which it creates in the
@@ -297,7 +297,7 @@ module Vmail
297
297
  end
298
298
 
299
299
  def forward_template
300
- original_body = current_message.split(/\n-{20,}\n/, 2)[1]
300
+ original_body = current_message.plaintext.split(/\n-{20,}\n/, 2)[1]
301
301
  formatter = Vmail::MessageFormatter.new(current_mail)
302
302
  headers = formatter.extract_headers
303
303
  subject = headers['subject']
data/lib/vmail/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Vmail
2
- VERSION = '1.7.1'
2
+ VERSION = '1.7.2'
3
3
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: vmail
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 1.7.1
5
+ version: 1.7.2
6
6
  platform: ruby
7
7
  authors:
8
8
  - Daniel Choi