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