vmail 2.1.8 → 2.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 +2 -2
- data/lib/vmail.rb +1 -1
- data/lib/vmail/version.rb +1 -1
- metadata +1 -1
data/README.markdown
CHANGED
|
@@ -435,8 +435,8 @@ VMAIL_VIM=gvim` before starting Vmail. Or put this command in your
|
|
|
435
435
|
|
|
436
436
|
Note that when Vmail uses MacVim or gvim, the terminal window in which you
|
|
437
437
|
invoke Vmail will show Vmail's logging output while MacVim is running. To quit
|
|
438
|
-
Vmail
|
|
439
|
-
|
|
438
|
+
Vmail, first quit the MacVim window running Vmail, and then press CTRL-c in the
|
|
439
|
+
original terminal window to stop the Vmail process.
|
|
440
440
|
|
|
441
441
|
## Vmail file byproducts
|
|
442
442
|
|
data/lib/vmail.rb
CHANGED
|
@@ -39,7 +39,7 @@ module Vmail
|
|
|
39
39
|
|
|
40
40
|
contacts_file = opts.contacts_file
|
|
41
41
|
|
|
42
|
-
logfile = (vim == 'mvim' || vim
|
|
42
|
+
logfile = (vim == 'mvim' || vim == 'gvim') ? STDERR : 'vmail.log'
|
|
43
43
|
config.merge! 'logfile' => logfile
|
|
44
44
|
|
|
45
45
|
puts "Starting vmail imap client for #{config['username']}"
|
data/lib/vmail/version.rb
CHANGED