vmail 0.1.8 → 0.1.9
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 +13 -9
- data/lib/vmail.vim +1 -2
- data/lib/vmail/imap_client.rb +1 -1
- data/lib/vmail/version.rb +1 -1
- metadata +2 -2
data/README.markdown
CHANGED
@@ -120,14 +120,14 @@ To view the raw RFC822 version of a message, type `,R` while viewing the message
|
|
120
120
|
|
121
121
|
## Starring, deleting, archiving, marking spam
|
122
122
|
|
123
|
-
To star a message, put the cursor on it and type
|
124
|
-
|
125
|
-
|
126
|
-
|
123
|
+
To star a message, put the cursor on it and type `,*`. (Note that the comma
|
124
|
+
before the * is part of the key sequence.) Starring a message copies it to the
|
125
|
+
`starred` mailbox. Starred messages are marked with a `[*]` symbol and
|
126
|
+
color-highlighted.
|
127
127
|
|
128
|
-
To delete a message, put the cursor on it and type
|
129
|
-
|
130
|
-
|
128
|
+
To delete a message, put the cursor on it and type `,#`. Deleting a message
|
129
|
+
puts it in the `trash` mailbox. Deleting a message from the `trash` mailbox
|
130
|
+
deletes it permanently.
|
131
131
|
|
132
132
|
To archive a message, put the cursor on it and type `,e`. Archiving a message
|
133
133
|
moves it to the `all` mailbox.
|
@@ -312,6 +312,9 @@ Here are some example search queries.
|
|
312
312
|
# subject field search; use double quotes to enclose multiple words
|
313
313
|
subject "unix philosophy"
|
314
314
|
|
315
|
+
# body field search; use double quotes to enclose multiple words
|
316
|
+
body "unix philosophy"
|
317
|
+
|
315
318
|
# example of date range and multiple conditions
|
316
319
|
before 30-Nov-2010 since 1-Nov-2010 from prx.org
|
317
320
|
|
@@ -343,8 +346,9 @@ vmail generates a few file byproducts when it is running. It generates a
|
|
343
346
|
temporary `vmailbuffer` file in the current directory to hold the message
|
344
347
|
list. This should get deleted automatically when vmail quits.
|
345
348
|
|
346
|
-
vmail also creates a `
|
347
|
-
|
349
|
+
vmail also creates a `compose_message.txt` file if you save the buffer for a
|
350
|
+
new message. vmail creates a `vmail-htmlpart.html` file in the current
|
351
|
+
directory if you open an HTML mail part from vmail.
|
348
352
|
|
349
353
|
Finally, vmail logs output to a `vmail.log` file which it creates in the
|
350
354
|
current directory. You can tail this file in a separate terminal window to see
|
data/lib/vmail.vim
CHANGED
data/lib/vmail/imap_client.rb
CHANGED
data/lib/vmail/version.rb
CHANGED