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