fetch: merge fetching and consuming refs
[git/debian.git] / Documentation / config / sendemail.txt
blob50baa5d6bfbe8ad8f60e9f538b0643a13e1c8576
1 sendemail.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`.
7 sendemail.smtpEncryption::
8         See linkgit:git-send-email[1] for description.  Note that this
9         setting is not subject to the 'identity' mechanism.
11 sendemail.smtpsslcertpath::
12         Path to ca-certificates (either a directory or a single file).
13         Set it to an empty string to disable certificate verification.
15 sendemail.<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`.
21 sendemail.aliasesFile::
22 sendemail.aliasFileType::
23 sendemail.annotate::
24 sendemail.bcc::
25 sendemail.cc::
26 sendemail.ccCmd::
27 sendemail.chainReplyTo::
28 sendemail.confirm::
29 sendemail.envelopeSender::
30 sendemail.from::
31 sendemail.multiEdit::
32 sendemail.signedoffbycc::
33 sendemail.smtpPass::
34 sendemail.suppresscc::
35 sendemail.suppressFrom::
36 sendemail.to::
37 sendemail.tocmd::
38 sendemail.smtpDomain::
39 sendemail.smtpServer::
40 sendemail.smtpServerPort::
41 sendemail.smtpServerOption::
42 sendemail.smtpUser::
43 sendemail.thread::
44 sendemail.transferEncoding::
45 sendemail.validate::
46 sendemail.xmailer::
47         See linkgit:git-send-email[1] for description.
49 sendemail.signedoffcc (deprecated)::
50         Deprecated alias for `sendemail.signedoffbycc`.
52 sendemail.smtpBatchSize::
53         Number of messages to be sent per connection, after that a relogin
54         will happen.  If the value is 0 or undefined, send all messages in
55         one connection.
56         See also the `--batch-size` option of linkgit:git-send-email[1].
58 sendemail.smtpReloginDelay::
59         Seconds wait before reconnecting to smtp server.
60         See also the `--relogin-delay` option of linkgit:git-send-email[1].
62 sendemail.forbidSendmailVariables::
63         To avoid common misconfiguration mistakes, linkgit:git-send-email[1]
64         will abort with a warning if any configuration options for "sendmail"
65         exist. Set this variable to bypass the check.