| 1 | `imap.folder`:: |
| 2 | The folder to drop the mails into, which is typically the Drafts |
| 3 | folder. For example: `INBOX.Drafts`, `INBOX/Drafts` or |
| 4 | `[Gmail]/Drafts`. The IMAP folder to interact with MUST be specified; |
| 5 | the value of this configuration variable is used as the fallback |
| 6 | default value when the `--folder` option is not given. |
| 7 | |
| 8 | `imap.tunnel`:: |
| 9 | Command used to set up a tunnel to the IMAP server through which |
| 10 | commands will be piped instead of using a direct network connection |
| 11 | to the server. Required when `imap.host` is not set. |
| 12 | |
| 13 | `imap.host`:: |
| 14 | A URL identifying the server. Use an `imap://` prefix for non-secure |
| 15 | connections and an `imaps://` prefix for secure connections. |
| 16 | Ignored when `imap.tunnel` is set, but required otherwise. |
| 17 | |
| 18 | `imap.user`:: |
| 19 | The username to use when logging in to the server. |
| 20 | |
| 21 | `imap.pass`:: |
| 22 | The password to use when logging in to the server. |
| 23 | |
| 24 | `imap.port`:: |
| 25 | An integer port number to connect to on the server. |
| 26 | Defaults to 143 for `imap://` hosts and 993 for `imaps://` hosts. |
| 27 | Ignored when `imap.tunnel` is set. |
| 28 | |
| 29 | `imap.sslverify`:: |
| 30 | A boolean to enable/disable verification of the server certificate |
| 31 | used by the SSL/TLS connection. Default is `true`. Ignored when |
| 32 | `imap.tunnel` is set. |
| 33 | |
| 34 | `imap.preformattedHTML`:: |
| 35 | A boolean to enable/disable the use of html encoding when sending |
| 36 | a patch. An html encoded patch will be bracketed with `<pre>` |
| 37 | and have a content type of text/html. Ironically, enabling this |
| 38 | option causes Thunderbird to send the patch as a plain/text, |
| 39 | format=fixed email. Default is `false`. |
| 40 | |
| 41 | `imap.authMethod`:: |
| 42 | Specify the authentication method for authenticating with the IMAP server. |
| 43 | If Git was built with the NO_CURL option, or if your curl version is older |
| 44 | than 7.34.0, or if you're running git-imap-send with the `--no-curl` |
| 45 | option, the only supported methods are `PLAIN`, `CRAM-MD5`, `OAUTHBEARER` |
| 46 | and `XOAUTH2`. If this is not set then `git imap-send` uses the basic IMAP |
| 47 | plaintext `LOGIN` command. |