]> git.ipfire.org Git - thirdparty/git.git/blame - git-send-email.perl
fmt-merge-msg: free newly allocated temporary strings when done
[thirdparty/git.git] / git-send-email.perl
CommitLineData
3328aced 1#!/usr/bin/perl
83b24437 2#
f3d9f354
RA
3# Copyright 2002,2005 Greg Kroah-Hartman <greg@kroah.com>
4# Copyright 2005 Ryan Anderson <ryan@michonline.com>
83b24437
RA
5#
6# GPL v2 (See COPYING)
5825e5b2 7#
83b24437
RA
8# Ported to support git "mbox" format files by Ryan Anderson <ryan@michonline.com>
9#
f3d9f354 10# Sends a collection of emails to the given email addresses, disturbingly fast.
5825e5b2 11#
f3d9f354
RA
12# Supports two formats:
13# 1. mbox format files (ignoring most headers and MIME formatting - this is designed for sending patches)
14# 2. The original format support by Greg's script:
5825e5b2 15# first line of the message is who to CC,
f3d9f354 16# and second line is the subject of the message.
5825e5b2 17#
83b24437 18
d48b2841 19use 5.008;
83b24437 20use strict;
ecc4ee9c 21use warnings $ENV{GIT_PERL_FATAL_WARNINGS} ? qw(FATAL all) : ();
83b24437 22use Getopt::Long;
28654678 23use Git::LoadCPAN::Error qw(:try);
3cb8caf7 24use Git;
a4dde4c4 25use Git::I18N;
83b24437 26
5df9fcf6
PH
27Getopt::Long::Configure qw/ pass_through /;
28
280242d1
JH
29package FakeTerm;
30sub new {
31 my ($class, $reason) = @_;
32 return bless \$reason, shift;
33}
34sub readline {
35 my $self = shift;
36 die "Cannot use readline on FakeTerm: $$self";
37}
38package main;
39
1b0baf14
MC
40
41sub usage {
42 print <<EOT;
5df9fcf6 43git send-email [options] <file | directory | rev-list options >
17b7a832 44git send-email --dump-aliases
4ed62b03
MW
45
46 Composing:
47 --from <str> * Email From:
f434c083
SB
48 --[no-]to <str> * Email To:
49 --[no-]cc <str> * Email Cc:
50 --[no-]bcc <str> * Email Bcc:
4ed62b03 51 --subject <str> * Email "Subject:"
d11c943c 52 --reply-to <str> * Email "Reply-To:"
4ed62b03 53 --in-reply-to <str> * Email "In-Reply-To:"
ac1596a6 54 --[no-]xmailer * Add "X-Mailer:" header (default).
402596aa 55 --[no-]annotate * Review each patch that will be sent in an editor.
4ed62b03 56 --compose * Open an editor for introduction.
62e00690 57 --compose-encoding <str> * Encoding to assume for introduction.
3cae7e5b 58 --8bit-encoding <str> * Encoding to assume 8bit mails if undeclared
8d814084 59 --transfer-encoding <str> * Transfer encoding to use (quoted-printable, 8bit, base64)
4ed62b03
MW
60
61 Sending:
62 --envelope-sender <str> * Email envelope sender.
cd5b33fb 63 --sendmail-cmd <str> * Command to run to send email.
4ed62b03
MW
64 --smtp-server <str:int> * Outgoing SMTP server to use. The port
65 is optional. Default 'localhost'.
052fbea2 66 --smtp-server-option <str> * Outgoing SMTP server option to use.
4ed62b03
MW
67 --smtp-server-port <int> * Outgoing SMTP server port.
68 --smtp-user <str> * Username for SMTP-AUTH.
69 --smtp-pass <str> * Password for SMTP-AUTH; not necessary.
70 --smtp-encryption <str> * tls or ssl; anything else disables.
71 --smtp-ssl * Deprecated. Use '--smtp-encryption ssl'.
35035bbf
RR
72 --smtp-ssl-cert-path <str> * Path to ca-certificates (either directory or file).
73 Pass an empty string to disable certificate
74 verification.
134550fe 75 --smtp-domain <str> * The domain name sent to HELO/EHLO handshake
8dd9b3f8
JW
76 --smtp-auth <str> * Space-separated list of allowed AUTH mechanisms, or
77 "none" to disable authentication.
0f2e68b5 78 This setting forces to use one of the listed mechanisms.
8dd9b3f8
JW
79 --no-smtp-auth Disable SMTP authentication. Shorthand for
80 `--smtp-auth=none`
f60812ef 81 --smtp-debug <0|1> * Disable, enable Net::SMTP debug.
4ed62b03 82
5453b83b 83 --batch-size <int> * send max <int> message per connection.
84 --relogin-delay <int> * delay <int> seconds between two successive login.
85 This option can only be used with --batch-size
86
4ed62b03
MW
87 Automating:
88 --identity <str> * Use the sendemail.<id> options.
6e74e075 89 --to-cmd <str> * Email To: via `<str> \$patch_path`
4ed62b03 90 --cc-cmd <str> * Email Cc: via `<str> \$patch_path`
ef0cc1df 91 --suppress-cc <str> * author, self, sob, cc, cccmd, body, bodycc, misc-by, all.
f515c904
MT
92 --[no-]cc-cover * Email Cc: addresses in the cover letter.
93 --[no-]to-cover * Email To: addresses in the cover letter.
3531e270 94 --[no-]signed-off-by-cc * Send to Signed-off-by: addresses. Default on.
4ed62b03 95 --[no-]suppress-from * Send to self. Default off.
41fe87fa 96 --[no-]chain-reply-to * Chain In-Reply-To: fields. Default off.
4ed62b03
MW
97 --[no-]thread * Use In-Reply-To: field. Default on.
98
99 Administering:
c1f2aa45
JS
100 --confirm <str> * Confirm recipients before sending;
101 auto, cc, compose, always, or never.
4ed62b03
MW
102 --quiet * Output one line of info per email.
103 --dry-run * Don't actually send the emails.
104 --[no-]validate * Perform patch sanity checks. Default on.
5df9fcf6
PH
105 --[no-]format-patch * understand any non optional arguments as
106 `git format-patch` ones.
a03bc5b6 107 --force * Send even if safety checks would prevent it.
c764a0c2 108
17b7a832
JK
109 Information:
110 --dump-aliases * Dump configured aliases and exit.
111
1b0baf14
MC
112EOT
113 exit(1);
114}
115
13374987
NTND
116sub completion_helper {
117 print Git::command('format-patch', '--git-completion-helper');
118 exit(0);
119}
120
4bc87a28 121# most mail servers generate the Date: header, but not all...
6bdca890
JN
122sub format_2822_time {
123 my ($time) = @_;
124 my @localtm = localtime($time);
125 my @gmttm = gmtime($time);
126 my $localmin = $localtm[1] + $localtm[2] * 60;
127 my $gmtmin = $gmttm[1] + $gmttm[2] * 60;
128 if ($localtm[0] != $gmttm[0]) {
46493105 129 die __("local zone differs from GMT by a non-minute interval\n");
6bdca890
JN
130 }
131 if ((($gmttm[6] + 1) % 7) == $localtm[6]) {
132 $localmin += 1440;
133 } elsif ((($gmttm[6] - 1) % 7) == $localtm[6]) {
134 $localmin -= 1440;
135 } elsif ($gmttm[6] != $localtm[6]) {
46493105 136 die __("local time offset greater than or equal to 24 hours\n");
6bdca890
JN
137 }
138 my $offset = $localmin - $gmtmin;
139 my $offhour = $offset / 60;
140 my $offmin = abs($offset % 60);
141 if (abs($offhour) >= 24) {
46493105 142 die __("local time offset greater than or equal to 24 hours\n");
6bdca890
JN
143 }
144
145 return sprintf("%s, %2d %s %d %02d:%02d:%02d %s%02d%02d",
146 qw(Sun Mon Tue Wed Thu Fri Sat)[$localtm[6]],
147 $localtm[3],
148 qw(Jan Feb Mar Apr May Jun
149 Jul Aug Sep Oct Nov Dec)[$localtm[4]],
150 $localtm[5]+1900,
151 $localtm[2],
152 $localtm[1],
153 $localtm[0],
154 ($offset >= 0) ? '+' : '-',
155 abs($offhour),
156 $offmin,
157 );
158}
4bc87a28
EW
159
160my $smtp;
5f5b6118 161my $auth;
5453b83b 162my $num_sent = 0;
4bc87a28 163
11f70a7e
РД
164# Regexes for RFC 2047 productions.
165my $re_token = qr/[^][()<>@,;:\\"\/?.= \000-\037\177-\377]+/;
166my $re_encoded_text = qr/[^? \000-\037\177-\377]+/;
167my $re_encoded_word = qr/=\?($re_token)\?($re_token)\?($re_encoded_text)\?=/;
168
83b24437 169# Variables we fill in automatically, or via prompting:
3494dfd3 170my (@to,@cc,@xh,$envelope_sender,
d11c943c 171 $initial_in_reply_to,$reply_to,$initial_subject,@files,
3494dfd3
ÆAB
172 $author,$sender,$smtp_authpass,$annotate,$compose,$time);
173# Things we either get from config, *or* are overridden on the
174# command-line.
3ff15040 175my ($no_cc, $no_to, $no_bcc, $no_identity);
3494dfd3
ÆAB
176my (@config_to, @getopt_to);
177my (@config_cc, @getopt_cc);
178my (@config_bcc, @getopt_bcc);
78488b2c 179
9133261f 180# Example reply to:
15dc3b91 181#$initial_in_reply_to = ''; #<20050203173208.GA23964@foobar.com>';
83b24437 182
ad79c024
FL
183my $repo = eval { Git->repository() };
184my @repo = $repo ? ($repo) : ();
83b24437 185
5483c71d
AR
186# Behavior modification variables
187my ($quiet, $dry_run) = (0, 0);
5df9fcf6 188my $format_patch;
afe756c9 189my $compose_filename;
a03bc5b6 190my $force = 0;
17b7a832 191my $dump_aliases = 0;
5483c71d 192
8fd5bb7f
PH
193# Handle interactive edition of files.
194my $multiedit;
0ce142c9 195my $editor;
b4479f07 196
d21616c0
ÆAB
197sub system_or_msg {
198 my ($args, $msg) = @_;
199 system(@$args);
200 my $signalled = $? & 127;
201 my $exit_code = $? >> 8;
202 return unless $signalled or $exit_code;
203
5b719b75
ÆAB
204 my @sprintf_args = ($args->[0], $exit_code);
205 if (defined $msg) {
206 # Quiet the 'redundant' warning category, except we
207 # need to support down to Perl 5.8, so we can't do a
208 # "no warnings 'redundant'", since that category was
209 # introduced in perl 5.22, and asking for it will die
210 # on older perls.
211 no warnings;
212 return sprintf($msg, @sprintf_args);
213 }
ea7811b3 214 return sprintf(__("fatal: command '%s' died with exit code %d"),
5b719b75 215 @sprintf_args);
d21616c0
ÆAB
216}
217
218sub system_or_die {
219 my $msg = system_or_msg(@_);
220 die $msg if $msg;
221}
222
8fd5bb7f 223sub do_edit {
0ce142c9
MG
224 if (!defined($editor)) {
225 $editor = Git::command_oneline('var', 'GIT_EDITOR');
226 }
d21616c0 227 my $die_msg = __("the editor exited uncleanly, aborting everything");
8fd5bb7f 228 if (defined($multiedit) && !$multiedit) {
d21616c0 229 system_or_die(['sh', '-c', $editor.' "$@"', $editor, $_], $die_msg) for @_;
8fd5bb7f 230 } else {
d21616c0 231 system_or_die(['sh', '-c', $editor.' "$@"', $editor, @_], $die_msg);
8fd5bb7f
PH
232 }
233}
5483c71d
AR
234
235# Variables with corresponding config settings
3494dfd3 236my ($suppress_from, $signed_off_by_cc);
f515c904 237my ($cover_cc, $cover_to);
6e74e075 238my ($to_cmd, $cc_cmd);
052fbea2 239my ($smtp_server, $smtp_server_port, @smtp_server_options);
35035bbf 240my ($smtp_authuser, $smtp_encryption, $smtp_ssl_cert_path);
5453b83b 241my ($batch_size, $relogin_delay);
0f2e68b5 242my ($identity, $aliasfiletype, @alias_files, $smtp_domain, $smtp_auth);
3494dfd3 243my ($confirm);
65648283 244my (@suppress_cc);
3cae7e5b 245my ($auto_8bit_encoding);
62e00690 246my ($compose_encoding);
cd5b33fb 247my ($sendmail_cmd);
3494dfd3 248# Variables with corresponding config settings & hardcoded defaults
f60812ef 249my ($debug_net_smtp) = 0; # Net::SMTP, see send_message()
3494dfd3
ÆAB
250my $thread = 1;
251my $chain_reply_to = 0;
252my $use_xmailer = 1;
253my $validate = 1;
254my $target_xfer_encoding = 'auto';
dd84e528 255my $forbid_sendmail_variables = 1;
f60812ef 256
34cc60ce 257my %config_bool_settings = (
3494dfd3
ÆAB
258 "thread" => \$thread,
259 "chainreplyto" => \$chain_reply_to,
260 "suppressfrom" => \$suppress_from,
261 "signedoffbycc" => \$signed_off_by_cc,
262 "cccover" => \$cover_cc,
263 "tocover" => \$cover_to,
264 "signedoffcc" => \$signed_off_by_cc,
265 "validate" => \$validate,
266 "multiedit" => \$multiedit,
267 "annotate" => \$annotate,
268 "xmailer" => \$use_xmailer,
dd84e528 269 "forbidsendmailvariables" => \$forbid_sendmail_variables,
e46f7a0e
AR
270);
271
34cc60ce 272my %config_settings = (
119974e9 273 "smtpencryption" => \$smtp_encryption,
34cc60ce 274 "smtpserver" => \$smtp_server,
44b2476a 275 "smtpserverport" => \$smtp_server_port,
052fbea2 276 "smtpserveroption" => \@smtp_server_options,
34cc60ce
DS
277 "smtpuser" => \$smtp_authuser,
278 "smtppass" => \$smtp_authpass,
e1e9115d 279 "smtpdomain" => \$smtp_domain,
0f2e68b5 280 "smtpauth" => \$smtp_auth,
5453b83b 281 "smtpbatchsize" => \$batch_size,
282 "smtprelogindelay" => \$relogin_delay,
3494dfd3 283 "to" => \@config_to,
6e74e075 284 "tocmd" => \$to_cmd,
3494dfd3 285 "cc" => \@config_cc,
34cc60ce
DS
286 "cccmd" => \$cc_cmd,
287 "aliasfiletype" => \$aliasfiletype,
3494dfd3 288 "bcc" => \@config_bcc,
65648283 289 "suppresscc" => \@suppress_cc,
9f7820ae 290 "envelopesender" => \$envelope_sender,
c1f2aa45 291 "confirm" => \$confirm,
09caa24f 292 "from" => \$sender,
3cae7e5b 293 "assume8bitencoding" => \$auto_8bit_encoding,
62e00690 294 "composeencoding" => \$compose_encoding,
8d814084 295 "transferencoding" => \$target_xfer_encoding,
cd5b33fb 296 "sendmailcmd" => \$sendmail_cmd,
34cc60ce 297);
4a62d3f5 298
cec5dae8
CS
299my %config_path_settings = (
300 "aliasesfile" => \@alias_files,
6e07a3b5 301 "smtpsslcertpath" => \$smtp_ssl_cert_path,
cec5dae8
CS
302);
303
87429976
MW
304# Handle Uncouth Termination
305sub signal_handler {
87429976 306 # Make text normal
f4dc9432
ÆAB
307 require Term::ANSIColor;
308 print Term::ANSIColor::color("reset"), "\n";
87429976
MW
309
310 # SMTP password masked
311 system "stty echo";
312
313 # tmp files from --compose
afe756c9
JS
314 if (defined $compose_filename) {
315 if (-e $compose_filename) {
3c5cd20c
VA
316 printf __("'%s' contains an intermediate version ".
317 "of the email you were composing.\n"),
318 $compose_filename;
afe756c9
JS
319 }
320 if (-e ($compose_filename . ".final")) {
3c5cd20c
VA
321 printf __("'%s.final' contains the composed email.\n"),
322 $compose_filename;
afe756c9 323 }
87429976
MW
324 }
325
326 exit;
327};
328
329$SIG{TERM} = \&signal_handler;
330$SIG{INT} = \&signal_handler;
331
c573572c
ÆAB
332# Read our sendemail.* config
333sub read_config {
9264d29b 334 my ($known_keys, $configured, $prefix) = @_;
c573572c
ÆAB
335
336 foreach my $setting (keys %config_bool_settings) {
3494dfd3 337 my $target = $config_bool_settings{$setting};
9264d29b
ÆAB
338 my $key = "$prefix.$setting";
339 next unless exists $known_keys->{$key};
c95e3a3f
ÆAB
340 my $v = (@{$known_keys->{$key}} == 1 &&
341 (defined $known_keys->{$key}->[0] &&
342 $known_keys->{$key}->[0] =~ /^(?:true|false)$/s))
343 ? $known_keys->{$key}->[0] eq 'true'
344 : Git::config_bool(@repo, $key);
3ff15040
ÆAB
345 next unless defined $v;
346 next if $configured->{$setting}++;
347 $$target = $v;
c573572c
ÆAB
348 }
349
350 foreach my $setting (keys %config_path_settings) {
351 my $target = $config_path_settings{$setting};
9264d29b
ÆAB
352 my $key = "$prefix.$setting";
353 next unless exists $known_keys->{$key};
c573572c 354 if (ref($target) eq "ARRAY") {
9264d29b 355 my @values = Git::config_path(@repo, $key);
3ff15040
ÆAB
356 next unless @values;
357 next if $configured->{$setting}++;
358 @$target = @values;
c573572c
ÆAB
359 }
360 else {
3494dfd3 361 my $v = Git::config_path(@repo, "$prefix.$setting");
3ff15040
ÆAB
362 next unless defined $v;
363 next if $configured->{$setting}++;
364 $$target = $v;
c573572c
ÆAB
365 }
366 }
367
368 foreach my $setting (keys %config_settings) {
369 my $target = $config_settings{$setting};
9264d29b
ÆAB
370 my $key = "$prefix.$setting";
371 next unless exists $known_keys->{$key};
c573572c 372 if (ref($target) eq "ARRAY") {
c95e3a3f
ÆAB
373 my @values = @{$known_keys->{$key}};
374 @values = grep { defined } @values;
3ff15040
ÆAB
375 next if $configured->{$setting}++;
376 @$target = @values;
c573572c
ÆAB
377 }
378 else {
c95e3a3f 379 my $v = $known_keys->{$key}->[0];
3ff15040
ÆAB
380 next unless defined $v;
381 next if $configured->{$setting}++;
382 $$target = $v;
c573572c
ÆAB
383 }
384 }
c573572c 385}
c573572c 386
2b110e9b
ÆAB
387sub config_regexp {
388 my ($regex) = @_;
389 my @ret;
390 eval {
c95e3a3f 391 my $ret = Git::command(
2b110e9b 392 'config',
c95e3a3f 393 '--null',
2b110e9b
ÆAB
394 '--get-regexp',
395 $regex,
396 );
c95e3a3f
ÆAB
397 @ret = map {
398 # We must always return ($k, $v) here, since
399 # empty config values will be just "key\0",
400 # not "key\nvalue\0".
401 my ($k, $v) = split /\n/, $_, 2;
402 ($k, $v);
403 } split /\0/, $ret;
2b110e9b
ÆAB
404 1;
405 } or do {
406 # If we have no keys we're OK, otherwise re-throw
407 die $@ if $@->value != 1;
408 };
409 return @ret;
410}
411
9264d29b
ÆAB
412# Save ourselves a lot of work of shelling out to 'git config' (it
413# parses 'bool' etc.) by only doing so for config keys that exist.
414my %known_config_keys;
415{
c95e3a3f
ÆAB
416 my @kv = config_regexp("^sende?mail[.]");
417 while (my ($k, $v) = splice @kv, 0, 2) {
418 push @{$known_config_keys{$k}} => $v;
c573572c
ÆAB
419 }
420}
421
3ff15040
ÆAB
422# sendemail.identity yields to --identity. We must parse this
423# special-case first before the rest of the config is read.
9264d29b
ÆAB
424{
425 my $key = "sendemail.identity";
426 $identity = Git::config(@repo, $key) if exists $known_config_keys{$key};
427}
3ff15040
ÆAB
428my $rc = GetOptions(
429 "identity=s" => \$identity,
430 "no-identity" => \$no_identity,
431);
432usage() unless $rc;
433undef $identity if $no_identity;
434
435# Now we know enough to read the config
436{
437 my %configured;
9264d29b
ÆAB
438 read_config(\%known_config_keys, \%configured, "sendemail.$identity") if defined $identity;
439 read_config(\%known_config_keys, \%configured, "sendemail");
3ff15040 440}
3494dfd3 441
83b24437
RA
442# Begin by accumulating all the variables (defined above), that we will end up
443# needing, first, from the command line:
444
c5978246 445my $help;
13374987 446my $git_completion_helper;
3ff15040
ÆAB
447$rc = GetOptions("h" => \$help,
448 "dump-aliases" => \$dump_aliases);
17b7a832 449usage() unless $rc;
46493105 450die __("--dump-aliases incompatible with other options\n")
17b7a832
JK
451 if !$help and $dump_aliases and @ARGV;
452$rc = GetOptions(
c5978246 453 "sender|from=s" => \$sender,
15dc3b91 454 "in-reply-to=s" => \$initial_in_reply_to,
d11c943c 455 "reply-to=s" => \$reply_to,
83b24437 456 "subject=s" => \$initial_subject,
3494dfd3 457 "to=s" => \@getopt_to,
6e74e075 458 "to-cmd=s" => \$to_cmd,
f434c083 459 "no-to" => \$no_to,
3494dfd3 460 "cc=s" => \@getopt_cc,
f434c083 461 "no-cc" => \$no_cc,
3494dfd3 462 "bcc=s" => \@getopt_bcc,
f434c083 463 "no-bcc" => \$no_bcc,
78488b2c 464 "chain-reply-to!" => \$chain_reply_to,
f4714943 465 "no-chain-reply-to" => sub {$chain_reply_to = 0},
cd5b33fb 466 "sendmail-cmd=s" => \$sendmail_cmd,
3342d850 467 "smtp-server=s" => \$smtp_server,
052fbea2 468 "smtp-server-option=s" => \@smtp_server_options,
44b2476a 469 "smtp-server-port=s" => \$smtp_server_port,
34cc60ce 470 "smtp-user=s" => \$smtp_authuser,
2363d746 471 "smtp-pass:s" => \$smtp_authpass,
f6bebd12
TR
472 "smtp-ssl" => sub { $smtp_encryption = 'ssl' },
473 "smtp-encryption=s" => \$smtp_encryption,
979e652a 474 "smtp-ssl-cert-path=s" => \$smtp_ssl_cert_path,
f60812ef 475 "smtp-debug:i" => \$debug_net_smtp,
69cf7bfd 476 "smtp-domain:s" => \$smtp_domain,
0f2e68b5 477 "smtp-auth=s" => \$smtp_auth,
8dd9b3f8 478 "no-smtp-auth" => sub {$smtp_auth = 'none'},
402596aa 479 "annotate!" => \$annotate,
f4714943 480 "no-annotate" => sub {$annotate = 0},
1f038a0c 481 "compose" => \$compose,
30d08b34 482 "quiet" => \$quiet,
324a8bd0 483 "cc-cmd=s" => \$cc_cmd,
5483c71d 484 "suppress-from!" => \$suppress_from,
f4714943 485 "no-suppress-from" => sub {$suppress_from = 0},
65648283 486 "suppress-cc=s" => \@suppress_cc,
ddc3d4fe 487 "signed-off-cc|signed-off-by-cc!" => \$signed_off_by_cc,
f4714943 488 "no-signed-off-cc|no-signed-off-by-cc" => sub {$signed_off_by_cc = 0},
f515c904 489 "cc-cover|cc-cover!" => \$cover_cc,
f4714943 490 "no-cc-cover" => sub {$cover_cc = 0},
f515c904 491 "to-cover|to-cover!" => \$cover_to,
f4714943 492 "no-to-cover" => sub {$cover_to = 0},
c1f2aa45 493 "confirm=s" => \$confirm,
6130259c 494 "dry-run" => \$dry_run,
f073a592 495 "envelope-sender=s" => \$envelope_sender,
5483c71d 496 "thread!" => \$thread,
f4714943 497 "no-thread" => sub {$thread = 0},
dbf5e1e9 498 "validate!" => \$validate,
f4714943 499 "no-validate" => sub {$validate = 0},
8d814084 500 "transfer-encoding=s" => \$target_xfer_encoding,
5df9fcf6 501 "format-patch!" => \$format_patch,
f4714943 502 "no-format-patch" => sub {$format_patch = 0},
3cae7e5b 503 "8bit-encoding=s" => \$auto_8bit_encoding,
62e00690 504 "compose-encoding=s" => \$compose_encoding,
a03bc5b6 505 "force" => \$force,
ac1596a6 506 "xmailer!" => \$use_xmailer,
f4714943 507 "no-xmailer" => sub {$use_xmailer = 0},
5453b83b 508 "batch-size=i" => \$batch_size,
509 "relogin-delay=i" => \$relogin_delay,
13374987 510 "git-completion-helper" => \$git_completion_helper,
83b24437
RA
511 );
512
3494dfd3
ÆAB
513# Munge any "either config or getopt, not both" variables
514my @initial_to = @getopt_to ? @getopt_to : ($no_to ? () : @config_to);
515my @initial_cc = @getopt_cc ? @getopt_cc : ($no_cc ? () : @config_cc);
516my @initial_bcc = @getopt_bcc ? @getopt_bcc : ($no_bcc ? () : @config_bcc);
517
c5978246 518usage() if $help;
13374987 519completion_helper() if $git_completion_helper;
1b0baf14
MC
520unless ($rc) {
521 usage();
522}
523
9264d29b 524if ($forbid_sendmail_variables && grep { /^sendmail/s } keys %known_config_keys) {
dd84e528
DD
525 die __("fatal: found configuration options for 'sendmail'\n" .
526 "git-send-email is configured with the sendemail.* options - note the 'e'.\n" .
527 "Set sendemail.forbidSendmailVariables to false to disable this check.\n");
528}
529
46493105 530die __("Cannot run git format-patch from outside a repository\n")
eed6ca7c
JS
531 if $format_patch and not $repo;
532
9caa7069
SB
533die __("`batch-size` and `relogin` must be specified together " .
534 "(via command-line or configuration option)\n")
535 if defined $relogin_delay and not defined $batch_size;
536
fa835cd5
TR
537# 'default' encryption is none -- this only prevents a warning
538$smtp_encryption = '' unless (defined $smtp_encryption);
539
65648283
DB
540# Set CC suppressions
541my(%suppress_cc);
542if (@suppress_cc) {
543 foreach my $entry (@suppress_cc) {
5a59a230
NTND
544 # Please update $__git_send_email_suppresscc_options
545 # in git-completion.bash when you add new options.
3c5cd20c 546 die sprintf(__("Unknown --suppress-cc field: '%s'\n"), $entry)
ef0cc1df 547 unless $entry =~ /^(?:all|cccmd|cc|author|self|sob|body|bodycc|misc-by)$/;
65648283
DB
548 $suppress_cc{$entry} = 1;
549 }
550}
551
552if ($suppress_cc{'all'}) {
ef0cc1df 553 foreach my $entry (qw (cccmd cc author self sob body bodycc misc-by)) {
65648283
DB
554 $suppress_cc{$entry} = 1;
555 }
556 delete $suppress_cc{'all'};
557}
558
559# If explicit old-style ones are specified, they trump --suppress-cc.
560$suppress_cc{'self'} = $suppress_from if defined $suppress_from;
ddc3d4fe 561$suppress_cc{'sob'} = !$signed_off_by_cc if defined $signed_off_by_cc;
65648283 562
3531e270 563if ($suppress_cc{'body'}) {
ef0cc1df 564 foreach my $entry (qw (sob bodycc misc-by)) {
3531e270
JS
565 $suppress_cc{$entry} = 1;
566 }
567 delete $suppress_cc{'body'};
568}
569
c1f2aa45
JS
570# Set confirm's default value
571my $confirm_unconfigured = !defined $confirm;
572if ($confirm_unconfigured) {
573 $confirm = scalar %suppress_cc ? 'compose' : 'auto';
574};
5a59a230
NTND
575# Please update $__git_send_email_confirm_options in
576# git-completion.bash when you add new options.
3c5cd20c 577die sprintf(__("Unknown --confirm setting: '%s'\n"), $confirm)
c1f2aa45
JS
578 unless $confirm =~ /^(?:auto|cc|compose|always|never)/;
579
65648283
DB
580# Debugging, print out the suppressions.
581if (0) {
582 print "suppressions:\n";
583 foreach my $entry (keys %suppress_cc) {
584 printf " %-5s -> $suppress_cc{$entry}\n", $entry;
585 }
586}
587
ad79c024 588my ($repoauthor, $repocommitter);
fef381e6
ÆAB
589{
590 my %cache;
591 my ($author, $committer);
592 my $common = sub {
593 my ($what) = @_;
594 return $cache{$what} if exists $cache{$what};
595 ($cache{$what}) = Git::ident_person(@repo, $what);
596 return $cache{$what};
597 };
598 $repoauthor = sub { $common->('author') };
599 $repocommitter = sub { $common->('committer') };
600}
34cc60ce 601
5012699d 602sub parse_address_line {
f4dc9432 603 require Git::LoadCPAN::Mail::Address;
bd869f67 604 return map { $_->format } Mail::Address->parse($_[0]);
5012699d
JS
605}
606
0e73b3ee 607sub split_addrs {
f4dc9432
ÆAB
608 require Text::ParseWords;
609 return Text::ParseWords::quotewords('\s*,\s*', 1, @_);
0e73b3ee
WF
610}
611
994d6c66 612my %aliases;
09f1157b
ES
613
614sub parse_sendmail_alias {
615 local $_ = shift;
616 if (/"/) {
3c5cd20c 617 printf STDERR __("warning: sendmail alias with quotes is not supported: %s\n"), $_;
86b89848 618 } elsif (/:include:/) {
3c5cd20c 619 printf STDERR __("warning: `:include:` not supported: %s\n"), $_;
86b89848 620 } elsif (/[\/|]/) {
3c5cd20c 621 printf STDERR __("warning: `/file` or `|pipe` redirection not supported: %s\n"), $_;
09f1157b
ES
622 } elsif (/^(\S+?)\s*:\s*(.+)$/) {
623 my ($alias, $addr) = ($1, $2);
624 $aliases{$alias} = [ split_addrs($addr) ];
625 } else {
3c5cd20c 626 printf STDERR __("warning: sendmail line is not recognized: %s\n"), $_;
09f1157b
ES
627 }
628}
629
630sub parse_sendmail_aliases {
631 my $fh = shift;
2532dd06 632 my $s = '';
09f1157b 633 while (<$fh>) {
2532dd06 634 chomp;
020be85f 635 next if /^\s*$/ || /^\s*#/;
2532dd06
ES
636 $s .= $_, next if $s =~ s/\\$// || s/^\s+//;
637 parse_sendmail_alias($s) if $s;
638 $s = $_;
09f1157b 639 }
2532dd06
ES
640 $s =~ s/\\$//; # silently tolerate stray '\' on last line
641 parse_sendmail_alias($s) if $s;
09f1157b
ES
642}
643
994d6c66
EW
644my %parse_alias = (
645 # multiline formats can be supported in the future
646 mutt => sub { my $fh = shift; while (<$fh>) {
ffc01f9b 647 if (/^\s*alias\s+(?:-group\s+\S+\s+)*(\S+)\s+(.*)$/) {
994d6c66
EW
648 my ($alias, $addr) = ($1, $2);
649 $addr =~ s/#.*$//; # mutt allows # comments
2c510f21
EW
650 # commas delimit multiple addresses
651 my @addr = split_addrs($addr);
652
653 # quotes may be escaped in the file,
654 # unescape them so we do not double-escape them later.
655 s/\\"/"/g foreach @addr;
656 $aliases{$alias} = \@addr
994d6c66 657 }}},
f4dc9432 658 mailrc => sub { my $fh = shift; while (<$fh>) {
a277d1ef 659 if (/^alias\s+(\S+)\s+(.*?)\s*$/) {
f4dc9432 660 require Text::ParseWords;
994d6c66 661 # spaces delimit multiple addresses
f4dc9432 662 $aliases{$1} = [ Text::ParseWords::quotewords('\s+', 0, $2) ];
994d6c66 663 }}},
73c427eb
TP
664 pine => sub { my $fh = shift; my $f='\t[^\t]*';
665 for (my $x = ''; defined($x); $x = $_) {
666 chomp $x;
667 $x .= $1 while(defined($_ = <$fh>) && /^ +(.*)$/);
668 $x =~ /^(\S+)$f\t\(?([^\t]+?)\)?(:?$f){0,2}$/ or next;
0e73b3ee 669 $aliases{$1} = [ split_addrs($2) ];
73c427eb 670 }},
7613ea35
BP
671 elm => sub { my $fh = shift;
672 while (<$fh>) {
673 if (/^(\S+)\s+=\s+[^=]+=\s(\S+)/) {
674 my ($alias, $addr) = ($1, $2);
675 $aliases{$alias} = [ split_addrs($addr) ];
676 }
677 } },
09f1157b 678 sendmail => \&parse_sendmail_aliases,
994d6c66
EW
679 gnus => sub { my $fh = shift; while (<$fh>) {
680 if (/\(define-mail-alias\s+"(\S+?)"\s+"(\S+?)"\)/) {
681 $aliases{$1} = [ $2 ];
682 }}}
5a59a230
NTND
683 # Please update _git_config() in git-completion.bash when you
684 # add new MUAs.
994d6c66
EW
685);
686
3cb8caf7 687if (@alias_files and $aliasfiletype and defined $parse_alias{$aliasfiletype}) {
994d6c66
EW
688 foreach my $file (@alias_files) {
689 open my $fh, '<', $file or die "opening $file: $!\n";
690 $parse_alias{$aliasfiletype}->($fh);
691 close $fh;
692 }
693}
694
17b7a832
JK
695if ($dump_aliases) {
696 print "$_\n" for (sort keys %aliases);
697 exit(0);
698}
699
9b397039
RR
700# is_format_patch_arg($f) returns 0 if $f names a patch, or 1 if
701# $f is a revision list specification to be passed to format-patch.
702sub is_format_patch_arg {
eed6ca7c 703 return unless $repo;
5df9fcf6
PH
704 my $f = shift;
705 try {
706 $repo->command('rev-parse', '--verify', '--quiet', $f);
707 if (defined($format_patch)) {
5df9fcf6
PH
708 return $format_patch;
709 }
4adbf387 710 die sprintf(__(<<EOF), $f, $f);
3c5cd20c 711File '%s' exists but it could also be the range of commits
5df9fcf6
PH
712to produce patches for. Please disambiguate by...
713
3c5cd20c 714 * Saying "./%s" if you mean a file; or
5df9fcf6
PH
715 * Giving --format-patch option if you mean a range.
716EOF
717 } catch Git::Error::Command with {
9b397039 718 # Not a valid revision. Treat it as a filename.
5df9fcf6
PH
719 return 0;
720 }
721}
722
aa54892f
JK
723# Now that all the defaults are set, process the rest of the command line
724# arguments and collect up the files that need to be processed.
5df9fcf6 725my @rev_list_opts;
69f4ce55 726while (defined(my $f = shift @ARGV)) {
5df9fcf6
PH
727 if ($f eq "--") {
728 push @rev_list_opts, "--", @ARGV;
729 @ARGV = ();
9b397039 730 } elsif (-d $f and !is_format_patch_arg($f)) {
c6038169 731 opendir my $dh, $f
3c5cd20c 732 or die sprintf(__("Failed to opendir %s: %s"), $f, $!);
aa54892f 733
f4dc9432
ÆAB
734 require File::Spec;
735 push @files, grep { -f $_ } map { File::Spec->catfile($f, $_) }
c6038169
ÆAB
736 sort readdir $dh;
737 closedir $dh;
9b397039 738 } elsif ((-f $f or -p $f) and !is_format_patch_arg($f)) {
aa54892f 739 push @files, $f;
aa54892f 740 } else {
5df9fcf6 741 push @rev_list_opts, $f;
aa54892f
JK
742 }
743}
744
5df9fcf6 745if (@rev_list_opts) {
46493105 746 die __("Cannot run git format-patch from outside a repository\n")
eed6ca7c 747 unless $repo;
f4dc9432
ÆAB
748 require File::Temp;
749 push @files, $repo->command('format-patch', '-o', File::Temp::tempdir(CLEANUP => 1), @rev_list_opts);
5df9fcf6
PH
750}
751
531220ba
JH
752@files = handle_backup_files(@files);
753
dbf5e1e9 754if ($validate) {
c764a0c2 755 foreach my $f (@files) {
300913bd 756 unless (-p $f) {
d21616c0 757 validate_patch($f, $target_xfer_encoding);
300913bd 758 }
c764a0c2 759 }
747bbff9
JK
760}
761
aa54892f
JK
762if (@files) {
763 unless ($quiet) {
764 print $_,"\n" for (@files);
765 }
766} else {
46493105 767 print STDERR __("\nNo patch files specified!\n\n");
aa54892f
JK
768 usage();
769}
770
acf071b0 771sub get_patch_subject {
beece9da
PH
772 my $fn = shift;
773 open (my $fh, '<', $fn);
774 while (my $line = <$fh>) {
775 next unless ($line =~ /^Subject: (.*)$/);
776 close $fh;
777 return "GIT: $1\n";
778 }
779 close $fh;
3c5cd20c 780 die sprintf(__("No subject line in %s?"), $fn);
beece9da
PH
781}
782
783if ($compose) {
784 # Note that this does not need to be secure, but we will make a small
785 # effort to have it be unique
f4dc9432 786 require File::Temp;
afe756c9 787 $compose_filename = ($repo ?
f4dc9432
ÆAB
788 File::Temp::tempfile(".gitsendemail.msg.XXXXXX", DIR => $repo->repo_path()) :
789 File::Temp::tempfile(".gitsendemail.msg.XXXXXX", DIR => "."))[1];
fe0f944f 790 open my $c, ">", $compose_filename
3c5cd20c 791 or die sprintf(__("Failed to open for writing %s: %s"), $compose_filename, $!);
beece9da
PH
792
793
fef381e6 794 my $tpl_sender = $sender || $repoauthor->() || $repocommitter->() || '';
beece9da 795 my $tpl_subject = $initial_subject || '';
15dc3b91 796 my $tpl_in_reply_to = $initial_in_reply_to || '';
d11c943c 797 my $tpl_reply_to = $reply_to || '';
beece9da 798
4adbf387 799 print $c <<EOT1, Git::prefix_lines("GIT: ", __(<<EOT2)), <<EOT3;
beece9da 800From $tpl_sender # This line is ignored.
70aedfb3
VA
801EOT1
802Lines beginning in "GIT:" will be removed.
803Consider including an overall diffstat or table of contents
804for the patch you are writing.
805
806Clear the body content if you don't wish to send a summary.
807EOT2
beece9da 808From: $tpl_sender
d11c943c 809Reply-To: $tpl_reply_to
beece9da 810Subject: $tpl_subject
15dc3b91 811In-Reply-To: $tpl_in_reply_to
beece9da 812
70aedfb3 813EOT3
beece9da 814 for my $f (@files) {
fe0f944f 815 print $c get_patch_subject($f);
beece9da 816 }
fe0f944f 817 close $c;
beece9da 818
beece9da
PH
819 if ($annotate) {
820 do_edit($compose_filename, @files);
821 } else {
822 do_edit($compose_filename);
823 }
824
fe0f944f 825 open $c, "<", $compose_filename
3c5cd20c 826 or die sprintf(__("Failed to open %s: %s"), $compose_filename, $!);
beece9da 827
4a47a4dd
KM
828 if (!defined $compose_encoding) {
829 $compose_encoding = "UTF-8";
830 }
b6049542
NP
831
832 my %parsed_email;
833 while (my $line = <$c>) {
834 next if $line =~ m/^GIT:/;
835 parse_header_line($line, \%parsed_email);
836 if ($line =~ /^$/) {
837 $parsed_email{'body'} = filter_body($c);
beece9da 838 }
beece9da 839 }
fe0f944f 840 close $c;
beece9da 841
b6049542
NP
842 open my $c2, ">", $compose_filename . ".final"
843 or die sprintf(__("Failed to open %s.final: %s"), $compose_filename, $!);
844
845
846 if ($parsed_email{'From'}) {
847 $sender = delete($parsed_email{'From'});
848 }
849 if ($parsed_email{'In-Reply-To'}) {
15dc3b91 850 $initial_in_reply_to = delete($parsed_email{'In-Reply-To'});
b6049542 851 }
d11c943c
CL
852 if ($parsed_email{'Reply-To'}) {
853 $reply_to = delete($parsed_email{'Reply-To'});
b6049542
NP
854 }
855 if ($parsed_email{'Subject'}) {
856 $initial_subject = delete($parsed_email{'Subject'});
857 print $c2 "Subject: " .
858 quote_subject($initial_subject, $compose_encoding) .
859 "\n";
860 }
861
862 if ($parsed_email{'MIME-Version'}) {
863 print $c2 "MIME-Version: $parsed_email{'MIME-Version'}\n",
864 "Content-Type: $parsed_email{'Content-Type'};\n",
865 "Content-Transfer-Encoding: $parsed_email{'Content-Transfer-Encoding'}\n";
866 delete($parsed_email{'MIME-Version'});
867 delete($parsed_email{'Content-Type'});
868 delete($parsed_email{'Content-Transfer-Encoding'});
869 } elsif (file_has_nonascii($compose_filename)) {
870 my $content_type = (delete($parsed_email{'Content-Type'}) or
871 "text/plain; charset=$compose_encoding");
872 print $c2 "MIME-Version: 1.0\n",
873 "Content-Type: $content_type\n",
874 "Content-Transfer-Encoding: 8bit\n";
875 }
876 # Preserve unknown headers
877 foreach my $key (keys %parsed_email) {
878 next if $key eq 'body';
879 print $c2 "$key: $parsed_email{$key}";
880 }
881
882 if ($parsed_email{'body'}) {
883 print $c2 "\n$parsed_email{'body'}\n";
884 delete($parsed_email{'body'});
885 } else {
46493105 886 print __("Summary email is empty, skipping it\n");
beece9da
PH
887 $compose = -1;
888 }
b6049542
NP
889
890 close $c2;
891
beece9da
PH
892} elsif ($annotate) {
893 do_edit(@files);
894}
895
f4dc9432
ÆAB
896sub term {
897 my $term = eval {
898 require Term::ReadLine;
899 $ENV{"GIT_SEND_EMAIL_NOTTY"}
900 ? Term::ReadLine->new('git-send-email', \*STDIN, \*STDOUT)
901 : Term::ReadLine->new('git-send-email');
902 };
903 if ($@) {
904 $term = FakeTerm->new("$@: going non-interactive");
905 }
906 return $term;
907}
908
6e182518
JS
909sub ask {
910 my ($prompt, %arg) = @_;
0da43a68 911 my $valid_re = $arg{valid_re};
6e182518 912 my $default = $arg{default};
51bbccfd 913 my $confirm_only = $arg{confirm_only};
6e182518
JS
914 my $resp;
915 my $i = 0;
f4dc9432 916 my $term = term();
5906f54e
JS
917 return defined $default ? $default : undef
918 unless defined $term->IN and defined fileno($term->IN) and
919 defined $term->OUT and defined fileno($term->OUT);
6e182518
JS
920 while ($i++ < 10) {
921 $resp = $term->readline($prompt);
922 if (!defined $resp) { # EOF
923 print "\n";
924 return defined $default ? $default : undef;
925 }
926 if ($resp eq '' and defined $default) {
927 return $default;
928 }
0da43a68 929 if (!defined $valid_re or $resp =~ /$valid_re/) {
6e182518
JS
930 return $resp;
931 }
51bbccfd 932 if ($confirm_only) {
3c5cd20c
VA
933 my $yesno = $term->readline(
934 # TRANSLATORS: please keep [y/N] as is.
935 sprintf(__("Are you sure you want to use <%s> [y/N]? "), $resp));
51bbccfd
JH
936 if (defined $yesno && $yesno =~ /y/i) {
937 return $resp;
938 }
939 }
6e182518 940 }
622bc930 941 return;
6e182518
JS
942}
943
b6049542
NP
944sub parse_header_line {
945 my $lines = shift;
946 my $parsed_line = shift;
947 my $addr_pat = join "|", qw(To Cc Bcc);
948
949 foreach (split(/\n/, $lines)) {
950 if (/^($addr_pat):\s*(.+)$/i) {
951 $parsed_line->{$1} = [ parse_address_line($2) ];
952 } elsif (/^([^:]*):\s*(.+)\s*$/i) {
953 $parsed_line->{$1} = $2;
954 }
955 }
956}
957
958sub filter_body {
959 my $c = shift;
960 my $body = "";
961 while (my $body_line = <$c>) {
962 if ($body_line !~ m/^GIT:/) {
963 $body .= $body_line;
964 }
965 }
966 return $body;
967}
968
969
3cae7e5b
TR
970my %broken_encoding;
971
1d50bfd9 972sub file_declares_8bit_cte {
3cae7e5b
TR
973 my $fn = shift;
974 open (my $fh, '<', $fn);
975 while (my $line = <$fh>) {
976 last if ($line =~ /^$/);
977 return 1 if ($line =~ /^Content-Transfer-Encoding: .*8bit.*$/);
978 }
979 close $fh;
980 return 0;
981}
982
983foreach my $f (@files) {
984 next unless (body_or_subject_has_nonascii($f)
985 && !file_declares_8bit_cte($f));
986 $broken_encoding{$f} = 1;
987}
988
989if (!defined $auto_8bit_encoding && scalar %broken_encoding) {
a4dde4c4
VA
990 print __("The following files are 8bit, but do not declare " .
991 "a Content-Transfer-Encoding.\n");
3cae7e5b
TR
992 foreach my $f (sort keys %broken_encoding) {
993 print " $f\n";
994 }
a4dde4c4 995 $auto_8bit_encoding = ask(__("Which 8bit encoding should I declare [UTF-8]? "),
852a15d7 996 valid_re => qr/.{4}/, confirm_only => 1,
3cae7e5b
TR
997 default => "UTF-8");
998}
999
a03bc5b6
TR
1000if (!$force) {
1001 for my $f (@files) {
0d290a46 1002 if (get_patch_subject($f) =~ /\Q*** SUBJECT HERE ***\E/) {
3c5cd20c 1003 die sprintf(__("Refusing to send because the patch\n\t%s\n"
a03bc5b6 1004 . "has the template subject '*** SUBJECT HERE ***'. "
3c5cd20c 1005 . "Pass --force if you really want to send.\n"), $f);
a03bc5b6
TR
1006 }
1007 }
1008}
1009
c46e27aa 1010if (defined $sender) {
fa5b1aa9 1011 $sender =~ s/^\s+|\s+$//g;
c46e27aa
RL
1012 ($sender) = expand_aliases($sender);
1013} else {
fef381e6 1014 $sender = $repoauthor->() || $repocommitter->() || '';
83b24437
RA
1015}
1016
da18759e
MT
1017# $sender could be an already sanitized address
1018# (e.g. sendemail.from could be manually sanitized by user).
1019# But it's a no-op to run sanitize_address on an already sanitized address.
1020$sender = sanitize_address($sender);
1021
a4dde4c4 1022my $to_whom = __("To whom should the emails be sent (if anyone)?");
8cac13dc 1023my $prompting = 0;
8796ff7f 1024if (!@initial_to && !defined $to_cmd) {
0d6b21e7 1025 my $to = ask("$to_whom ",
61837493 1026 default => "",
51bbccfd 1027 valid_re => qr/\@.*\./, confirm_only => 1);
3c3bb51c 1028 push @initial_to, parse_address_line($to) if defined $to; # sanitized/validated later
1f038a0c 1029 $prompting++;
83b24437
RA
1030}
1031
994d6c66 1032sub expand_aliases {
302e04ea
JK
1033 return map { expand_one_alias($_) } @_;
1034}
1035
1036my %EXPANDED_ALIASES;
1037sub expand_one_alias {
1038 my $alias = shift;
1039 if ($EXPANDED_ALIASES{$alias}) {
3c5cd20c 1040 die sprintf(__("fatal: alias '%s' expands to itself\n"), $alias);
302e04ea
JK
1041 }
1042 local $EXPANDED_ALIASES{$alias} = 1;
1043 return $aliases{$alias} ? expand_aliases(@{$aliases{$alias}}) : $alias;
994d6c66
EW
1044}
1045
b5e112d8
RL
1046@initial_to = process_address_list(@initial_to);
1047@initial_cc = process_address_list(@initial_cc);
e60f6d13 1048@initial_bcc = process_address_list(@initial_bcc);
994d6c66 1049
15dc3b91
CL
1050if ($thread && !defined $initial_in_reply_to && $prompting) {
1051 $initial_in_reply_to = ask(
a4dde4c4 1052 __("Message-ID to be used as In-Reply-To for the first email (if any)? "),
61837493 1053 default => "",
51bbccfd 1054 valid_re => qr/\@.*\./, confirm_only => 1);
83b24437 1055}
15dc3b91
CL
1056if (defined $initial_in_reply_to) {
1057 $initial_in_reply_to =~ s/^\s*<?//;
1058 $initial_in_reply_to =~ s/>?\s*$//;
1059 $initial_in_reply_to = "<$initial_in_reply_to>" if $initial_in_reply_to ne '';
ace9c2a9 1060}
ace72086 1061
d11c943c
CL
1062if (defined $reply_to) {
1063 $reply_to =~ s/^\s+|\s+$//g;
1064 ($reply_to) = expand_aliases($reply_to);
1065 $reply_to = sanitize_address($reply_to);
ace9c2a9 1066}
ace72086 1067
cd5b33fb 1068if (!defined $sendmail_cmd && !defined $smtp_server) {
1ab2fd4f
FK
1069 my @sendmail_paths = qw( /usr/sbin/sendmail /usr/lib/sendmail );
1070 push @sendmail_paths, map {"$_/sendmail"} split /:/, $ENV{PATH};
1071 foreach (@sendmail_paths) {
aca7ad76 1072 if (-x $_) {
cd5b33fb 1073 $sendmail_cmd = $_;
aca7ad76
EW
1074 last;
1075 }
1076 }
cd5b33fb
GA
1077
1078 if (!defined $sendmail_cmd) {
1079 $smtp_server = 'localhost'; # could be 127.0.0.1, too... *shrug*
1080 }
3342d850
RA
1081}
1082
c1f2aa45
JS
1083if ($compose && $compose > 0) {
1084 @files = ($compose_filename . ".final", @files);
1f038a0c
RA
1085}
1086
83b24437 1087# Variables we set as part of the loop over files
15dc3b91 1088our ($message_id, %mail, $subject, $in_reply_to, $references, $message,
dc1460aa 1089 $needs_confirm, $message_num, $ask_default);
83b24437 1090
567ffeb7
EW
1091sub extract_valid_address {
1092 my $address = shift;
35b6ab95
ÆAB
1093 my $local_part_regexp = qr/[^<>"\s@]+/;
1094 my $domain_regexp = qr/[^.<>"\s@]+(?:\.[^.<>"\s@]+)+/;
db3106b2
EW
1095
1096 # check for a local address:
ad9c18f5 1097 return $address if ($address =~ /^($local_part_regexp)$/);
db3106b2 1098
155197e6 1099 $address =~ s/^\s*<(.*)>\s*$/$1/;
f4dc9432 1100 my $have_email_valid = eval { require Email::Valid; 1 };
567ffeb7 1101 if ($have_email_valid) {
ad9c18f5 1102 return scalar Email::Valid->address($address);
567ffeb7 1103 }
95c0d4b6
KM
1104
1105 # less robust/correct than the monster regexp in Email::Valid,
1106 # but still does a 99% job, and one less dependency
1107 return $1 if $address =~ /($local_part_regexp\@$domain_regexp)/;
622bc930 1108 return;
567ffeb7 1109}
83b24437 1110
e4312255
KM
1111sub extract_valid_address_or_die {
1112 my $address = shift;
1113 $address = extract_valid_address($address);
3c5cd20c 1114 die sprintf(__("error: unable to extract a valid address from: %s\n"), $address)
e4312255
KM
1115 if !$address;
1116 return $address;
1117}
1118
1119sub validate_address {
1120 my $address = shift;
d0e98107 1121 while (!extract_valid_address($address)) {
3c5cd20c 1122 printf STDERR __("error: unable to extract a valid address from: %s\n"), $address;
a4dde4c4
VA
1123 # TRANSLATORS: Make sure to include [q] [d] [e] in your
1124 # translation. The program will only accept English input
1125 # at this point.
1126 $_ = ask(__("What to do with this address? ([q]uit|[d]rop|[e]dit): "),
d0e98107 1127 valid_re => qr/^(?:quit|q|drop|d|edit|e)/i,
5c80afed
KM
1128 default => 'q');
1129 if (/^d/i) {
1130 return undef;
1131 } elsif (/^q/i) {
1132 cleanup_compose_files();
1133 exit(0);
1134 }
0d6b21e7 1135 $address = ask("$to_whom ",
d0e98107
KM
1136 default => "",
1137 valid_re => qr/\@.*\./, confirm_only => 1);
e4312255
KM
1138 }
1139 return $address;
1140}
1141
1142sub validate_address_list {
1143 return (grep { defined $_ }
1144 map { validate_address($_) } @_);
567ffeb7 1145}
83b24437
RA
1146
1147# Usually don't need to change anything below here.
1148
1149# we make a "fake" message id by taking the current number
1150# of seconds since the beginning of Unix time and tacking on
1151# a random number to the end, in case we are called quicker than
1152# 1 second since the last time we were called.
8037d1a3
RA
1153
1154# We'll setup a template for the message id, using the "from" address:
8037d1a3 1155
be510cfe 1156my ($message_id_stamp, $message_id_serial);
68ce9330 1157sub make_message_id {
be510cfe
JH
1158 my $uniq;
1159 if (!defined $message_id_stamp) {
f4dc9432
ÆAB
1160 require POSIX;
1161 $message_id_stamp = POSIX::strftime("%Y%m%d%H%M%S.$$", gmtime(time));
be510cfe
JH
1162 $message_id_serial = 0;
1163 }
1164 $message_id_serial++;
1165 $uniq = "$message_id_stamp-$message_id_serial";
1166
aeb59328 1167 my $du_part;
fef381e6 1168 for ($sender, $repocommitter->(), $repoauthor->()) {
94638f89
UKK
1169 $du_part = extract_valid_address(sanitize_address($_));
1170 last if (defined $du_part and $du_part ne '');
aeb59328 1171 }
94638f89 1172 if (not defined $du_part or $du_part eq '') {
529dd386 1173 require Sys::Hostname;
aeb59328
JH
1174 $du_part = 'user@' . Sys::Hostname::hostname();
1175 }
f916ab0c 1176 my $message_id_template = "<%s-%s>";
be510cfe 1177 $message_id = sprintf($message_id_template, $uniq, $du_part);
8037d1a3 1178 #print "new message id = $message_id\n"; # Was useful for debugging
83b24437
RA
1179}
1180
1181
1182
a5370b16 1183$time = time - scalar $#files;
83b24437 1184
374c5905
JR
1185sub unquote_rfc2047 {
1186 local ($_) = @_;
11f70a7e 1187 my $charset;
ab47e2a5
РД
1188 my $sep = qr/[ \t]+/;
1189 s{$re_encoded_word(?:$sep$re_encoded_word)*}{
1190 my @words = split $sep, $&;
1191 foreach (@words) {
1192 m/$re_encoded_word/;
1193 $charset = $1;
1194 my $encoding = $2;
1195 my $text = $3;
1196 if ($encoding eq 'q' || $encoding eq 'Q') {
1197 $_ = $text;
1198 s/_/ /g;
1199 s/=([0-9A-F]{2})/chr(hex($1))/egi;
1200 } else {
1201 # other encodings not supported yet
1202 }
11f70a7e 1203 }
ab47e2a5 1204 join '', @words;
b622d4d1 1205 }eg;
11f70a7e 1206 return wantarray ? ($_, $charset) : $_;
374c5905
JR
1207}
1208
d54eaaa2
JK
1209sub quote_rfc2047 {
1210 local $_ = shift;
d1fff6fc 1211 my $encoding = shift || 'UTF-8';
d54eaaa2
JK
1212 s/([^-a-zA-Z0-9!*+\/])/sprintf("=%02X", ord($1))/eg;
1213 s/(.*)/=\?$encoding\?q\?$1\?=/;
1214 return $_;
1215}
1216
a3a8262b
BC
1217sub is_rfc2047_quoted {
1218 my $s = shift;
a3a8262b 1219 length($s) <= 75 &&
11f70a7e 1220 $s =~ m/^(?:"[[:ascii:]]*"|$re_encoded_word)$/o;
a3a8262b
BC
1221}
1222
ce547800
KM
1223sub subject_needs_rfc2047_quoting {
1224 my $s = shift;
1225
ce1459f7 1226 return ($s =~ /[^[:ascii:]]/) || ($s =~ /=\?/);
ce547800
KM
1227}
1228
1229sub quote_subject {
1230 local $subject = shift;
1231 my $encoding = shift || 'UTF-8';
1232
1233 if (subject_needs_rfc2047_quoting($subject)) {
1234 return quote_rfc2047($subject, $encoding);
1235 }
1236 return $subject;
1237}
1238
5b56aaa2 1239# use the simplest quoting being able to handle the recipient
68ce9330 1240sub sanitize_address {
732263d4 1241 my ($recipient) = @_;
831a488b
KM
1242
1243 # remove garbage after email address
1244 $recipient =~ s/(.*>).*$/$1/;
1245
5b56aaa2
UKK
1246 my ($recipient_name, $recipient_addr) = ($recipient =~ /^(.*?)\s*(<.*)/);
1247
1248 if (not $recipient_name) {
ff483897 1249 return $recipient;
5b56aaa2
UKK
1250 }
1251
1252 # if recipient_name is already quoted, do nothing
a3a8262b 1253 if (is_rfc2047_quoted($recipient_name)) {
5b56aaa2
UKK
1254 return $recipient;
1255 }
1256
1fe9703f
RL
1257 # remove non-escaped quotes
1258 $recipient_name =~ s/(^|[^\\])"/$1/g;
1259
5b56aaa2
UKK
1260 # rfc2047 is needed if a non-ascii char is included
1261 if ($recipient_name =~ /[^[:ascii:]]/) {
d54eaaa2 1262 $recipient_name = quote_rfc2047($recipient_name);
732263d4 1263 }
5b56aaa2
UKK
1264
1265 # double quotes are needed if specials or CTLs are included
1266 elsif ($recipient_name =~ /[][()<>@,;:\\".\000-\037\177]/) {
1fe9703f 1267 $recipient_name =~ s/([\\\r])/\\$1/g;
d5c7d69d 1268 $recipient_name = qq["$recipient_name"];
5b56aaa2
UKK
1269 }
1270
1271 return "$recipient_name $recipient_addr";
1272
732263d4
RJ
1273}
1274
cb2922fe
MM
1275sub strip_garbage_one_address {
1276 my ($addr) = @_;
1277 chomp $addr;
1278 if ($addr =~ /^(("[^"]*"|[^"<]*)? *<[^>]*>).*/) {
1279 # "Foo Bar" <foobar@example.com> [possibly garbage here]
1280 # Foo Bar <foobar@example.com> [possibly garbage here]
1281 return $1;
1282 }
1283 if ($addr =~ /^(<[^>]*>).*/) {
1284 # <foo@example.com> [possibly garbage here]
1285 # if garbage contains other addresses, they are ignored.
1286 return $1;
1287 }
1288 if ($addr =~ /^([^"#,\s]*)/) {
1289 # address without quoting: remove anything after the address
1290 return $1;
1291 }
1292 return $addr;
1293}
1294
e4312255
KM
1295sub sanitize_address_list {
1296 return (map { sanitize_address($_) } @_);
1297}
1298
b5e112d8 1299sub process_address_list {
b1c8a11c
RL
1300 my @addr_list = map { parse_address_line($_) } @_;
1301 @addr_list = expand_aliases(@addr_list);
b5e112d8
RL
1302 @addr_list = sanitize_address_list(@addr_list);
1303 @addr_list = validate_address_list(@addr_list);
1304 return @addr_list;
1305}
1306
134550fe
JA
1307# Returns the local Fully Qualified Domain Name (FQDN) if available.
1308#
1309# Tightly configured MTAa require that a caller sends a real DNS
1310# domain name that corresponds the IP address in the HELO/EHLO
1311# handshake. This is used to verify the connection and prevent
1312# spammers from trying to hide their identity. If the DNS and IP don't
15beaaa3 1313# match, the receiving MTA may deny the connection.
134550fe
JA
1314#
1315# Here is a deny example of Net::SMTP with the default "localhost.localdomain"
1316#
1317# Net::SMTP=GLOB(0x267ec28)>>> EHLO localhost.localdomain
1318# Net::SMTP=GLOB(0x267ec28)<<< 550 EHLO argument does not match calling host
1319#
1320# This maildomain*() code is based on ideas in Perl library Test::Reporter
1321# /usr/share/perl5/Test/Reporter/Mail/Util.pm ==> sub _maildomain ()
1322
59a86303
BG
1323sub valid_fqdn {
1324 my $domain = shift;
61ef5e9b 1325 return defined $domain && !($^O eq 'darwin' && $domain =~ /\.local$/) && $domain =~ /\./;
59a86303
BG
1326}
1327
68ce9330 1328sub maildomain_net {
134550fe
JA
1329 my $maildomain;
1330
f4dc9432 1331 require Net::Domain;
1046c118
ÆAB
1332 my $domain = Net::Domain::domainname();
1333 $maildomain = $domain if valid_fqdn($domain);
134550fe
JA
1334
1335 return $maildomain;
1336}
1337
68ce9330 1338sub maildomain_mta {
134550fe
JA
1339 my $maildomain;
1340
1046c118 1341 for my $host (qw(mailhost localhost)) {
f4dc9432 1342 require Net::SMTP;
1046c118
ÆAB
1343 my $smtp = Net::SMTP->new($host);
1344 if (defined $smtp) {
1345 my $domain = $smtp->domain;
1346 $smtp->quit;
134550fe 1347
1046c118 1348 $maildomain = $domain if valid_fqdn($domain);
134550fe 1349
1046c118 1350 last if $maildomain;
134550fe
JA
1351 }
1352 }
1353
1354 return $maildomain;
1355}
1356
68ce9330 1357sub maildomain {
69cf7bfd 1358 return maildomain_net() || maildomain_mta() || 'localhost.localdomain';
134550fe
JA
1359}
1360
4d31a44a
MN
1361sub smtp_host_string {
1362 if (defined $smtp_server_port) {
1363 return "$smtp_server:$smtp_server_port";
1364 } else {
1365 return $smtp_server;
1366 }
1367}
1368
1369# Returns 1 if authentication succeeded or was not necessary
1370# (smtp_user was not specified), and 0 otherwise.
1371
1372sub smtp_auth_maybe {
8dd9b3f8 1373 if (!defined $smtp_authuser || $auth || (defined $smtp_auth && $smtp_auth eq "none")) {
4d31a44a
MN
1374 return 1;
1375 }
1376
1377 # Workaround AUTH PLAIN/LOGIN interaction defect
1378 # with Authen::SASL::Cyrus
1379 eval {
1380 require Authen::SASL;
1381 Authen::SASL->import(qw(Perl));
1382 };
1383
0f2e68b5
JV
1384 # Check mechanism naming as defined in:
1385 # https://tools.ietf.org/html/rfc4422#page-8
904f6e7c 1386 if ($smtp_auth && $smtp_auth !~ /^(\b[A-Z0-9-_]{1,20}\s*)*$/) {
0f2e68b5
JV
1387 die "invalid smtp auth: '${smtp_auth}'";
1388 }
1389
4d31a44a
MN
1390 # TODO: Authentication may fail not because credentials were
1391 # invalid but due to other reasons, in which we should not
1392 # reject credentials.
1393 $auth = Git::credential({
1394 'protocol' => 'smtp',
1395 'host' => smtp_host_string(),
1396 'username' => $smtp_authuser,
1397 # if there's no password, "git credential fill" will
1398 # give us one, otherwise it'll just pass this one.
1399 'password' => $smtp_authpass
1400 }, sub {
1401 my $cred = shift;
0f2e68b5
JV
1402
1403 if ($smtp_auth) {
1404 my $sasl = Authen::SASL->new(
1405 mechanism => $smtp_auth,
1406 callback => {
1407 user => $cred->{'username'},
1408 pass => $cred->{'password'},
1409 authname => $cred->{'username'},
1410 }
1411 );
1412
1413 return !!$smtp->auth($sasl);
1414 }
1415
4d31a44a
MN
1416 return !!$smtp->auth($cred->{'username'}, $cred->{'password'});
1417 });
1418
1419 return $auth;
1420}
1421
35035bbf
RR
1422sub ssl_verify_params {
1423 eval {
1424 require IO::Socket::SSL;
1425 IO::Socket::SSL->import(qw/SSL_VERIFY_PEER SSL_VERIFY_NONE/);
1426 };
1427 if ($@) {
1428 print STDERR "Not using SSL_VERIFY_PEER due to out-of-date IO::Socket::SSL.\n";
1429 return;
1430 }
1431
1432 if (!defined $smtp_ssl_cert_path) {
01645b74
RK
1433 # use the OpenSSL defaults
1434 return (SSL_verify_mode => SSL_VERIFY_PEER());
35035bbf
RR
1435 }
1436
1437 if ($smtp_ssl_cert_path eq "") {
1438 return (SSL_verify_mode => SSL_VERIFY_NONE());
1439 } elsif (-d $smtp_ssl_cert_path) {
1440 return (SSL_verify_mode => SSL_VERIFY_PEER(),
1441 SSL_ca_path => $smtp_ssl_cert_path);
1442 } elsif (-f $smtp_ssl_cert_path) {
1443 return (SSL_verify_mode => SSL_VERIFY_PEER(),
1444 SSL_ca_file => $smtp_ssl_cert_path);
1445 } else {
3c5cd20c 1446 die sprintf(__("CA path \"%s\" does not exist"), $smtp_ssl_cert_path);
35035bbf
RR
1447 }
1448}
1449
cb005c1f
EFL
1450sub file_name_is_absolute {
1451 my ($path) = @_;
1452
1453 # msys does not grok DOS drive-prefixes
1454 if ($^O eq 'msys') {
f24ecf59 1455 return ($path =~ m#^/# || $path =~ m#^[a-zA-Z]\:#)
cb005c1f
EFL
1456 }
1457
1458 require File::Spec::Functions;
1459 return File::Spec::Functions::file_name_is_absolute($path);
1460}
1461
04c4a4e8
DD
1462# Prepares the email, then asks the user what to do.
1463#
1464# If the user chooses to send the email, it's sent and 1 is returned.
1465# If the user chooses not to send the email, 0 is returned.
1466# If the user decides they want to make further edits, -1 is returned and the
1467# caller is expected to call send_message again after the edits are performed.
1468#
1469# If an error occurs sending the email, this just dies.
15da1084 1470
68ce9330 1471sub send_message {
4bc87a28 1472 my @recipients = unique_email_list(@to);
e4312255 1473 @cc = (grep { my $cc = extract_valid_address_or_die($_);
83acaaec 1474 not grep { $cc eq $_ || $_ =~ /<\Q${cc}\E>$/ } @recipients
7ac17529 1475 }
7ac17529 1476 @cc);
4bc87a28 1477 my $to = join (",\n\t", @recipients);
e60f6d13 1478 @recipients = unique_email_list(@recipients,@cc,@initial_bcc);
e4312255 1479 @recipients = (map { extract_valid_address_or_die($_) } @recipients);
6bdca890 1480 my $date = format_2822_time($time++);
e923effb
ML
1481 my $gitversion = '@@GIT_VERSION@@';
1482 if ($gitversion =~ m/..GIT_VERSION../) {
3cb8caf7 1483 $gitversion = Git::version();
e923effb 1484 }
4bc87a28 1485
02461e0e 1486 my $cc = join(",\n\t", unique_email_list(@cc));
f06a6a49
JH
1487 my $ccline = "";
1488 if ($cc ne '') {
1489 $ccline = "\nCc: $cc";
1490 }
4f3d3703 1491 make_message_id() unless defined($message_id);
aeb59328 1492
da18759e 1493 my $header = "From: $sender
f06a6a49 1494To: $to${ccline}
4bc87a28 1495Subject: $subject
4bc87a28
EW
1496Date: $date
1497Message-Id: $message_id
4bc87a28 1498";
ac1596a6
LH
1499 if ($use_xmailer) {
1500 $header .= "X-Mailer: git-send-email $gitversion\n";
1501 }
15dc3b91 1502 if ($in_reply_to) {
7ccf7927 1503
15dc3b91 1504 $header .= "In-Reply-To: $in_reply_to\n";
7ccf7927
RA
1505 $header .= "References: $references\n";
1506 }
d11c943c
CL
1507 if ($reply_to) {
1508 $header .= "Reply-To: $reply_to\n";
1509 }
ce91c2f6
JH
1510 if (@xh) {
1511 $header .= join("\n", @xh) . "\n";
1512 }
4bc87a28 1513
c38f0247 1514 my @sendmail_parameters = ('-i', @recipients);
da18759e 1515 my $raw_from = $sender;
c89e3241
FC
1516 if (defined $envelope_sender && $envelope_sender ne "auto") {
1517 $raw_from = $envelope_sender;
1518 }
f073a592
RJ
1519 $raw_from = extract_valid_address($raw_from);
1520 unshift (@sendmail_parameters,
1521 '-f', $raw_from) if(defined $envelope_sender);
8e3d436b 1522
c1f2aa45
JS
1523 if ($needs_confirm && !$dry_run) {
1524 print "\n$header\n";
1525 if ($needs_confirm eq "inform") {
1526 $confirm_unconfigured = 0; # squelch this message for the rest of this run
6e182518 1527 $ask_default = "y"; # assume yes on EOF since user hasn't explicitly asked for confirmation
a4dde4c4
VA
1528 print __ <<EOF ;
1529 The Cc list above has been expanded by additional
1530 addresses found in the patch commit message. By default
1531 send-email prompts before sending whenever this occurs.
1532 This behavior is controlled by the sendemail.confirm
1533 configuration setting.
1534
1535 For additional information, run 'git send-email --help'.
1536 To retain the current behavior, but squelch this message,
1537 run 'git config --global sendemail.confirm auto'.
1538
1539EOF
c1f2aa45 1540 }
04c4a4e8 1541 # TRANSLATORS: Make sure to include [y] [n] [e] [q] [a] in your
a4dde4c4
VA
1542 # translation. The program will only accept English input
1543 # at this point.
04c4a4e8
DD
1544 $_ = ask(__("Send this email? ([y]es|[n]o|[e]dit|[q]uit|[a]ll): "),
1545 valid_re => qr/^(?:yes|y|no|n|edit|e|quit|q|all|a)/i,
6e182518 1546 default => $ask_default);
46493105 1547 die __("Send this email reply required") unless defined $_;
c1f2aa45 1548 if (/^n/i) {
15da1084 1549 return 0;
04c4a4e8
DD
1550 } elsif (/^e/i) {
1551 return -1;
c1f2aa45
JS
1552 } elsif (/^q/i) {
1553 cleanup_compose_files();
1554 exit(0);
1555 } elsif (/^a/i) {
1556 $confirm = 'never';
1557 }
1558 }
1559
052fbea2
PO
1560 unshift (@sendmail_parameters, @smtp_server_options);
1561
6130259c
MW
1562 if ($dry_run) {
1563 # We don't want to send the email.
cd5b33fb 1564 } elsif (defined $sendmail_cmd || file_name_is_absolute($smtp_server)) {
aca7ad76
EW
1565 my $pid = open my $sm, '|-';
1566 defined $pid or die $!;
1567 if (!$pid) {
cd5b33fb
GA
1568 if (defined $sendmail_cmd) {
1569 exec ("sh", "-c", "$sendmail_cmd \"\$@\"", "-", @sendmail_parameters)
1570 or die $!;
1571 } else {
1572 exec ($smtp_server, @sendmail_parameters)
1573 or die $!;
1574 }
aca7ad76
EW
1575 }
1576 print $sm "$header\n$message";
5e2c2ab1 1577 close $sm or die $!;
aca7ad76 1578 } else {
44b2476a
JH
1579
1580 if (!defined $smtp_server) {
46493105 1581 die __("The required SMTP server is not properly defined.")
44b2476a
JH
1582 }
1583
0ead000c 1584 require Net::SMTP;
bfbfc9a9 1585 my $use_net_smtp_ssl = version->parse($Net::SMTP::VERSION) < version->parse("2.34");
0ead000c
DK
1586 $smtp_domain ||= maildomain();
1587
f6bebd12 1588 if ($smtp_encryption eq 'ssl') {
44b2476a 1589 $smtp_server_port ||= 465; # ssmtp
5508f3ed 1590 require IO::Socket::SSL;
9d605249
JK
1591
1592 # Suppress "variable accessed once" warning.
1593 {
1594 no warnings 'once';
1595 $IO::Socket::SSL::DEBUG = 1;
1596 }
1597
5508f3ed
TR
1598 # Net::SMTP::SSL->new() does not forward any SSL options
1599 IO::Socket::SSL::set_client_defaults(
1600 ssl_verify_params());
0ead000c
DK
1601
1602 if ($use_net_smtp_ssl) {
1603 require Net::SMTP::SSL;
1604 $smtp ||= Net::SMTP::SSL->new($smtp_server,
1605 Hello => $smtp_domain,
1606 Port => $smtp_server_port,
1607 Debug => $debug_net_smtp);
1608 }
1609 else {
1610 $smtp ||= Net::SMTP->new($smtp_server,
1611 Hello => $smtp_domain,
1612 Port => $smtp_server_port,
1613 Debug => $debug_net_smtp,
1614 SSL => 1);
1615 }
34cc60ce 1616 }
636f3d7a 1617 elsif (!$smtp) {
1a741bf7 1618 $smtp_server_port ||= 25;
1619 $smtp ||= Net::SMTP->new($smtp_server,
69cf7bfd 1620 Hello => $smtp_domain,
1a741bf7 1621 Debug => $debug_net_smtp,
1622 Port => $smtp_server_port);
fb3650ed 1623 if ($smtp_encryption eq 'tls' && $smtp) {
0ead000c
DK
1624 if ($use_net_smtp_ssl) {
1625 $smtp->command('STARTTLS');
1626 $smtp->response();
1627 if ($smtp->code != 220) {
1628 die sprintf(__("Server does not support STARTTLS! %s"), $smtp->message);
1629 }
1630 require Net::SMTP::SSL;
35035bbf
RR
1631 $smtp = Net::SMTP::SSL->start_SSL($smtp,
1632 ssl_verify_params())
0ead000c
DK
1633 or die sprintf(__("STARTTLS failed! %s"), IO::Socket::SSL::errstr());
1634 }
1635 else {
1636 $smtp->starttls(ssl_verify_params())
1637 or die sprintf(__("STARTTLS failed! %s"), IO::Socket::SSL::errstr());
f6bebd12 1638 }
0ead000c
DK
1639 # Send EHLO again to receive fresh
1640 # supported commands
1641 $smtp->hello($smtp_domain);
f6bebd12 1642 }
44b2476a
JH
1643 }
1644
1645 if (!$smtp) {
3c5cd20c
VA
1646 die __("Unable to initialize SMTP properly. Check config and use --smtp-debug."),
1647 " VALUES: server=$smtp_server ",
e5afb3a6 1648 "encryption=$smtp_encryption ",
69cf7bfd 1649 "hello=$smtp_domain",
a1dd7e16 1650 defined $smtp_server_port ? " port=$smtp_server_port" : "";
44b2476a
JH
1651 }
1652
4d31a44a 1653 smtp_auth_maybe or die $smtp->message;
2363d746 1654
2b69bfc2 1655 $smtp->mail( $raw_from ) or die $smtp->message;
aca7ad76
EW
1656 $smtp->to( @recipients ) or die $smtp->message;
1657 $smtp->data or die $smtp->message;
f60c483d
SA
1658 $smtp->datasend("$header\n") or die $smtp->message;
1659 my @lines = split /^/, $message;
1660 foreach my $line (@lines) {
1661 $smtp->datasend("$line") or die $smtp->message;
1662 }
aca7ad76 1663 $smtp->dataend() or die $smtp->message;
3c5cd20c 1664 $smtp->code =~ /250|200/ or die sprintf(__("Failed to send %s\n"), $subject).$smtp->message;
aca7ad76 1665 }
2718435b 1666 if ($quiet) {
3c5cd20c 1667 printf($dry_run ? __("Dry-Sent %s\n") : __("Sent %s\n"), $subject);
2718435b 1668 } else {
a4dde4c4 1669 print($dry_run ? __("Dry-OK. Log says:\n") : __("OK. Log says:\n"));
cd5b33fb 1670 if (!defined $sendmail_cmd && !file_name_is_absolute($smtp_server)) {
aca7ad76 1671 print "Server: $smtp_server\n";
2b69bfc2 1672 print "MAIL FROM:<$raw_from>\n";
02461e0e
JP
1673 foreach my $entry (@recipients) {
1674 print "RCPT TO:<$entry>\n";
1675 }
aca7ad76 1676 } else {
cd5b33fb
GA
1677 my $sm;
1678 if (defined $sendmail_cmd) {
1679 $sm = $sendmail_cmd;
1680 } else {
1681 $sm = $smtp_server;
1682 }
1683
1684 print "Sendmail: $sm ".join(' ',@sendmail_parameters)."\n";
aca7ad76 1685 }
b7f30e0a 1686 print $header, "\n";
aca7ad76 1687 if ($smtp) {
46493105 1688 print __("Result: "), $smtp->code, ' ',
aca7ad76
EW
1689 ($smtp->message =~ /\n([^\n]+\n)$/s), "\n";
1690 } else {
46493105 1691 print __("Result: OK\n");
aca7ad76 1692 }
30d08b34 1693 }
15da1084
MW
1694
1695 return 1;
83b24437
RA
1696}
1697
15dc3b91
CL
1698$in_reply_to = $initial_in_reply_to;
1699$references = $initial_in_reply_to || '';
83b24437 1700$subject = $initial_subject;
c1f2aa45 1701$message_num = 0;
83b24437 1702
04c4a4e8
DD
1703# Prepares the email, prompts the user, sends it out
1704# Returns 0 if an edit was done and the function should be called again, or 1
1705# otherwise.
1706sub process_file {
1707 my ($t) = @_;
1708
3c5cd20c 1709 open my $fh, "<", $t or die sprintf(__("can't open file %s"), $t);
83b24437 1710
94638f89 1711 my $author = undef;
4cb46bdd 1712 my $sauthor = undef;
8291db6f
JK
1713 my $author_encoding;
1714 my $has_content_type;
1715 my $body_encoding;
bb29456c
PB
1716 my $xfer_encoding;
1717 my $has_mime_version;
3c3bb51c 1718 @to = ();
c1f2aa45 1719 @cc = ();
ce91c2f6 1720 @xh = ();
e6b0964a 1721 my $input_format = undef;
5012699d 1722 my @header = ();
83b24437 1723 $message = "";
c1f2aa45 1724 $message_num++;
5012699d 1725 # First unfold multiline header fields
f9237e61 1726 while(<$fh>) {
5012699d
JS
1727 last if /^\s*$/;
1728 if (/^\s+\S/ and @header) {
1729 chomp($header[$#header]);
1730 s/^\s+/ /;
1731 $header[$#header] .= $_;
1732 } else {
1733 push(@header, $_);
1734 }
1735 }
1736 # Now parse the header
1737 foreach(@header) {
1738 if (/^From /) {
1739 $input_format = 'mbox';
1740 next;
1741 }
1742 chomp;
1743 if (!defined $input_format && /^[-A-Za-z]+:\s/) {
1744 $input_format = 'mbox';
1745 }
1746
1747 if (defined $input_format && $input_format eq 'mbox') {
6310071a 1748 if (/^Subject:\s+(.*)$/i) {
5012699d 1749 $subject = $1;
e6b0964a 1750 }
6310071a 1751 elsif (/^From:\s+(.*)$/i) {
5012699d 1752 ($author, $author_encoding) = unquote_rfc2047($1);
4cb46bdd 1753 $sauthor = sanitize_address($author);
5012699d 1754 next if $suppress_cc{'author'};
da18759e 1755 next if $suppress_cc{'self'} and $sauthor eq $sender;
a4dde4c4 1756 printf(__("(mbox) Adding cc: %s from line '%s'\n"),
5012699d
JS
1757 $1, $_) unless $quiet;
1758 push @cc, $1;
e6b0964a 1759 }
6310071a 1760 elsif (/^To:\s+(.*)$/i) {
21802cd3 1761 foreach my $addr (parse_address_line($1)) {
a4dde4c4 1762 printf(__("(mbox) Adding to: %s from line '%s'\n"),
21802cd3 1763 $addr, $_) unless $quiet;
e4312255 1764 push @to, $addr;
21802cd3
SB
1765 }
1766 }
6310071a 1767 elsif (/^Cc:\s+(.*)$/i) {
5012699d 1768 foreach my $addr (parse_address_line($1)) {
da18759e
MT
1769 my $qaddr = unquote_rfc2047($addr);
1770 my $saddr = sanitize_address($qaddr);
1771 if ($saddr eq $sender) {
65648283 1772 next if ($suppress_cc{'self'});
65648283
DB
1773 } else {
1774 next if ($suppress_cc{'cc'});
8a8e6235 1775 }
a4dde4c4 1776 printf(__("(mbox) Adding cc: %s from line '%s'\n"),
5012699d
JS
1777 $addr, $_) unless $quiet;
1778 push @cc, $addr;
83b24437 1779 }
5012699d
JS
1780 }
1781 elsif (/^Content-type:/i) {
1782 $has_content_type = 1;
1783 if (/charset="?([^ "]+)/) {
1784 $body_encoding = $1;
83b24437 1785 }
5012699d 1786 push @xh, $_;
83b24437 1787 }
bb29456c
PB
1788 elsif (/^MIME-Version/i) {
1789 $has_mime_version = 1;
1790 push @xh, $_;
1791 }
5012699d
JS
1792 elsif (/^Message-Id: (.*)/i) {
1793 $message_id = $1;
83b24437 1794 }
bb29456c
PB
1795 elsif (/^Content-Transfer-Encoding: (.*)/i) {
1796 $xfer_encoding = $1 if not defined $xfer_encoding;
1797 }
256be1d3 1798 elsif (/^In-Reply-To: (.*)/i) {
f9f60d70
RA
1799 if (!$initial_in_reply_to || $thread) {
1800 $in_reply_to = $1;
1801 }
256be1d3
SA
1802 }
1803 elsif (/^References: (.*)/i) {
f9f60d70
RA
1804 if (!$initial_in_reply_to || $thread) {
1805 $references = $1;
1806 }
256be1d3 1807 }
6310071a 1808 elsif (!/^Date:\s/i && /^[-A-Za-z]+:\s+\S/) {
5012699d
JS
1809 push @xh, $_;
1810 }
83b24437 1811 } else {
5012699d
JS
1812 # In the traditional
1813 # "send lots of email" format,
1814 # line 1 = cc
1815 # line 2 = subject
1816 # So let's support that, too.
1817 $input_format = 'lots';
1818 if (@cc == 0 && !$suppress_cc{'cc'}) {
a4dde4c4 1819 printf(__("(non-mbox) Adding cc: %s from line '%s'\n"),
5012699d
JS
1820 $_, $_) unless $quiet;
1821 push @cc, $_;
1822 } elsif (!defined $subject) {
1823 $subject = $_;
83b24437
RA
1824 }
1825 }
1826 }
5012699d 1827 # Now parse the message body
f9237e61 1828 while(<$fh>) {
5012699d 1829 $message .= $_;
9c545816 1830 if (/^([a-z][a-z-]*-by|Cc): (.*)/i) {
5012699d 1831 chomp;
3531e270 1832 my ($what, $c) = ($1, $2);
cb2922fe
MM
1833 # strip garbage for the address we'll use:
1834 $c = strip_garbage_one_address($c);
1835 # sanitize a bit more to decide whether to suppress the address:
da18759e
MT
1836 my $sc = sanitize_address($c);
1837 if ($sc eq $sender) {
3531e270
JS
1838 next if ($suppress_cc{'self'});
1839 } else {
ef0cc1df
RV
1840 if ($what =~ /^Signed-off-by$/i) {
1841 next if $suppress_cc{'sob'};
1842 } elsif ($what =~ /-by$/i) {
1843 next if $suppress_cc{'misc-by'};
1844 } elsif ($what =~ /Cc/i) {
1845 next if $suppress_cc{'bodycc'};
1846 }
3531e270 1847 }
fb34fe6a
RV
1848 if ($c !~ /.+@.+|<.+>/) {
1849 printf("(body) Ignoring %s from line '%s'\n",
1850 $what, $_) unless $quiet;
1851 next;
1852 }
5012699d 1853 push @cc, $c;
a4dde4c4 1854 printf(__("(body) Adding cc: %s from line '%s'\n"),
5012699d
JS
1855 $c, $_) unless $quiet;
1856 }
1857 }
f9237e61 1858 close $fh;
324a8bd0 1859
6e74e075
JP
1860 push @to, recipients_cmd("to-cmd", "to", $to_cmd, $t)
1861 if defined $to_cmd;
1862 push @cc, recipients_cmd("cc-cmd", "cc", $cc_cmd, $t)
1863 if defined $cc_cmd && !$suppress_cc{'cccmd'};
324a8bd0 1864
3cae7e5b 1865 if ($broken_encoding{$t} && !$has_content_type) {
bb29456c 1866 $xfer_encoding = '8bit' if not defined $xfer_encoding;
3cae7e5b 1867 $has_content_type = 1;
bb29456c 1868 push @xh, "Content-Type: text/plain; charset=$auto_8bit_encoding";
3cae7e5b
TR
1869 $body_encoding = $auto_8bit_encoding;
1870 }
1871
ce547800
KM
1872 if ($broken_encoding{$t} && !is_rfc2047_quoted($subject)) {
1873 $subject = quote_subject($subject, $auto_8bit_encoding);
3cae7e5b
TR
1874 }
1875
4cb46bdd 1876 if (defined $sauthor and $sauthor ne $sender) {
94638f89 1877 $message = "From: $author\n\n$message";
8291db6f
JK
1878 if (defined $author_encoding) {
1879 if ($has_content_type) {
1880 if ($body_encoding eq $author_encoding) {
1881 # ok, we already have the right encoding
1882 }
1883 else {
1884 # uh oh, we should re-encode
1885 }
1886 }
1887 else {
bb29456c 1888 $xfer_encoding = '8bit' if not defined $xfer_encoding;
3cae7e5b 1889 $has_content_type = 1;
8291db6f 1890 push @xh,
bb29456c 1891 "Content-Type: text/plain; charset=$author_encoding";
8291db6f
JK
1892 }
1893 }
8a8e6235 1894 }
e67a228c 1895 $xfer_encoding = '8bit' if not defined $xfer_encoding;
1896 ($message, $xfer_encoding) = apply_transfer_encoding(
1897 $message, $xfer_encoding, $target_xfer_encoding);
1898 push @xh, "Content-Transfer-Encoding: $xfer_encoding";
1899 unshift @xh, 'MIME-Version: 1.0' unless $has_mime_version;
83b24437 1900
c1f2aa45
JS
1901 $needs_confirm = (
1902 $confirm eq "always" or
1903 ($confirm =~ /^(?:auto|cc)$/ && @cc) or
1904 ($confirm =~ /^(?:auto|compose)$/ && $compose && $message_num == 1));
1905 $needs_confirm = "inform" if ($needs_confirm && $confirm_unconfigured && @cc);
1906
b5e112d8
RL
1907 @to = process_address_list(@to);
1908 @cc = process_address_list(@cc);
e4312255 1909
3c3bb51c 1910 @to = (@initial_to, @to);
c1f2aa45
JS
1911 @cc = (@initial_cc, @cc);
1912
f515c904
MT
1913 if ($message_num == 1) {
1914 if (defined $cover_cc and $cover_cc) {
1915 @initial_cc = @cc;
1916 }
1917 if (defined $cover_to and $cover_to) {
1918 @initial_to = @to;
1919 }
1920 }
1921
15da1084 1922 my $message_was_sent = send_message();
04c4a4e8
DD
1923 if ($message_was_sent == -1) {
1924 do_edit($t);
1925 return 0;
1926 }
83b24437
RA
1927
1928 # set up for the next message
95a877a3 1929 if ($thread && $message_was_sent &&
15dc3b91 1930 ($chain_reply_to || !defined $in_reply_to || length($in_reply_to) == 0 ||
db54c8e7 1931 $message_num == 1)) {
15dc3b91 1932 $in_reply_to = $message_id;
7ccf7927 1933 if (length $references > 0) {
a925b89c 1934 $references .= "\n $message_id";
7ccf7927
RA
1935 } else {
1936 $references = "$message_id";
1937 }
78488b2c 1938 }
4f3d3703 1939 $message_id = undef;
5453b83b 1940 $num_sent++;
1941 if (defined $batch_size && $num_sent == $batch_size) {
1942 $num_sent = 0;
1943 $smtp->quit if defined $smtp;
1944 undef $smtp;
1945 undef $auth;
1946 sleep($relogin_delay) if defined $relogin_delay;
1947 }
04c4a4e8
DD
1948
1949 return 1;
1950}
1951
1952foreach my $t (@files) {
1953 while (!process_file($t)) {
1954 # user edited the file
1955 }
83b24437 1956}
e205735d 1957
6e74e075
JP
1958# Execute a command (e.g. $to_cmd) to get a list of email addresses
1959# and return a results array
1960sub recipients_cmd {
1961 my ($prefix, $what, $cmd, $file) = @_;
1962
6e74e075 1963 my @addresses = ();
a47eab03 1964 open my $fh, "-|", "$cmd \Q$file\E"
3c5cd20c 1965 or die sprintf(__("(%s) Could not execute '%s'"), $prefix, $cmd);
7ebee441 1966 while (my $address = <$fh>) {
6e74e075
JP
1967 $address =~ s/^\s*//g;
1968 $address =~ s/\s*$//g;
1969 $address = sanitize_address($address);
da18759e 1970 next if ($address eq $sender and $suppress_cc{'self'});
6e74e075 1971 push @addresses, $address;
3c5cd20c
VA
1972 printf(__("(%s) Adding %s: %s from: '%s'\n"),
1973 $prefix, $what, $address, $cmd) unless $quiet;
6e74e075 1974 }
7ebee441 1975 close $fh
3c5cd20c 1976 or die sprintf(__("(%s) failed to close pipe to '%s'"), $prefix, $cmd);
6e74e075
JP
1977 return @addresses;
1978}
1979
c1f2aa45 1980cleanup_compose_files();
1f038a0c 1981
4bf597ee 1982sub cleanup_compose_files {
c1f2aa45 1983 unlink($compose_filename, $compose_filename . ".final") if $compose;
1f038a0c
RA
1984}
1985
4bc87a28 1986$smtp->quit if $smtp;
e205735d 1987
8d814084
PB
1988sub apply_transfer_encoding {
1989 my $message = shift;
1990 my $from = shift;
1991 my $to = shift;
1992
3c88e46f 1993 return ($message, $to) if ($from eq $to and $from ne '7bit');
8d814084
PB
1994
1995 require MIME::QuotedPrint;
1996 require MIME::Base64;
1997
1998 $message = MIME::QuotedPrint::decode($message)
1999 if ($from eq 'quoted-printable');
2000 $message = MIME::Base64::decode($message)
2001 if ($from eq 'base64');
2002
74d76a17 2003 $to = ($message =~ /(?:.{999,}|\r)/) ? 'quoted-printable' : '8bit'
7a36987f 2004 if $to eq 'auto';
2005
46493105 2006 die __("cannot send message as 7bit")
8d814084 2007 if ($to eq '7bit' and $message =~ /[^[:ascii:]]/);
7a36987f 2008 return ($message, $to)
8d814084 2009 if ($to eq '7bit' or $to eq '8bit');
7a36987f 2010 return (MIME::QuotedPrint::encode($message, "\n", 0), $to)
8d814084 2011 if ($to eq 'quoted-printable');
7a36987f 2012 return (MIME::Base64::encode($message, "\n"), $to)
8d814084 2013 if ($to eq 'base64');
46493105 2014 die __("invalid transfer encoding");
8d814084
PB
2015}
2016
c438ea2a 2017sub unique_email_list {
e205735d
RA
2018 my %seen;
2019 my @emails;
2020
2021 foreach my $entry (@_) {
e4312255
KM
2022 my $clean = extract_valid_address_or_die($entry);
2023 $seen{$clean} ||= 0;
2024 next if $seen{$clean}++;
2025 push @emails, $entry;
e205735d
RA
2026 }
2027 return @emails;
2028}
747bbff9
JK
2029
2030sub validate_patch {
f2d06fb1 2031 my ($fn, $xfer_encoding) = @_;
6489660b 2032
177409e5 2033 if ($repo) {
7cbc0455 2034 my $hooks_path = $repo->command_oneline('rev-parse', '--git-path', 'hooks');
f4dc9432
ÆAB
2035 require File::Spec;
2036 my $validate_hook = File::Spec->catfile($hooks_path,
177409e5
JT
2037 'sendemail-validate');
2038 my $hook_error;
2039 if (-x $validate_hook) {
f4dc9432
ÆAB
2040 require Cwd;
2041 my $target = Cwd::abs_path($fn);
177409e5 2042 # The hook needs a correct cwd and GIT_DIR.
17530b2e 2043 my $cwd_save = Cwd::getcwd();
177409e5
JT
2044 chdir($repo->wc_path() or $repo->repo_path())
2045 or die("chdir: $!");
2046 local $ENV{"GIT_DIR"} = $repo->repo_path();
d21616c0 2047 $hook_error = system_or_msg([$validate_hook, $target]);
177409e5
JT
2048 chdir($cwd_save) or die("chdir: $!");
2049 }
d21616c0
ÆAB
2050 if ($hook_error) {
2051 die sprintf(__("fatal: %s: rejected by sendemail-validate hook\n" .
ea7811b3
ÆAB
2052 "%s\n" .
2053 "warning: no patches were sent\n"), $fn, $hook_error);
d21616c0 2054 }
177409e5 2055 }
6489660b 2056
f2d06fb1 2057 # Any long lines will be automatically fixed if we use a suitable transfer
2058 # encoding.
2059 unless ($xfer_encoding =~ /^(?:auto|quoted-printable|base64)$/) {
2060 open(my $fh, '<', $fn)
2061 or die sprintf(__("unable to open %s: %s\n"), $fn, $!);
2062 while (my $line = <$fh>) {
2063 if (length($line) > 998) {
ea7811b3
ÆAB
2064 die sprintf(__("fatal: %s:%d is longer than 998 characters\n" .
2065 "warning: no patches were sent\n"), $fn, $.);
f2d06fb1 2066 }
747bbff9
JK
2067 }
2068 }
622bc930 2069 return;
747bbff9 2070}
0706bd19 2071
531220ba
JH
2072sub handle_backup {
2073 my ($last, $lastlen, $file, $known_suffix) = @_;
2074 my ($suffix, $skip);
2075
2076 $skip = 0;
2077 if (defined $last &&
2078 ($lastlen < length($file)) &&
2079 (substr($file, 0, $lastlen) eq $last) &&
2080 ($suffix = substr($file, $lastlen)) !~ /^[a-z0-9]/i) {
2081 if (defined $known_suffix && $suffix eq $known_suffix) {
3c5cd20c 2082 printf(__("Skipping %s with backup suffix '%s'.\n"), $file, $known_suffix);
531220ba
JH
2083 $skip = 1;
2084 } else {
3c5cd20c
VA
2085 # TRANSLATORS: please keep "[y|N]" as is.
2086 my $answer = ask(sprintf(__("Do you really want to send %s? [y|N]: "), $file),
531220ba
JH
2087 valid_re => qr/^(?:y|n)/i,
2088 default => 'n');
2089 $skip = ($answer ne 'y');
2090 if ($skip) {
2091 $known_suffix = $suffix;
2092 }
2093 }
2094 }
2095 return ($skip, $known_suffix);
2096}
2097
2098sub handle_backup_files {
2099 my @file = @_;
2100 my ($last, $lastlen, $known_suffix, $skip, @result);
2101 for my $file (@file) {
2102 ($skip, $known_suffix) = handle_backup($last, $lastlen,
2103 $file, $known_suffix);
2104 push @result, $file unless $skip;
2105 $last = $file;
2106 $lastlen = length($file);
2107 }
2108 return @result;
2109}
2110
0706bd19
JK
2111sub file_has_nonascii {
2112 my $fn = shift;
2113 open(my $fh, '<', $fn)
3c5cd20c 2114 or die sprintf(__("unable to open %s: %s\n"), $fn, $!);
0706bd19
JK
2115 while (my $line = <$fh>) {
2116 return 1 if $line =~ /[^[:ascii:]]/;
2117 }
2118 return 0;
2119}
3cae7e5b
TR
2120
2121sub body_or_subject_has_nonascii {
2122 my $fn = shift;
2123 open(my $fh, '<', $fn)
3c5cd20c 2124 or die sprintf(__("unable to open %s: %s\n"), $fn, $!);
3cae7e5b
TR
2125 while (my $line = <$fh>) {
2126 last if $line =~ /^$/;
2127 return 1 if $line =~ /^Subject.*[^[:ascii:]]/;
2128 }
2129 while (my $line = <$fh>) {
2130 return 1 if $line =~ /[^[:ascii:]]/;
2131 }
2132 return 0;
2133}