Home Explore Blog CI



git

1st chunk of `Documentation/config/sendemail.adoc`
026951e884c98eb56a9735fb2a0ab25a5a19b38c77c9283f000000010000083c
sendemail.identity::
	A configuration identity. When given, causes values in the
	'sendemail.<identity>' subsection to take precedence over
	values in the 'sendemail' section. The default identity is
	the value of `sendemail.identity`.

sendemail.smtpEncryption::
	See linkgit:git-send-email[1] for description.  Note that this
	setting is not subject to the 'identity' mechanism.

sendemail.smtpSSLCertPath::
	Path to ca-certificates (either a directory or a single file).
	Set it to an empty string to disable certificate verification.

sendemail.<identity>.*::
	Identity-specific versions of the 'sendemail.*' parameters
	found below, taking precedence over those when this
	identity is selected, through either the command-line or
	`sendemail.identity`.

sendemail.multiEdit::
	If true (default), a single editor instance will be spawned to edit
	files you have to edit (patches when `--annotate` is used, and the
	summary when `--compose` is used). If false, files will be edited one
	after the other, spawning a new editor each time.

sendemail.confirm::
	Sets the default for whether to confirm before sending. Must be
	one of 'always', 'never', 'cc', 'compose', or 'auto'. See `--confirm`
	in the linkgit:git-send-email[1] documentation for the meaning of these
	values.

sendemail.mailmap::
	If true, makes linkgit:git-send-email[1] assume `--mailmap`,
	otherwise assume `--no-mailmap`. False by default.

sendemail.mailmap.file::
	The location of a linkgit:git-send-email[1] specific augmenting
	mailmap file. The default mailmap and `mailmap.file` are loaded
	first. Thus, entries in this file take precedence over entries in
	the default mailmap locations. See linkgit:gitmailmap[5].

sendemail.mailmap.blob::
	Like `sendemail.mailmap.file`, but consider the value as a reference
	to a blob in the repository. Entries in `sendemail.mailmap.file`
	take precedence over entries here. See linkgit:gitmailmap[5].

sendemail.aliasesFile::
	To avoid typing long email addresses, point this to one or more
	email aliases files.  You must also supply `sendemail.aliasFileType`.

sendemail.aliasFileType::

Title: Git Send Email Configuration Options
Summary
This section describes the various configuration options available for customizing the behavior of Git's send email feature, including settings for encryption, identity, and email formatting, allowing users to tailor the email sending process to their specific needs and workflows.