Documentation / git-send-email.txton commit send-email: add an auto option for transfer encoding (7a36987)
   1git-send-email(1)
   2=================
   3
   4NAME
   5----
   6git-send-email - Send a collection of patches as emails
   7
   8
   9SYNOPSIS
  10--------
  11[verse]
  12'git send-email' [<options>] <file|directory|rev-list options>...
  13'git send-email' --dump-aliases
  14
  15
  16DESCRIPTION
  17-----------
  18Takes the patches given on the command line and emails them out.
  19Patches can be specified as files, directories (which will send all
  20files in the directory), or directly as a revision list.  In the
  21last case, any format accepted by linkgit:git-format-patch[1] can
  22be passed to git send-email.
  23
  24The header of the email is configurable via command-line options.  If not
  25specified on the command line, the user will be prompted with a ReadLine
  26enabled interface to provide the necessary information.
  27
  28There are two formats accepted for patch files:
  29
  301. mbox format files
  31+
  32This is what linkgit:git-format-patch[1] generates.  Most headers and MIME
  33formatting are ignored.
  34
  352. The original format used by Greg Kroah-Hartman's 'send_lots_of_email.pl'
  36script
  37+
  38This format expects the first line of the file to contain the "Cc:" value
  39and the "Subject:" of the message as the second line.
  40
  41
  42OPTIONS
  43-------
  44
  45Composing
  46~~~~~~~~~
  47
  48--annotate::
  49        Review and edit each patch you're about to send. Default is the value
  50        of `sendemail.annotate`. See the CONFIGURATION section for
  51        `sendemail.multiEdit`.
  52
  53--bcc=<address>,...::
  54        Specify a "Bcc:" value for each email. Default is the value of
  55        `sendemail.bcc`.
  56+
  57This option may be specified multiple times.
  58
  59--cc=<address>,...::
  60        Specify a starting "Cc:" value for each email.
  61        Default is the value of `sendemail.cc`.
  62+
  63This option may be specified multiple times.
  64
  65--compose::
  66        Invoke a text editor (see GIT_EDITOR in linkgit:git-var[1])
  67        to edit an introductory message for the patch series.
  68+
  69When `--compose` is used, git send-email will use the From, Subject, and
  70In-Reply-To headers specified in the message. If the body of the message
  71(what you type after the headers and a blank line) only contains blank
  72(or Git: prefixed) lines, the summary won't be sent, but From, Subject,
  73and In-Reply-To headers will be used unless they are removed.
  74+
  75Missing From or In-Reply-To headers will be prompted for.
  76+
  77See the CONFIGURATION section for `sendemail.multiEdit`.
  78
  79--from=<address>::
  80        Specify the sender of the emails.  If not specified on the command line,
  81        the value of the `sendemail.from` configuration option is used.  If
  82        neither the command-line option nor `sendemail.from` are set, then the
  83        user will be prompted for the value.  The default for the prompt will be
  84        the value of GIT_AUTHOR_IDENT, or GIT_COMMITTER_IDENT if that is not
  85        set, as returned by "git var -l".
  86
  87--reply-to=<address>::
  88        Specify the address where replies from recipients should go to.
  89        Use this if replies to messages should go to another address than what
  90        is specified with the --from parameter.
  91
  92--in-reply-to=<identifier>::
  93        Make the first mail (or all the mails with `--no-thread`) appear as a
  94        reply to the given Message-Id, which avoids breaking threads to
  95        provide a new patch series.
  96        The second and subsequent emails will be sent as replies according to
  97        the `--[no-]chain-reply-to` setting.
  98+
  99So for example when `--thread` and `--no-chain-reply-to` are specified, the
 100second and subsequent patches will be replies to the first one like in the
 101illustration below where `[PATCH v2 0/3]` is in reply to `[PATCH 0/2]`:
 102+
 103  [PATCH 0/2] Here is what I did...
 104    [PATCH 1/2] Clean up and tests
 105    [PATCH 2/2] Implementation
 106    [PATCH v2 0/3] Here is a reroll
 107      [PATCH v2 1/3] Clean up
 108      [PATCH v2 2/3] New tests
 109      [PATCH v2 3/3] Implementation
 110+
 111Only necessary if --compose is also set.  If --compose
 112is not set, this will be prompted for.
 113
 114--subject=<string>::
 115        Specify the initial subject of the email thread.
 116        Only necessary if --compose is also set.  If --compose
 117        is not set, this will be prompted for.
 118
 119--to=<address>,...::
 120        Specify the primary recipient of the emails generated. Generally, this
 121        will be the upstream maintainer of the project involved. Default is the
 122        value of the `sendemail.to` configuration value; if that is unspecified,
 123        and --to-cmd is not specified, this will be prompted for.
 124+
 125This option may be specified multiple times.
 126
 127--8bit-encoding=<encoding>::
 128        When encountering a non-ASCII message or subject that does not
 129        declare its encoding, add headers/quoting to indicate it is
 130        encoded in <encoding>.  Default is the value of the
 131        'sendemail.assume8bitEncoding'; if that is unspecified, this
 132        will be prompted for if any non-ASCII files are encountered.
 133+
 134Note that no attempts whatsoever are made to validate the encoding.
 135
 136--compose-encoding=<encoding>::
 137        Specify encoding of compose message. Default is the value of the
 138        'sendemail.composeencoding'; if that is unspecified, UTF-8 is assumed.
 139
 140--transfer-encoding=(7bit|8bit|quoted-printable|base64|auto)::
 141        Specify the transfer encoding to be used to send the message over SMTP.
 142        7bit will fail upon encountering a non-ASCII message.  quoted-printable
 143        can be useful when the repository contains files that contain carriage
 144        returns, but makes the raw patch email file (as saved from a MUA) much
 145        harder to inspect manually.  base64 is even more fool proof, but also
 146        even more opaque.  auto will use 8bit when possible, and quoted-printable
 147        otherwise.
 148+
 149Default is the value of the `sendemail.transferEncoding` configuration
 150value; if that is unspecified, git will use 8bit and not add a
 151Content-Transfer-Encoding header.
 152
 153--xmailer::
 154--no-xmailer::
 155        Add (or prevent adding) the "X-Mailer:" header.  By default,
 156        the header is added, but it can be turned off by setting the
 157        `sendemail.xmailer` configuration variable to `false`.
 158
 159Sending
 160~~~~~~~
 161
 162--envelope-sender=<address>::
 163        Specify the envelope sender used to send the emails.
 164        This is useful if your default address is not the address that is
 165        subscribed to a list. In order to use the 'From' address, set the
 166        value to "auto". If you use the sendmail binary, you must have
 167        suitable privileges for the -f parameter.  Default is the value of the
 168        `sendemail.envelopeSender` configuration variable; if that is
 169        unspecified, choosing the envelope sender is left to your MTA.
 170
 171--smtp-encryption=<encryption>::
 172        Specify the encryption to use, either 'ssl' or 'tls'.  Any other
 173        value reverts to plain SMTP.  Default is the value of
 174        `sendemail.smtpEncryption`.
 175
 176--smtp-domain=<FQDN>::
 177        Specifies the Fully Qualified Domain Name (FQDN) used in the
 178        HELO/EHLO command to the SMTP server.  Some servers require the
 179        FQDN to match your IP address.  If not set, git send-email attempts
 180        to determine your FQDN automatically.  Default is the value of
 181        `sendemail.smtpDomain`.
 182
 183--smtp-auth=<mechanisms>::
 184        Whitespace-separated list of allowed SMTP-AUTH mechanisms. This setting
 185        forces using only the listed mechanisms. Example:
 186+
 187------
 188$ git send-email --smtp-auth="PLAIN LOGIN GSSAPI" ...
 189------
 190+
 191If at least one of the specified mechanisms matches the ones advertised by the
 192SMTP server and if it is supported by the utilized SASL library, the mechanism
 193is used for authentication. If neither 'sendemail.smtpAuth' nor `--smtp-auth`
 194is specified, all mechanisms supported by the SASL library can be used.
 195
 196--smtp-pass[=<password>]::
 197        Password for SMTP-AUTH. The argument is optional: If no
 198        argument is specified, then the empty string is used as
 199        the password. Default is the value of `sendemail.smtpPass`,
 200        however `--smtp-pass` always overrides this value.
 201+
 202Furthermore, passwords need not be specified in configuration files
 203or on the command line. If a username has been specified (with
 204`--smtp-user` or a `sendemail.smtpUser`), but no password has been
 205specified (with `--smtp-pass` or `sendemail.smtpPass`), then
 206a password is obtained using 'git-credential'.
 207
 208--smtp-server=<host>::
 209        If set, specifies the outgoing SMTP server to use (e.g.
 210        `smtp.example.com` or a raw IP address).  Alternatively it can
 211        specify a full pathname of a sendmail-like program instead;
 212        the program must support the `-i` option.  Default value can
 213        be specified by the `sendemail.smtpServer` configuration
 214        option; the built-in default is to search for `sendmail` in
 215        `/usr/sbin`, `/usr/lib` and $PATH if such program is
 216        available, falling back to `localhost` otherwise.
 217
 218--smtp-server-port=<port>::
 219        Specifies a port different from the default port (SMTP
 220        servers typically listen to smtp port 25, but may also listen to
 221        submission port 587, or the common SSL smtp port 465);
 222        symbolic port names (e.g. "submission" instead of 587)
 223        are also accepted. The port can also be set with the
 224        `sendemail.smtpServerPort` configuration variable.
 225
 226--smtp-server-option=<option>::
 227        If set, specifies the outgoing SMTP server option to use.
 228        Default value can be specified by the `sendemail.smtpServerOption`
 229        configuration option.
 230+
 231The --smtp-server-option option must be repeated for each option you want
 232to pass to the server. Likewise, different lines in the configuration files
 233must be used for each option.
 234
 235--smtp-ssl::
 236        Legacy alias for '--smtp-encryption ssl'.
 237
 238--smtp-ssl-cert-path::
 239        Path to a store of trusted CA certificates for SMTP SSL/TLS
 240        certificate validation (either a directory that has been processed
 241        by 'c_rehash', or a single file containing one or more PEM format
 242        certificates concatenated together: see verify(1) -CAfile and
 243        -CApath for more information on these). Set it to an empty string
 244        to disable certificate verification. Defaults to the value of the
 245        `sendemail.smtpsslcertpath` configuration variable, if set, or the
 246        backing SSL library's compiled-in default otherwise (which should
 247        be the best choice on most platforms).
 248
 249--smtp-user=<user>::
 250        Username for SMTP-AUTH. Default is the value of `sendemail.smtpUser`;
 251        if a username is not specified (with `--smtp-user` or `sendemail.smtpUser`),
 252        then authentication is not attempted.
 253
 254--smtp-debug=0|1::
 255        Enable (1) or disable (0) debug output. If enabled, SMTP
 256        commands and replies will be printed. Useful to debug TLS
 257        connection and authentication problems.
 258
 259--batch-size=<num>::
 260        Some email servers (e.g. smtp.163.com) limit the number emails to be
 261        sent per session (connection) and this will lead to a failure when
 262        sending many messages.  With this option, send-email will disconnect after
 263        sending $<num> messages and wait for a few seconds (see --relogin-delay)
 264        and reconnect, to work around such a limit.  You may want to
 265        use some form of credential helper to avoid having to retype
 266        your password every time this happens.  Defaults to the
 267        `sendemail.smtpBatchSize` configuration variable.
 268
 269--relogin-delay=<int>::
 270        Waiting $<int> seconds before reconnecting to SMTP server. Used together
 271        with --batch-size option.  Defaults to the `sendemail.smtpReloginDelay`
 272        configuration variable.
 273
 274Automating
 275~~~~~~~~~~
 276
 277--to-cmd=<command>::
 278        Specify a command to execute once per patch file which
 279        should generate patch file specific "To:" entries.
 280        Output of this command must be single email address per line.
 281        Default is the value of 'sendemail.tocmd' configuration value.
 282
 283--cc-cmd=<command>::
 284        Specify a command to execute once per patch file which
 285        should generate patch file specific "Cc:" entries.
 286        Output of this command must be single email address per line.
 287        Default is the value of `sendemail.ccCmd` configuration value.
 288
 289--[no-]chain-reply-to::
 290        If this is set, each email will be sent as a reply to the previous
 291        email sent.  If disabled with "--no-chain-reply-to", all emails after
 292        the first will be sent as replies to the first email sent.  When using
 293        this, it is recommended that the first file given be an overview of the
 294        entire patch series. Disabled by default, but the `sendemail.chainReplyTo`
 295        configuration variable can be used to enable it.
 296
 297--identity=<identity>::
 298        A configuration identity. When given, causes values in the
 299        'sendemail.<identity>' subsection to take precedence over
 300        values in the 'sendemail' section. The default identity is
 301        the value of `sendemail.identity`.
 302
 303--[no-]signed-off-by-cc::
 304        If this is set, add emails found in Signed-off-by: or Cc: lines to the
 305        cc list. Default is the value of `sendemail.signedoffbycc` configuration
 306        value; if that is unspecified, default to --signed-off-by-cc.
 307
 308--[no-]cc-cover::
 309        If this is set, emails found in Cc: headers in the first patch of
 310        the series (typically the cover letter) are added to the cc list
 311        for each email set. Default is the value of 'sendemail.cccover'
 312        configuration value; if that is unspecified, default to --no-cc-cover.
 313
 314--[no-]to-cover::
 315        If this is set, emails found in To: headers in the first patch of
 316        the series (typically the cover letter) are added to the to list
 317        for each email set. Default is the value of 'sendemail.tocover'
 318        configuration value; if that is unspecified, default to --no-to-cover.
 319
 320--suppress-cc=<category>::
 321        Specify an additional category of recipients to suppress the
 322        auto-cc of:
 323+
 324--
 325- 'author' will avoid including the patch author
 326- 'self' will avoid including the sender
 327- 'cc' will avoid including anyone mentioned in Cc lines in the patch header
 328  except for self (use 'self' for that).
 329- 'bodycc' will avoid including anyone mentioned in Cc lines in the
 330  patch body (commit message) except for self (use 'self' for that).
 331- 'sob' will avoid including anyone mentioned in Signed-off-by lines except
 332   for self (use 'self' for that).
 333- 'cccmd' will avoid running the --cc-cmd.
 334- 'body' is equivalent to 'sob' + 'bodycc'
 335- 'all' will suppress all auto cc values.
 336--
 337+
 338Default is the value of `sendemail.suppresscc` configuration value; if
 339that is unspecified, default to 'self' if --suppress-from is
 340specified, as well as 'body' if --no-signed-off-cc is specified.
 341
 342--[no-]suppress-from::
 343        If this is set, do not add the From: address to the cc: list.
 344        Default is the value of `sendemail.suppressFrom` configuration
 345        value; if that is unspecified, default to --no-suppress-from.
 346
 347--[no-]thread::
 348        If this is set, the In-Reply-To and References headers will be
 349        added to each email sent.  Whether each mail refers to the
 350        previous email (`deep` threading per 'git format-patch'
 351        wording) or to the first email (`shallow` threading) is
 352        governed by "--[no-]chain-reply-to".
 353+
 354If disabled with "--no-thread", those headers will not be added
 355(unless specified with --in-reply-to).  Default is the value of the
 356`sendemail.thread` configuration value; if that is unspecified,
 357default to --thread.
 358+
 359It is up to the user to ensure that no In-Reply-To header already
 360exists when 'git send-email' is asked to add it (especially note that
 361'git format-patch' can be configured to do the threading itself).
 362Failure to do so may not produce the expected result in the
 363recipient's MUA.
 364
 365
 366Administering
 367~~~~~~~~~~~~~
 368
 369--confirm=<mode>::
 370        Confirm just before sending:
 371+
 372--
 373- 'always' will always confirm before sending
 374- 'never' will never confirm before sending
 375- 'cc' will confirm before sending when send-email has automatically
 376  added addresses from the patch to the Cc list
 377- 'compose' will confirm before sending the first message when using --compose.
 378- 'auto' is equivalent to 'cc' + 'compose'
 379--
 380+
 381Default is the value of `sendemail.confirm` configuration value; if that
 382is unspecified, default to 'auto' unless any of the suppress options
 383have been specified, in which case default to 'compose'.
 384
 385--dry-run::
 386        Do everything except actually send the emails.
 387
 388--[no-]format-patch::
 389        When an argument may be understood either as a reference or as a file name,
 390        choose to understand it as a format-patch argument (`--format-patch`)
 391        or as a file name (`--no-format-patch`). By default, when such a conflict
 392        occurs, git send-email will fail.
 393
 394--quiet::
 395        Make git-send-email less verbose.  One line per email should be
 396        all that is output.
 397
 398--[no-]validate::
 399        Perform sanity checks on patches.
 400        Currently, validation means the following:
 401+
 402--
 403                *       Invoke the sendemail-validate hook if present (see linkgit:githooks[5]).
 404                *       Warn of patches that contain lines longer than 998 characters; this
 405                        is due to SMTP limits as described by http://www.ietf.org/rfc/rfc2821.txt.
 406--
 407+
 408Default is the value of `sendemail.validate`; if this is not set,
 409default to `--validate`.
 410
 411--force::
 412        Send emails even if safety checks would prevent it.
 413
 414
 415Information
 416~~~~~~~~~~~
 417
 418--dump-aliases::
 419        Instead of the normal operation, dump the shorthand alias names from
 420        the configured alias file(s), one per line in alphabetical order. Note,
 421        this only includes the alias name and not its expanded email addresses.
 422        See 'sendemail.aliasesfile' for more information about aliases.
 423
 424
 425CONFIGURATION
 426-------------
 427
 428sendemail.aliasesFile::
 429        To avoid typing long email addresses, point this to one or more
 430        email aliases files.  You must also supply `sendemail.aliasFileType`.
 431
 432sendemail.aliasFileType::
 433        Format of the file(s) specified in sendemail.aliasesFile. Must be
 434        one of 'mutt', 'mailrc', 'pine', 'elm', or 'gnus', or 'sendmail'.
 435+
 436What an alias file in each format looks like can be found in
 437the documentation of the email program of the same name. The
 438differences and limitations from the standard formats are
 439described below:
 440+
 441--
 442sendmail;;
 443*       Quoted aliases and quoted addresses are not supported: lines that
 444        contain a `"` symbol are ignored.
 445*       Redirection to a file (`/path/name`) or pipe (`|command`) is not
 446        supported.
 447*       File inclusion (`:include: /path/name`) is not supported.
 448*       Warnings are printed on the standard error output for any
 449        explicitly unsupported constructs, and any other lines that are not
 450        recognized by the parser.
 451--
 452
 453sendemail.multiEdit::
 454        If true (default), a single editor instance will be spawned to edit
 455        files you have to edit (patches when `--annotate` is used, and the
 456        summary when `--compose` is used). If false, files will be edited one
 457        after the other, spawning a new editor each time.
 458
 459sendemail.confirm::
 460        Sets the default for whether to confirm before sending. Must be
 461        one of 'always', 'never', 'cc', 'compose', or 'auto'. See `--confirm`
 462        in the previous section for the meaning of these values.
 463
 464EXAMPLES
 465--------
 466Use gmail as the smtp server
 467~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 468To use 'git send-email' to send your patches through the GMail SMTP server,
 469edit ~/.gitconfig to specify your account settings:
 470
 471        [sendemail]
 472                smtpEncryption = tls
 473                smtpServer = smtp.gmail.com
 474                smtpUser = yourname@gmail.com
 475                smtpServerPort = 587
 476
 477If you have multifactor authentication setup on your gmail account, you will
 478need to generate an app-specific password for use with 'git send-email'. Visit
 479https://security.google.com/settings/security/apppasswords to create it.
 480
 481Once your commits are ready to be sent to the mailing list, run the
 482following commands:
 483
 484        $ git format-patch --cover-letter -M origin/master -o outgoing/
 485        $ edit outgoing/0000-*
 486        $ git send-email outgoing/*
 487
 488The first time you run it, you will be prompted for your credentials.  Enter the
 489app-specific or your regular password as appropriate.  If you have credential
 490helper configured (see linkgit:git-credential[1]), the password will be saved in
 491the credential store so you won't have to type it the next time.
 492
 493Note: the following perl modules are required
 494      Net::SMTP::SSL, MIME::Base64 and Authen::SASL
 495
 496SEE ALSO
 497--------
 498linkgit:git-format-patch[1], linkgit:git-imap-send[1], mbox(5)
 499
 500GIT
 501---
 502Part of the linkgit:git[1] suite