@@ -51,17 +51,13 @@ OPTIONS
51
51
CONFIGURATION
52
52
-------------
53
53
54
- To use the tool, imap.folder and either imap.tunnel or imap.host must be set
54
+ To use the tool, ` imap.folder` and either ` imap.tunnel` or ` imap.host` must be set
55
55
to appropriate values.
56
56
57
- Variables
58
- ~~~~~~~~~
59
-
60
57
include::config/imap.txt[]
61
58
62
- Examples
63
- ~~~~~~~~
64
-
59
+ EXAMPLES
60
+ --------
65
61
Using tunnel mode:
66
62
67
63
..........................
@@ -89,32 +85,40 @@ Using direct mode with SSL:
89
85
user = bob
90
86
pass = p4ssw0rd
91
87
port = 123
92
- sslverify = false
88
+ ; sslVerify = false
93
89
.........................
94
90
95
91
96
- EXAMPLES
97
- --------
98
- To submit patches using GMail's IMAP interface, first, edit your ~/.gitconfig
99
- to specify your account settings:
92
+ [NOTE]
93
+ You may want to use `sslVerify=false`
94
+ while troubleshooting, if you suspect that the reason you are
95
+ having trouble connecting is because the certificate you use at
96
+ the private server `example.com` you are trying to set up (or
97
+ have set up) may not be verified correctly.
98
+
99
+ Using Gmail's IMAP interface:
100
100
101
101
---------
102
102
[imap]
103
103
folder = "[Gmail]/Drafts"
104
104
host = imaps://imap.gmail.com
105
105
106
106
port = 993
107
- sslverify = false
108
107
---------
109
108
110
- You might need to instead use: folder = "[Google Mail]/Drafts" if you get an error
109
+ [NOTE]
110
+ You might need to instead use: `folder = "[Google Mail]/Drafts"` if you get an error
111
111
that the "Folder doesn't exist".
112
112
113
+ [NOTE]
114
+ If your Gmail account is set to another language than English, the name of the "Drafts"
115
+ folder will be localized.
116
+
113
117
Once the commits are ready to be sent, run the following command:
114
118
115
119
$ git format-patch --cover-letter -M --stdout origin/master | git imap-send
116
120
117
- Just make sure to disable line wrapping in the email client (GMail 's web
121
+ Just make sure to disable line wrapping in the email client (Gmail 's web
118
122
interface will wrap lines no matter what, so you need to use a real
119
123
IMAP client).
120
124
0 commit comments