vmail 0.1.4 → 0.1.5
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 +11 -1
- data/lib/vmail/options.rb +2 -29
- data/lib/vmail/version.rb +1 -1
- data/website/vmail.html +17 -6
- metadata +2 -2
data/README.markdown
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
vmail is a Vim interface to Gmail. Here are some screenshots:
|
4
4
|
|
5
5
|
Why vmail? Because some people love using Vim 1000 times more than using
|
6
|
-
a web browser.
|
6
|
+
a web browser or a GUI mail program.
|
7
7
|
|
8
8
|
|
9
9
|
## Prerequisites
|
@@ -20,6 +20,16 @@ The current version of vmail assumes a Unix environment. I'll try to make later
|
|
20
20
|
|
21
21
|
gem install vmail
|
22
22
|
|
23
|
+
Test your installation by typing `vmail -h`. You should see vmail's help.
|
24
|
+
|
25
|
+
On some systems you may run into a PATH issue, where the system can't find the
|
26
|
+
`vmail` command after installation. Please report this if you encounter this
|
27
|
+
problem, and mention what system you're using. You might want to try
|
28
|
+
|
29
|
+
sudo gem install vmail
|
30
|
+
|
31
|
+
to see if that puts `vmail` on your PATH.
|
32
|
+
|
23
33
|
## Configuration file
|
24
34
|
|
25
35
|
To run vmail, create a yaml file called `.vmailrc` and save it either in the
|
data/lib/vmail/options.rb
CHANGED
@@ -96,35 +96,8 @@ EOF
|
|
96
96
|
end
|
97
97
|
|
98
98
|
INSTRUCTIONS = <<-EOF
|
99
|
-
|
99
|
+
Please visit http://danielchoi.com/software/vmail.html for instructions
|
100
|
+
on how to configure and run vmail.
|
100
101
|
|
101
|
-
To run vmail, create a yaml file called .vmailrc and save it either in the
|
102
|
-
current directory (the directory from which you launch vmail) or in your home
|
103
|
-
directory.
|
104
|
-
|
105
|
-
The .vmailrc file should look something like this. Substitute your own values.
|
106
|
-
|
107
|
-
username: dhchoi@gmail.com
|
108
|
-
password: password
|
109
|
-
name: Daniel Choi
|
110
|
-
signature: |
|
111
|
-
--
|
112
|
-
Sent via vmail. http://danielchoi.com/software/vmail.html
|
113
|
-
|
114
|
-
This file should be formatted in YAML syntax.
|
115
|
-
http://www.yaml.org/spec/1.2/spec.html
|
116
|
-
|
117
|
-
You can omit the password key-value pair if you'd rather not have the password
|
118
|
-
saved in the file. In that case, you'll prompted for the password each time you
|
119
|
-
start vmail.
|
120
|
-
|
121
|
-
CONTACTS AUTOCOMPLETION
|
122
|
-
|
123
|
-
vmail uses vim autocompletion to help you auto-complete email addresses.
|
124
|
-
To use this feature, generate a vmail-contacts.txt file in the current or
|
125
|
-
home directory. This is a simple list of your email contacts.
|
126
|
-
Invoking vmail with the -g option generates this file for you by
|
127
|
-
collecting all the recipients and cc's from your last 500 sent
|
128
|
-
emails. You can adjust this number by using -g with a number argument.
|
129
102
|
EOF
|
130
103
|
end
|
data/lib/vmail/version.rb
CHANGED
data/website/vmail.html
CHANGED
@@ -3,10 +3,10 @@
|
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
5
5
|
<title>Vmail</title>
|
6
|
-
<link href="stylesheets-vmail/reset.css?
|
7
|
-
<link href="stylesheets-vmail/960.css?
|
8
|
-
<link href="stylesheets-vmail/text.css?
|
9
|
-
<link href="stylesheets-vmail/site.css?
|
6
|
+
<link href="stylesheets-vmail/reset.css?1292362191" media="screen" rel="stylesheet" type="text/css" />
|
7
|
+
<link href="stylesheets-vmail/960.css?1292362191" media="screen" rel="stylesheet" type="text/css" />
|
8
|
+
<link href="stylesheets-vmail/text.css?1292362191" media="screen" rel="stylesheet" type="text/css" />
|
9
|
+
<link href="stylesheets-vmail/site.css?1292362191" media="screen" rel="stylesheet" type="text/css" />
|
10
10
|
<script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script><script type="text/javascript">stLight.options({publisher:'8579b5f8-0860-4ea6-9ef1-6f0f58359a99'});</script>
|
11
11
|
<script type="text/javascript" src="lightbox2/js/prototype.js"></script>
|
12
12
|
<script type="text/javascript" src="lightbox2/js/scriptaculous.js?load=effects,builder"></script>
|
@@ -27,7 +27,7 @@
|
|
27
27
|
|
28
28
|
|
29
29
|
<p>Why vmail? Because some people love using Vim 1000 times more than using
|
30
|
-
a web browser.</p>
|
30
|
+
a web browser or a GUI mail program.</p>
|
31
31
|
|
32
32
|
<h2>Prerequisites</h2>
|
33
33
|
|
@@ -47,6 +47,17 @@ a web browser.</p>
|
|
47
47
|
<pre><code>gem install vmail
|
48
48
|
</code></pre>
|
49
49
|
|
50
|
+
<p>Test your installation by typing <code>vmail -h</code>. You should see vmail's help.</p>
|
51
|
+
|
52
|
+
<p>On some systems you may run into a PATH issue, where the system can't find the
|
53
|
+
<code>vmail</code> command after installation. Please report this if you encounter this
|
54
|
+
problem, and mention what system you're using. You might want to try</p>
|
55
|
+
|
56
|
+
<pre><code>sudo gem install vmail
|
57
|
+
</code></pre>
|
58
|
+
|
59
|
+
<p>to see if that puts <code>vmail</code> on your PATH.</p>
|
60
|
+
|
50
61
|
<h2>Configuration file</h2>
|
51
62
|
|
52
63
|
<p>To run vmail, create a yaml file called <code>.vmailrc</code> and save it either in the
|
@@ -365,7 +376,7 @@ process in after quitting the MacVim app.</p>
|
|
365
376
|
<h2>vmail file byproducts</h2>
|
366
377
|
|
367
378
|
<p>vmail generates a few file byproducts when it is running. It generates a
|
368
|
-
temporary <code>vmailbuffer
|
379
|
+
temporary <code>vmailbuffer</code> file in the current directory to hold the message
|
369
380
|
list. This should get deleted automatically when vmail quits.</p>
|
370
381
|
|
371
382
|
<p>vmail also creates a <code>vmail-htmlpart.html</code> file in the current directory if you
|