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