imap-send: clarify CRAM-MD5 vs LOGIN documentation
[git/mjg.git] / Documentation / git-imap-send.txt
blob770cbe80a385b50c018a7f3c95a6cb61bc91e2e0
1 git-imap-send(1)
2 ================
4 NAME
5 ----
6 git-imap-send - Send a collection of patches from stdin to an IMAP folder
9 SYNOPSIS
10 --------
11 [verse]
12 'git imap-send'
15 DESCRIPTION
16 -----------
17 This command uploads a mailbox generated with 'git format-patch'
18 into an IMAP drafts folder.  This allows patches to be sent as
19 other email is when using mail clients that cannot read mailbox
20 files directly. The command also works with any general mailbox
21 in which emails have the fields "From", "Date", and "Subject" in
22 that order.
24 Typical usage is something like:
26 git format-patch --signoff --stdout --attach origin | git imap-send
29 CONFIGURATION
30 -------------
32 To use the tool, imap.folder and either imap.tunnel or imap.host must be set
33 to appropriate values.
35 Variables
36 ~~~~~~~~~
38 imap.folder::
39         The folder to drop the mails into, which is typically the Drafts
40         folder. For example: "INBOX.Drafts", "INBOX/Drafts" or
41         "[Gmail]/Drafts". Required to use imap-send.
43 imap.tunnel::
44         Command used to setup a tunnel to the IMAP server through which
45         commands will be piped instead of using a direct network connection
46         to the server. Required when imap.host is not set to use imap-send.
48 imap.host::
49         A URL identifying the server. Use a `imap://` prefix for non-secure
50         connections and a `imaps://` prefix for secure connections.
51         Ignored when imap.tunnel is set, but required to use imap-send
52         otherwise.
54 imap.user::
55         The username to use when logging in to the server.
57 imap.pass::
58         The password to use when logging in to the server.
60 imap.port::
61         An integer port number to connect to on the server.
62         Defaults to 143 for imap:// hosts and 993 for imaps:// hosts.
63         Ignored when imap.tunnel is set.
65 imap.sslverify::
66         A boolean to enable/disable verification of the server certificate
67         used by the SSL/TLS connection. Default is `true`. Ignored when
68         imap.tunnel is set.
70 imap.preformattedHTML::
71         A boolean to enable/disable the use of html encoding when sending
72         a patch.  An html encoded patch will be bracketed with <pre>
73         and have a content type of text/html.  Ironically, enabling this
74         option causes Thunderbird to send the patch as a plain/text,
75         format=fixed email.  Default is `false`.
77 imap.authMethod::
78         Specify authenticate method for authentication with IMAP server.
79         Current supported method is 'CRAM-MD5' only. If this is not set
80         then 'git imap-send' uses the basic IMAP plaintext LOGIN command.
82 Examples
83 ~~~~~~~~
85 Using tunnel mode:
87 ..........................
88 [imap]
89     folder = "INBOX.Drafts"
90     tunnel = "ssh -q -C user@example.com /usr/bin/imapd ./Maildir 2> /dev/null"
91 ..........................
93 Using direct mode:
95 .........................
96 [imap]
97     folder = "INBOX.Drafts"
98     host = imap://imap.example.com
99     user = bob
100     pass = p4ssw0rd
101 ..........................
103 Using direct mode with SSL:
105 .........................
106 [imap]
107     folder = "INBOX.Drafts"
108     host = imaps://imap.example.com
109     user = bob
110     pass = p4ssw0rd
111     port = 123
112     sslverify = false
113 ..........................
116 EXAMPLE
117 -------
118 To submit patches using GMail's IMAP interface, first, edit your ~/.gitconfig
119 to specify your account settings:
121 ---------
122 [imap]
123         folder = "[Gmail]/Drafts"
124         host = imaps://imap.gmail.com
125         user = user@gmail.com
126         port = 993
127         sslverify = false
128 ---------
130 You might need to instead use: folder = "[Google Mail]/Drafts" if you get an error
131 that the "Folder doesn't exist".
133 Once the commits are ready to be sent, run the following command:
135   $ git format-patch --cover-letter -M --stdout origin/master | git imap-send
137 Just make sure to disable line wrapping in the email client (GMail's web
138 interface will wrap lines no matter what, so you need to use a real
139 IMAP client).
141 CAUTION
142 -------
143 It is still your responsibility to make sure that the email message
144 sent by your email program meets the standards of your project.
145 Many projects do not like patches to be attached.  Some mail
146 agents will transform patches (e.g. wrap lines, send them as
147 format=flowed) in ways that make them fail.  You will get angry
148 flames ridiculing you if you don't check this.
150 Thunderbird in particular is known to be problematic.  Thunderbird
151 users may wish to visit this web page for more information:
152   http://kb.mozillazine.org/Plain_text_e-mail_-_Thunderbird#Completely_plain_email
154 SEE ALSO
155 --------
156 linkgit:git-format-patch[1], linkgit:git-send-email[1], mbox(5)
160 Part of the linkgit:git[1] suite