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