vmail 1.7.1 → 1.7.2
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 +3 -3
- data/lib/vmail/imap_client.rb +1 -1
- data/lib/vmail/version.rb +1 -1
- metadata +1 -1
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
|
-
|
|
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
|
data/lib/vmail/imap_client.rb
CHANGED
|
@@ -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