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.
@@ -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 `,*` or alternatively `s`.
124
- (Note that the comma before the * is part of the key sequence.) Starring a
125
- message copies it to the `starred` mailbox. Starred messages are marked with a
126
- `[*]` symbol and color-highlighted.
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 `,#` or alternatively `,d`.
129
- Deleting a message puts it in the `trash` mailbox. Deleting a message from the
130
- `trash` mailbox deletes it permanently.
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 `vmail-htmlpart.html` file in the current directory if you
347
- open an HTML mail part from vmail.
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
@@ -559,8 +559,7 @@ func! s:open_compose_window(command)
559
559
  redraw
560
560
  echo a:command
561
561
  let res = system(a:command)
562
- split compose-message
563
- setlocal noswapfile
562
+ split compose_message.txt
564
563
  setlocal modifiable
565
564
  wincmd p
566
565
  close!
@@ -423,7 +423,7 @@ EOF
423
423
  end
424
424
  mail = new_mail_from_input(text)
425
425
  mail.delivery_method(*smtp_settings)
426
- mail.deliver!
426
+ log mail.deliver!
427
427
  "message '#{mail.subject}' sent"
428
428
  end
429
429
 
@@ -1,3 +1,3 @@
1
1
  module Vmail
2
- VERSION = "0.1.8"
2
+ VERSION = "0.1.9"
3
3
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 8
9
- version: 0.1.8
8
+ - 9
9
+ version: 0.1.9
10
10
  platform: ruby
11
11
  authors:
12
12
  - Daniel Choi