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