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