Git fork
1sendemail.identity::
2 A configuration identity. When given, causes values in the
3 `sendemail.<identity>` subsection to take precedence over
4 values in the `sendemail` section. The default identity is
5 the value of `sendemail.identity`.
6
7sendemail.smtpEncryption::
8 See linkgit:git-send-email[1] for description. Note that this
9 setting is not subject to the `identity` mechanism.
10
11sendemail.smtpSSLCertPath::
12 Path to ca-certificates (either a directory or a single file).
13 Set it to an empty string to disable certificate verification.
14
15sendemail.<identity>.*::
16 Identity-specific versions of the `sendemail.*` parameters
17 found below, taking precedence over those when this
18 identity is selected, through either the command-line or
19 `sendemail.identity`.
20
21sendemail.multiEdit::
22 If `true` (default), a single editor instance will be spawned to edit
23 files you have to edit (patches when `--annotate` is used, and the
24 summary when `--compose` is used). If `false`, files will be edited one
25 after the other, spawning a new editor each time.
26
27sendemail.confirm::
28 Sets the default for whether to confirm before sending. Must be
29 one of `always`, `never`, `cc`, `compose`, or `auto`. See `--confirm`
30 in the linkgit:git-send-email[1] documentation for the meaning of these
31 values.
32
33sendemail.mailmap::
34 If `true`, makes linkgit:git-send-email[1] assume `--mailmap`,
35 otherwise assume `--no-mailmap`. `False` by default.
36
37sendemail.mailmap.file::
38 The location of a linkgit:git-send-email[1] specific augmenting
39 mailmap file. The default mailmap and `mailmap.file` are loaded
40 first. Thus, entries in this file take precedence over entries in
41 the default mailmap locations. See linkgit:gitmailmap[5].
42
43sendemail.mailmap.blob::
44 Like `sendemail.mailmap.file`, but consider the value as a reference
45 to a blob in the repository. Entries in `sendemail.mailmap.file`
46 take precedence over entries here. See linkgit:gitmailmap[5].
47
48sendemail.aliasesFile::
49 To avoid typing long email addresses, point this to one or more
50 email aliases files. You must also supply `sendemail.aliasFileType`.
51
52sendemail.aliasFileType::
53 Format of the file(s) specified in sendemail.aliasesFile. Must be
54 one of `mutt`, `mailrc`, `pine`, `elm`, `gnus`, or `sendmail`.
55+
56What an alias file in each format looks like can be found in
57the documentation of the email program of the same name. The
58differences and limitations from the standard formats are
59described below:
60+
61--
62sendmail;;
63* Quoted aliases and quoted addresses are not supported: lines that
64 contain a `"` symbol are ignored.
65* Redirection to a file (`/path/name`) or pipe (`|command`) is not
66 supported.
67* File inclusion (`:include: /path/name`) is not supported.
68* Warnings are printed on the standard error output for any
69 explicitly unsupported constructs, and any other lines that are not
70 recognized by the parser.
71--
72sendemail.annotate::
73sendemail.bcc::
74sendemail.cc::
75sendemail.ccCmd::
76sendemail.chainReplyTo::
77sendemail.envelopeSender::
78sendemail.from::
79sendemail.headerCmd::
80sendemail.signedOffByCc::
81sendemail.smtpPass::
82sendemail.suppressCc::
83sendemail.suppressFrom::
84sendemail.to::
85sendemail.toCmd::
86sendemail.smtpDomain::
87sendemail.smtpServer::
88sendemail.smtpServerPort::
89sendemail.smtpServerOption::
90sendemail.smtpUser::
91sendemail.imapSentFolder::
92sendemail.useImapOnly::
93sendemail.thread::
94sendemail.transferEncoding::
95sendemail.validate::
96sendemail.xmailer::
97 These configuration variables all provide a default for
98 linkgit:git-send-email[1] command-line options. See its
99 documentation for details.
100
101sendemail.outlookidfix::
102 If `true`, makes linkgit:git-send-email[1] assume `--outlook-id-fix`,
103 and if `false` assume `--no-outlook-id-fix`. If not specified, it will
104 behave the same way as if `--outlook-id-fix` is not specified.
105
106sendemail.signedOffCc (deprecated)::
107 Deprecated alias for `sendemail.signedOffByCc`.
108
109sendemail.smtpBatchSize::
110 Number of messages to be sent per connection, after that a relogin
111 will happen. If the value is `0` or undefined, send all messages in
112 one connection.
113 See also the `--batch-size` option of linkgit:git-send-email[1].
114
115sendemail.smtpReloginDelay::
116 Seconds to wait before reconnecting to the smtp server.
117 See also the `--relogin-delay` option of linkgit:git-send-email[1].
118
119sendemail.forbidSendmailVariables::
120 To avoid common misconfiguration mistakes, linkgit:git-send-email[1]
121 will abort with a warning if any configuration options for `sendmail`
122 exist. Set this variable to bypass the check.