Documentation / git-send-email.txton commit git-send-email.perl: Add --to-cmd (6e74e07)
   1git-send-email(1)
   2=================
   3
   4NAME
   5----
   6git-send-email - Send a collection of patches as emails
   7
   8
   9SYNOPSIS
  10--------
  11'git send-email' [options] <file|directory|rev-list options>...
  12
  13
  14DESCRIPTION
  15-----------
  16Takes the patches given on the command line and emails them out.
  17Patches can be specified as files, directories (which will send all
  18files in the directory), or directly as a revision list.  In the
  19last case, any format accepted by linkgit:git-format-patch[1] can
  20be passed to git send-email.
  21
  22The header of the email is configurable by command line options.  If not
  23specified on the command line, the user will be prompted with a ReadLine
  24enabled interface to provide the necessary information.
  25
  26There are two formats accepted for patch files:
  27
  281. mbox format files
  29+
  30This is what linkgit:git-format-patch[1] generates.  Most headers and MIME
  31formatting are ignored.
  32
  332. The original format used by Greg Kroah-Hartman's 'send_lots_of_email.pl'
  34script
  35+
  36This format expects the first line of the file to contain the "Cc:" value
  37and the "Subject:" of the message as the second line.
  38
  39
  40OPTIONS
  41-------
  42
  43Composing
  44~~~~~~~~~
  45
  46--annotate::
  47        Review and edit each patch you're about to send. See the
  48        CONFIGURATION section for 'sendemail.multiedit'.
  49
  50--bcc=<address>::
  51        Specify a "Bcc:" value for each email. Default is the value of
  52        'sendemail.bcc'.
  53+
  54The --bcc option must be repeated for each user you want on the bcc list.
  55
  56--cc=<address>::
  57        Specify a starting "Cc:" value for each email.
  58        Default is the value of 'sendemail.cc'.
  59+
  60The --cc option must be repeated for each user you want on the cc list.
  61
  62--compose::
  63        Invoke a text editor (see GIT_EDITOR in linkgit:git-var[1])
  64        to edit an introductory message for the patch series.
  65+
  66When '--compose' is used, git send-email will use the From, Subject, and
  67In-Reply-To headers specified in the message. If the body of the message
  68(what you type after the headers and a blank line) only contains blank
  69(or GIT: prefixed) lines the summary won't be sent, but From, Subject,
  70and In-Reply-To headers will be used unless they are removed.
  71+
  72Missing From or In-Reply-To headers will be prompted for.
  73+
  74See the CONFIGURATION section for 'sendemail.multiedit'.
  75
  76--from=<address>::
  77        Specify the sender of the emails.  If not specified on the command line,
  78        the value of the 'sendemail.from' configuration option is used.  If
  79        neither the command line option nor 'sendemail.from' are set, then the
  80        user will be prompted for the value.  The default for the prompt will be
  81        the value of GIT_AUTHOR_IDENT, or GIT_COMMITTER_IDENT if that is not
  82        set, as returned by "git var -l".
  83
  84--in-reply-to=<identifier>::
  85        Specify the contents of the first In-Reply-To header.
  86        Subsequent emails will refer to the previous email
  87        instead of this if --chain-reply-to is set.
  88        Only necessary if --compose is also set.  If --compose
  89        is not set, this will be prompted for.
  90
  91--subject=<string>::
  92        Specify the initial subject of the email thread.
  93        Only necessary if --compose is also set.  If --compose
  94        is not set, this will be prompted for.
  95
  96--to=<address>::
  97        Specify the primary recipient of the emails generated. Generally, this
  98        will be the upstream maintainer of the project involved. Default is the
  99        value of the 'sendemail.to' configuration value; if that is unspecified,
 100        and --to-cmd is not specified, this will be prompted for.
 101+
 102The --to option must be repeated for each user you want on the to list.
 103
 104--8bit-encoding=<encoding>::
 105        When encountering a non-ASCII message or subject that does not
 106        declare its encoding, add headers/quoting to indicate it is
 107        encoded in <encoding>.  Default is the value of the
 108        'sendemail.assume8bitEncoding'; if that is unspecified, this
 109        will be prompted for if any non-ASCII files are encountered.
 110+
 111Note that no attempts whatsoever are made to validate the encoding.
 112
 113
 114Sending
 115~~~~~~~
 116
 117--envelope-sender=<address>::
 118        Specify the envelope sender used to send the emails.
 119        This is useful if your default address is not the address that is
 120        subscribed to a list. In order to use the 'From' address, set the
 121        value to "auto". If you use the sendmail binary, you must have
 122        suitable privileges for the -f parameter.  Default is the value of the
 123        'sendemail.envelopesender' configuration variable; if that is
 124        unspecified, choosing the envelope sender is left to your MTA.
 125
 126--smtp-encryption=<encryption>::
 127        Specify the encryption to use, either 'ssl' or 'tls'.  Any other
 128        value reverts to plain SMTP.  Default is the value of
 129        'sendemail.smtpencryption'.
 130
 131--smtp-domain=<FQDN>::
 132        Specifies the Fully Qualified Domain Name (FQDN) used in the
 133        HELO/EHLO command to the SMTP server.  Some servers require the
 134        FQDN to match your IP address.  If not set, git send-email attempts
 135        to determine your FQDN automatically.  Default is the value of
 136        'sendemail.smtpdomain'.
 137
 138--smtp-pass[=<password>]::
 139        Password for SMTP-AUTH. The argument is optional: If no
 140        argument is specified, then the empty string is used as
 141        the password. Default is the value of 'sendemail.smtppass',
 142        however '--smtp-pass' always overrides this value.
 143+
 144Furthermore, passwords need not be specified in configuration files
 145or on the command line. If a username has been specified (with
 146'--smtp-user' or a 'sendemail.smtpuser'), but no password has been
 147specified (with '--smtp-pass' or 'sendemail.smtppass'), then the
 148user is prompted for a password while the input is masked for privacy.
 149
 150--smtp-server=<host>::
 151        If set, specifies the outgoing SMTP server to use (e.g.
 152        `smtp.example.com` or a raw IP address).  Alternatively it can
 153        specify a full pathname of a sendmail-like program instead;
 154        the program must support the `-i` option.  Default value can
 155        be specified by the 'sendemail.smtpserver' configuration
 156        option; the built-in default is `/usr/sbin/sendmail` or
 157        `/usr/lib/sendmail` if such program is available, or
 158        `localhost` otherwise.
 159
 160--smtp-server-port=<port>::
 161        Specifies a port different from the default port (SMTP
 162        servers typically listen to smtp port 25, but may also listen to
 163        submission port 587, or the common SSL smtp port 465);
 164        symbolic port names (e.g. "submission" instead of 587)
 165        are also accepted. The port can also be set with the
 166        'sendemail.smtpserverport' configuration variable.
 167
 168--smtp-ssl::
 169        Legacy alias for '--smtp-encryption ssl'.
 170
 171--smtp-user=<user>::
 172        Username for SMTP-AUTH. Default is the value of 'sendemail.smtpuser';
 173        if a username is not specified (with '--smtp-user' or 'sendemail.smtpuser'),
 174        then authentication is not attempted.
 175
 176
 177Automating
 178~~~~~~~~~~
 179
 180--to-cmd=<command>::
 181        Specify a command to execute once per patch file which
 182        should generate patch file specific "To:" entries.
 183        Output of this command must be single email address per line.
 184        Default is the value of 'sendemail.tocmd' configuration value.
 185
 186--cc-cmd=<command>::
 187        Specify a command to execute once per patch file which
 188        should generate patch file specific "Cc:" entries.
 189        Output of this command must be single email address per line.
 190        Default is the value of 'sendemail.cccmd' configuration value.
 191
 192--[no-]chain-reply-to::
 193        If this is set, each email will be sent as a reply to the previous
 194        email sent.  If disabled with "--no-chain-reply-to", all emails after
 195        the first will be sent as replies to the first email sent.  When using
 196        this, it is recommended that the first file given be an overview of the
 197        entire patch series. Disabled by default, but the 'sendemail.chainreplyto'
 198        configuration variable can be used to enable it.
 199
 200--identity=<identity>::
 201        A configuration identity. When given, causes values in the
 202        'sendemail.<identity>' subsection to take precedence over
 203        values in the 'sendemail' section. The default identity is
 204        the value of 'sendemail.identity'.
 205
 206--[no-]signed-off-by-cc::
 207        If this is set, add emails found in Signed-off-by: or Cc: lines to the
 208        cc list. Default is the value of 'sendemail.signedoffbycc' configuration
 209        value; if that is unspecified, default to --signed-off-by-cc.
 210
 211--suppress-cc=<category>::
 212        Specify an additional category of recipients to suppress the
 213        auto-cc of:
 214+
 215--
 216- 'author' will avoid including the patch author
 217- 'self' will avoid including the sender
 218- 'cc' will avoid including anyone mentioned in Cc lines in the patch header
 219  except for self (use 'self' for that).
 220- 'bodycc' will avoid including anyone mentioned in Cc lines in the
 221  patch body (commit message) except for self (use 'self' for that).
 222- 'sob' will avoid including anyone mentioned in Signed-off-by lines except
 223   for self (use 'self' for that).
 224- 'cccmd' will avoid running the --cc-cmd.
 225- 'body' is equivalent to 'sob' + 'bodycc'
 226- 'all' will suppress all auto cc values.
 227--
 228+
 229Default is the value of 'sendemail.suppresscc' configuration value; if
 230that is unspecified, default to 'self' if --suppress-from is
 231specified, as well as 'body' if --no-signed-off-cc is specified.
 232
 233--[no-]suppress-from::
 234        If this is set, do not add the From: address to the cc: list.
 235        Default is the value of 'sendemail.suppressfrom' configuration
 236        value; if that is unspecified, default to --no-suppress-from.
 237
 238--[no-]thread::
 239        If this is set, the In-Reply-To and References headers will be
 240        added to each email sent.  Whether each mail refers to the
 241        previous email (`deep` threading per 'git format-patch'
 242        wording) or to the first email (`shallow` threading) is
 243        governed by "--[no-]chain-reply-to".
 244+
 245If disabled with "--no-thread", those headers will not be added
 246(unless specified with --in-reply-to).  Default is the value of the
 247'sendemail.thread' configuration value; if that is unspecified,
 248default to --thread.
 249+
 250It is up to the user to ensure that no In-Reply-To header already
 251exists when 'git send-email' is asked to add it (especially note that
 252'git format-patch' can be configured to do the threading itself).
 253Failure to do so may not produce the expected result in the
 254recipient's MUA.
 255
 256
 257Administering
 258~~~~~~~~~~~~~
 259
 260--confirm=<mode>::
 261        Confirm just before sending:
 262+
 263--
 264- 'always' will always confirm before sending
 265- 'never' will never confirm before sending
 266- 'cc' will confirm before sending when send-email has automatically
 267  added addresses from the patch to the Cc list
 268- 'compose' will confirm before sending the first message when using --compose.
 269- 'auto' is equivalent to 'cc' + 'compose'
 270--
 271+
 272Default is the value of 'sendemail.confirm' configuration value; if that
 273is unspecified, default to 'auto' unless any of the suppress options
 274have been specified, in which case default to 'compose'.
 275
 276--dry-run::
 277        Do everything except actually send the emails.
 278
 279--[no-]format-patch::
 280        When an argument may be understood either as a reference or as a file name,
 281        choose to understand it as a format-patch argument ('--format-patch')
 282        or as a file name ('--no-format-patch'). By default, when such a conflict
 283        occurs, git send-email will fail.
 284
 285--quiet::
 286        Make git-send-email less verbose.  One line per email should be
 287        all that is output.
 288
 289--[no-]validate::
 290        Perform sanity checks on patches.
 291        Currently, validation means the following:
 292+
 293--
 294                *       Warn of patches that contain lines longer than 998 characters; this
 295                        is due to SMTP limits as described by http://www.ietf.org/rfc/rfc2821.txt.
 296--
 297+
 298Default is the value of 'sendemail.validate'; if this is not set,
 299default to '--validate'.
 300
 301
 302CONFIGURATION
 303-------------
 304
 305sendemail.aliasesfile::
 306        To avoid typing long email addresses, point this to one or more
 307        email aliases files.  You must also supply 'sendemail.aliasfiletype'.
 308
 309sendemail.aliasfiletype::
 310        Format of the file(s) specified in sendemail.aliasesfile. Must be
 311        one of 'mutt', 'mailrc', 'pine', 'elm', or 'gnus'.
 312
 313sendemail.multiedit::
 314        If true (default), a single editor instance will be spawned to edit
 315        files you have to edit (patches when '--annotate' is used, and the
 316        summary when '--compose' is used). If false, files will be edited one
 317        after the other, spawning a new editor each time.
 318
 319sendemail.confirm::
 320        Sets the default for whether to confirm before sending. Must be
 321        one of 'always', 'never', 'cc', 'compose', or 'auto'. See '--confirm'
 322        in the previous section for the meaning of these values.
 323
 324
 325Use gmail as the smtp server
 326----------------------------
 327
 328Add the following section to the config file:
 329
 330        [sendemail]
 331                smtpencryption = tls
 332                smtpserver = smtp.gmail.com
 333                smtpuser = yourname@gmail.com
 334                smtpserverport = 587
 335
 336Note: the following perl modules are required
 337      Net::SMTP::SSL, MIME::Base64 and Authen::SASL
 338
 339
 340Author
 341------
 342Written by Ryan Anderson <ryan@michonline.com>
 343
 344git-send-email is originally based upon
 345send_lots_of_email.pl by Greg Kroah-Hartman.
 346
 347
 348Documentation
 349--------------
 350Documentation by Ryan Anderson
 351
 352
 353GIT
 354---
 355Part of the linkgit:git[1] suite