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