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