]> git.ipfire.org Git - thirdparty/git.git/blame - git-send-email.perl
send-email: use lexical filehandles during sending
[thirdparty/git.git] / git-send-email.perl
CommitLineData
83b24437 1#!/usr/bin/perl -w
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
RA
18
19use strict;
20use warnings;
21use Term::ReadLine;
83b24437 22use Getopt::Long;
0e73b3ee 23use Text::ParseWords;
83b24437 24use Data::Dumper;
412876dc 25use Term::ANSIColor;
eed6ca7c 26use File::Temp qw/ tempdir tempfile /;
89bf1bac 27use File::Spec::Functions qw(catfile);
5df9fcf6 28use Error qw(:try);
3cb8caf7 29use Git;
83b24437 30
5df9fcf6
PH
31Getopt::Long::Configure qw/ pass_through /;
32
280242d1
JH
33package FakeTerm;
34sub new {
35 my ($class, $reason) = @_;
36 return bless \$reason, shift;
37}
38sub readline {
39 my $self = shift;
40 die "Cannot use readline on FakeTerm: $$self";
41}
42package main;
43
1b0baf14
MC
44
45sub usage {
46 print <<EOT;
5df9fcf6 47git send-email [options] <file | directory | rev-list options >
4ed62b03
MW
48
49 Composing:
50 --from <str> * Email From:
f434c083
SB
51 --[no-]to <str> * Email To:
52 --[no-]cc <str> * Email Cc:
53 --[no-]bcc <str> * Email Bcc:
4ed62b03
MW
54 --subject <str> * Email "Subject:"
55 --in-reply-to <str> * Email "In-Reply-To:"
8fd5bb7f 56 --annotate * Review each patch that will be sent in an editor.
4ed62b03 57 --compose * Open an editor for introduction.
3cae7e5b 58 --8bit-encoding <str> * Encoding to assume 8bit mails if undeclared
4ed62b03
MW
59
60 Sending:
61 --envelope-sender <str> * Email envelope sender.
62 --smtp-server <str:int> * Outgoing SMTP server to use. The port
63 is optional. Default 'localhost'.
64 --smtp-server-port <int> * Outgoing SMTP server port.
65 --smtp-user <str> * Username for SMTP-AUTH.
66 --smtp-pass <str> * Password for SMTP-AUTH; not necessary.
67 --smtp-encryption <str> * tls or ssl; anything else disables.
68 --smtp-ssl * Deprecated. Use '--smtp-encryption ssl'.
134550fe 69 --smtp-domain <str> * The domain name sent to HELO/EHLO handshake
f60812ef 70 --smtp-debug <0|1> * Disable, enable Net::SMTP debug.
4ed62b03
MW
71
72 Automating:
73 --identity <str> * Use the sendemail.<id> options.
74 --cc-cmd <str> * Email Cc: via `<str> \$patch_path`
3531e270
JS
75 --suppress-cc <str> * author, self, sob, cc, cccmd, body, bodycc, all.
76 --[no-]signed-off-by-cc * Send to Signed-off-by: addresses. Default on.
4ed62b03 77 --[no-]suppress-from * Send to self. Default off.
41fe87fa 78 --[no-]chain-reply-to * Chain In-Reply-To: fields. Default off.
4ed62b03
MW
79 --[no-]thread * Use In-Reply-To: field. Default on.
80
81 Administering:
c1f2aa45
JS
82 --confirm <str> * Confirm recipients before sending;
83 auto, cc, compose, always, or never.
4ed62b03
MW
84 --quiet * Output one line of info per email.
85 --dry-run * Don't actually send the emails.
86 --[no-]validate * Perform patch sanity checks. Default on.
5df9fcf6
PH
87 --[no-]format-patch * understand any non optional arguments as
88 `git format-patch` ones.
a03bc5b6 89 --force * Send even if safety checks would prevent it.
c764a0c2 90
1b0baf14
MC
91EOT
92 exit(1);
93}
94
4bc87a28 95# most mail servers generate the Date: header, but not all...
6bdca890
JN
96sub format_2822_time {
97 my ($time) = @_;
98 my @localtm = localtime($time);
99 my @gmttm = gmtime($time);
100 my $localmin = $localtm[1] + $localtm[2] * 60;
101 my $gmtmin = $gmttm[1] + $gmttm[2] * 60;
102 if ($localtm[0] != $gmttm[0]) {
103 die "local zone differs from GMT by a non-minute interval\n";
104 }
105 if ((($gmttm[6] + 1) % 7) == $localtm[6]) {
106 $localmin += 1440;
107 } elsif ((($gmttm[6] - 1) % 7) == $localtm[6]) {
108 $localmin -= 1440;
109 } elsif ($gmttm[6] != $localtm[6]) {
110 die "local time offset greater than or equal to 24 hours\n";
111 }
112 my $offset = $localmin - $gmtmin;
113 my $offhour = $offset / 60;
114 my $offmin = abs($offset % 60);
115 if (abs($offhour) >= 24) {
116 die ("local time offset greater than or equal to 24 hours\n");
117 }
118
119 return sprintf("%s, %2d %s %d %02d:%02d:%02d %s%02d%02d",
120 qw(Sun Mon Tue Wed Thu Fri Sat)[$localtm[6]],
121 $localtm[3],
122 qw(Jan Feb Mar Apr May Jun
123 Jul Aug Sep Oct Nov Dec)[$localtm[4]],
124 $localtm[5]+1900,
125 $localtm[2],
126 $localtm[1],
127 $localtm[0],
128 ($offset >= 0) ? '+' : '-',
129 abs($offhour),
130 $offmin,
131 );
132}
4bc87a28 133
567ffeb7 134my $have_email_valid = eval { require Email::Valid; 1 };
5012699d 135my $have_mail_address = eval { require Mail::Address; 1 };
4bc87a28 136my $smtp;
5f5b6118 137my $auth;
4bc87a28 138
e205735d 139sub unique_email_list(@);
1f038a0c
RA
140sub cleanup_compose_files();
141
83b24437 142# Variables we fill in automatically, or via prompting:
f434c083 143my (@to,$no_to,@cc,$no_cc,@initial_cc,@bcclist,$no_bcc,@xh,
8fd5bb7f
PH
144 $initial_reply_to,$initial_subject,@files,
145 $author,$sender,$smtp_authpass,$annotate,$compose,$time);
83b24437 146
f073a592 147my $envelope_sender;
78488b2c 148
9133261f 149# Example reply to:
83b24437 150#$initial_reply_to = ''; #<20050203173208.GA23964@foobar.com>';
83b24437 151
ad79c024
FL
152my $repo = eval { Git->repository() };
153my @repo = $repo ? ($repo) : ();
280242d1 154my $term = eval {
0fb7fc75
JS
155 $ENV{"GIT_SEND_EMAIL_NOTTY"}
156 ? new Term::ReadLine 'git-send-email', \*STDIN, \*STDOUT
157 : new Term::ReadLine 'git-send-email';
280242d1
JH
158};
159if ($@) {
160 $term = new FakeTerm "$@: going non-interactive";
161}
83b24437 162
5483c71d
AR
163# Behavior modification variables
164my ($quiet, $dry_run) = (0, 0);
5df9fcf6 165my $format_patch;
afe756c9 166my $compose_filename;
a03bc5b6 167my $force = 0;
5483c71d 168
8fd5bb7f
PH
169# Handle interactive edition of files.
170my $multiedit;
0ce142c9 171my $editor;
b4479f07 172
8fd5bb7f 173sub do_edit {
0ce142c9
MG
174 if (!defined($editor)) {
175 $editor = Git::command_oneline('var', 'GIT_EDITOR');
176 }
8fd5bb7f 177 if (defined($multiedit) && !$multiedit) {
beece9da
PH
178 map {
179 system('sh', '-c', $editor.' "$@"', $editor, $_);
180 if (($? & 127) || ($? >> 8)) {
181 die("the editor exited uncleanly, aborting everything");
182 }
183 } @_;
8fd5bb7f
PH
184 } else {
185 system('sh', '-c', $editor.' "$@"', $editor, @_);
beece9da
PH
186 if (($? & 127) || ($? >> 8)) {
187 die("the editor exited uncleanly, aborting everything");
188 }
8fd5bb7f
PH
189 }
190}
5483c71d
AR
191
192# Variables with corresponding config settings
ddc3d4fe 193my ($thread, $chain_reply_to, $suppress_from, $signed_off_by_cc, $cc_cmd);
f6bebd12 194my ($smtp_server, $smtp_server_port, $smtp_authuser, $smtp_encryption);
69cf7bfd 195my ($identity, $aliasfiletype, @alias_files, @smtp_host_parts, $smtp_domain);
c1f2aa45 196my ($validate, $confirm);
65648283 197my (@suppress_cc);
3cae7e5b 198my ($auto_8bit_encoding);
5483c71d 199
f60812ef
JA
200my ($debug_net_smtp) = 0; # Net::SMTP, see send_message()
201
528fb087
NS
202my $not_set_by_user = "true but not set by the user";
203
34cc60ce 204my %config_bool_settings = (
5483c71d 205 "thread" => [\$thread, 1],
528fb087 206 "chainreplyto" => [\$chain_reply_to, $not_set_by_user],
65648283 207 "suppressfrom" => [\$suppress_from, undef],
ddc3d4fe
MW
208 "signedoffbycc" => [\$signed_off_by_cc, undef],
209 "signedoffcc" => [\$signed_off_by_cc, undef], # Deprecated
dbf5e1e9 210 "validate" => [\$validate, 1],
e46f7a0e
AR
211);
212
34cc60ce
DS
213my %config_settings = (
214 "smtpserver" => \$smtp_server,
44b2476a 215 "smtpserverport" => \$smtp_server_port,
34cc60ce
DS
216 "smtpuser" => \$smtp_authuser,
217 "smtppass" => \$smtp_authpass,
69cf7bfd 218 "smtpdomain" => \$smtp_domain,
2db9b49c 219 "to" => \@to,
5f8b9fcd 220 "cc" => \@initial_cc,
34cc60ce
DS
221 "cccmd" => \$cc_cmd,
222 "aliasfiletype" => \$aliasfiletype,
223 "bcc" => \@bcclist,
224 "aliasesfile" => \@alias_files,
65648283 225 "suppresscc" => \@suppress_cc,
9f7820ae 226 "envelopesender" => \$envelope_sender,
8fd5bb7f 227 "multiedit" => \$multiedit,
c1f2aa45 228 "confirm" => \$confirm,
09caa24f 229 "from" => \$sender,
3cae7e5b 230 "assume8bitencoding" => \$auto_8bit_encoding,
34cc60ce 231);
4a62d3f5 232
528fb087
NS
233# Help users prepare for 1.7.0
234sub chain_reply_to {
235 if (defined $chain_reply_to &&
236 $chain_reply_to eq $not_set_by_user) {
237 print STDERR
a19f101e 238 "In git 1.7.0, the default has changed to --no-chain-reply-to\n" .
528fb087
NS
239 "Set sendemail.chainreplyto configuration variable to true if\n" .
240 "you want to keep --chain-reply-to as your default.\n";
a19f101e 241 $chain_reply_to = 0;
528fb087
NS
242 }
243 return $chain_reply_to;
244}
245
87429976
MW
246# Handle Uncouth Termination
247sub signal_handler {
248
249 # Make text normal
250 print color("reset"), "\n";
251
252 # SMTP password masked
253 system "stty echo";
254
255 # tmp files from --compose
afe756c9
JS
256 if (defined $compose_filename) {
257 if (-e $compose_filename) {
258 print "'$compose_filename' contains an intermediate version of the email you were composing.\n";
259 }
260 if (-e ($compose_filename . ".final")) {
261 print "'$compose_filename.final' contains the composed email.\n"
262 }
87429976
MW
263 }
264
265 exit;
266};
267
268$SIG{TERM} = \&signal_handler;
269$SIG{INT} = \&signal_handler;
270
83b24437
RA
271# Begin by accumulating all the variables (defined above), that we will end up
272# needing, first, from the command line:
273
94638f89 274my $rc = GetOptions("sender|from=s" => \$sender,
83b24437
RA
275 "in-reply-to=s" => \$initial_reply_to,
276 "subject=s" => \$initial_subject,
277 "to=s" => \@to,
f434c083 278 "no-to" => \$no_to,
da140f8b 279 "cc=s" => \@initial_cc,
f434c083 280 "no-cc" => \$no_cc,
58063245 281 "bcc=s" => \@bcclist,
f434c083 282 "no-bcc" => \$no_bcc,
78488b2c 283 "chain-reply-to!" => \$chain_reply_to,
3342d850 284 "smtp-server=s" => \$smtp_server,
44b2476a 285 "smtp-server-port=s" => \$smtp_server_port,
34cc60ce 286 "smtp-user=s" => \$smtp_authuser,
2363d746 287 "smtp-pass:s" => \$smtp_authpass,
f6bebd12
TR
288 "smtp-ssl" => sub { $smtp_encryption = 'ssl' },
289 "smtp-encryption=s" => \$smtp_encryption,
f60812ef 290 "smtp-debug:i" => \$debug_net_smtp,
69cf7bfd 291 "smtp-domain:s" => \$smtp_domain,
34cc60ce 292 "identity=s" => \$identity,
8fd5bb7f 293 "annotate" => \$annotate,
1f038a0c 294 "compose" => \$compose,
30d08b34 295 "quiet" => \$quiet,
324a8bd0 296 "cc-cmd=s" => \$cc_cmd,
5483c71d 297 "suppress-from!" => \$suppress_from,
65648283 298 "suppress-cc=s" => \@suppress_cc,
ddc3d4fe 299 "signed-off-cc|signed-off-by-cc!" => \$signed_off_by_cc,
c1f2aa45 300 "confirm=s" => \$confirm,
6130259c 301 "dry-run" => \$dry_run,
f073a592 302 "envelope-sender=s" => \$envelope_sender,
5483c71d 303 "thread!" => \$thread,
dbf5e1e9 304 "validate!" => \$validate,
5df9fcf6 305 "format-patch!" => \$format_patch,
3cae7e5b 306 "8bit-encoding=s" => \$auto_8bit_encoding,
a03bc5b6 307 "force" => \$force,
83b24437
RA
308 );
309
1b0baf14
MC
310unless ($rc) {
311 usage();
312}
313
eed6ca7c
JS
314die "Cannot run git format-patch from outside a repository\n"
315 if $format_patch and not $repo;
316
34cc60ce
DS
317# Now, let's fill any that aren't set in with defaults:
318
319sub read_config {
320 my ($prefix) = @_;
321
322 foreach my $setting (keys %config_bool_settings) {
323 my $target = $config_bool_settings{$setting}->[0];
ad79c024 324 $$target = Git::config_bool(@repo, "$prefix.$setting") unless (defined $$target);
34cc60ce
DS
325 }
326
327 foreach my $setting (keys %config_settings) {
328 my $target = $config_settings{$setting};
f434c083
SB
329 next if $setting eq "to" and defined $no_to;
330 next if $setting eq "cc" and defined $no_cc;
331 next if $setting eq "bcc" and defined $no_bcc;
34cc60ce
DS
332 if (ref($target) eq "ARRAY") {
333 unless (@$target) {
ad79c024 334 my @values = Git::config(@repo, "$prefix.$setting");
34cc60ce
DS
335 @$target = @values if (@values && defined $values[0]);
336 }
337 }
338 else {
ad79c024 339 $$target = Git::config(@repo, "$prefix.$setting") unless (defined $$target);
34cc60ce
DS
340 }
341 }
f6bebd12
TR
342
343 if (!defined $smtp_encryption) {
344 my $enc = Git::config(@repo, "$prefix.smtpencryption");
345 if (defined $enc) {
346 $smtp_encryption = $enc;
347 } elsif (Git::config_bool(@repo, "$prefix.smtpssl")) {
348 $smtp_encryption = 'ssl';
349 }
350 }
34cc60ce
DS
351}
352
353# read configuration from [sendemail "$identity"], fall back on [sendemail]
ad79c024 354$identity = Git::config(@repo, "sendemail.identity") unless (defined $identity);
34cc60ce
DS
355read_config("sendemail.$identity") if (defined $identity);
356read_config("sendemail");
357
358# fall back on builtin bool defaults
359foreach my $setting (values %config_bool_settings) {
360 ${$setting->[0]} = $setting->[1] unless (defined (${$setting->[0]}));
361}
362
fa835cd5
TR
363# 'default' encryption is none -- this only prevents a warning
364$smtp_encryption = '' unless (defined $smtp_encryption);
365
65648283
DB
366# Set CC suppressions
367my(%suppress_cc);
368if (@suppress_cc) {
369 foreach my $entry (@suppress_cc) {
370 die "Unknown --suppress-cc field: '$entry'\n"
3531e270 371 unless $entry =~ /^(all|cccmd|cc|author|self|sob|body|bodycc)$/;
65648283
DB
372 $suppress_cc{$entry} = 1;
373 }
374}
375
376if ($suppress_cc{'all'}) {
cb8a9bd5 377 foreach my $entry (qw (cccmd cc author self sob body bodycc)) {
65648283
DB
378 $suppress_cc{$entry} = 1;
379 }
380 delete $suppress_cc{'all'};
381}
382
383# If explicit old-style ones are specified, they trump --suppress-cc.
384$suppress_cc{'self'} = $suppress_from if defined $suppress_from;
ddc3d4fe 385$suppress_cc{'sob'} = !$signed_off_by_cc if defined $signed_off_by_cc;
65648283 386
3531e270
JS
387if ($suppress_cc{'body'}) {
388 foreach my $entry (qw (sob bodycc)) {
389 $suppress_cc{$entry} = 1;
390 }
391 delete $suppress_cc{'body'};
392}
393
c1f2aa45
JS
394# Set confirm's default value
395my $confirm_unconfigured = !defined $confirm;
396if ($confirm_unconfigured) {
397 $confirm = scalar %suppress_cc ? 'compose' : 'auto';
398};
399die "Unknown --confirm setting: '$confirm'\n"
400 unless $confirm =~ /^(?:auto|cc|compose|always|never)/;
401
65648283
DB
402# Debugging, print out the suppressions.
403if (0) {
404 print "suppressions:\n";
405 foreach my $entry (keys %suppress_cc) {
406 printf " %-5s -> $suppress_cc{$entry}\n", $entry;
407 }
408}
409
ad79c024
FL
410my ($repoauthor, $repocommitter);
411($repoauthor) = Git::ident_person(@repo, 'author');
412($repocommitter) = Git::ident_person(@repo, 'committer');
34cc60ce 413
79ee555b
EB
414# Verify the user input
415
416foreach my $entry (@to) {
417 die "Comma in --to entry: $entry'\n" unless $entry !~ m/,/;
418}
419
420foreach my $entry (@initial_cc) {
421 die "Comma in --cc entry: $entry'\n" unless $entry !~ m/,/;
422}
423
424foreach my $entry (@bcclist) {
425 die "Comma in --bcclist entry: $entry'\n" unless $entry !~ m/,/;
426}
427
5012699d
JS
428sub parse_address_line {
429 if ($have_mail_address) {
430 return map { $_->format } Mail::Address->parse($_[0]);
431 } else {
432 return split_addrs($_[0]);
433 }
434}
435
0e73b3ee 436sub split_addrs {
2f0e7cbb 437 return quotewords('\s*,\s*', 1, @_);
0e73b3ee
WF
438}
439
994d6c66 440my %aliases;
994d6c66
EW
441my %parse_alias = (
442 # multiline formats can be supported in the future
443 mutt => sub { my $fh = shift; while (<$fh>) {
ffc01f9b 444 if (/^\s*alias\s+(?:-group\s+\S+\s+)*(\S+)\s+(.*)$/) {
994d6c66
EW
445 my ($alias, $addr) = ($1, $2);
446 $addr =~ s/#.*$//; # mutt allows # comments
447 # commas delimit multiple addresses
0e73b3ee 448 $aliases{$alias} = [ split_addrs($addr) ];
994d6c66
EW
449 }}},
450 mailrc => sub { my $fh = shift; while (<$fh>) {
451 if (/^alias\s+(\S+)\s+(.*)$/) {
452 # spaces delimit multiple addresses
fe87c921 453 $aliases{$1} = [ quotewords('\s+', 0, $2) ];
994d6c66 454 }}},
73c427eb
TP
455 pine => sub { my $fh = shift; my $f='\t[^\t]*';
456 for (my $x = ''; defined($x); $x = $_) {
457 chomp $x;
458 $x .= $1 while(defined($_ = <$fh>) && /^ +(.*)$/);
459 $x =~ /^(\S+)$f\t\(?([^\t]+?)\)?(:?$f){0,2}$/ or next;
0e73b3ee 460 $aliases{$1} = [ split_addrs($2) ];
73c427eb 461 }},
7613ea35
BP
462 elm => sub { my $fh = shift;
463 while (<$fh>) {
464 if (/^(\S+)\s+=\s+[^=]+=\s(\S+)/) {
465 my ($alias, $addr) = ($1, $2);
466 $aliases{$alias} = [ split_addrs($addr) ];
467 }
468 } },
469
994d6c66
EW
470 gnus => sub { my $fh = shift; while (<$fh>) {
471 if (/\(define-mail-alias\s+"(\S+?)"\s+"(\S+?)"\)/) {
472 $aliases{$1} = [ $2 ];
473 }}}
474);
475
3cb8caf7 476if (@alias_files and $aliasfiletype and defined $parse_alias{$aliasfiletype}) {
994d6c66
EW
477 foreach my $file (@alias_files) {
478 open my $fh, '<', $file or die "opening $file: $!\n";
479 $parse_alias{$aliasfiletype}->($fh);
480 close $fh;
481 }
482}
483
94638f89 484($sender) = expand_aliases($sender) if defined $sender;
ae740a58 485
5df9fcf6
PH
486# returns 1 if the conflict must be solved using it as a format-patch argument
487sub check_file_rev_conflict($) {
eed6ca7c 488 return unless $repo;
5df9fcf6
PH
489 my $f = shift;
490 try {
491 $repo->command('rev-parse', '--verify', '--quiet', $f);
492 if (defined($format_patch)) {
5df9fcf6
PH
493 return $format_patch;
494 }
495 die(<<EOF);
496File '$f' exists but it could also be the range of commits
497to produce patches for. Please disambiguate by...
498
499 * Saying "./$f" if you mean a file; or
500 * Giving --format-patch option if you mean a range.
501EOF
502 } catch Git::Error::Command with {
503 return 0;
504 }
505}
506
aa54892f
JK
507# Now that all the defaults are set, process the rest of the command line
508# arguments and collect up the files that need to be processed.
5df9fcf6 509my @rev_list_opts;
69f4ce55 510while (defined(my $f = shift @ARGV)) {
5df9fcf6
PH
511 if ($f eq "--") {
512 push @rev_list_opts, "--", @ARGV;
513 @ARGV = ();
514 } elsif (-d $f and !check_file_rev_conflict($f)) {
c6038169 515 opendir my $dh, $f
aa54892f
JK
516 or die "Failed to opendir $f: $!";
517
89bf1bac 518 push @files, grep { -f $_ } map { catfile($f, $_) }
c6038169
ÆAB
519 sort readdir $dh;
520 closedir $dh;
5df9fcf6 521 } elsif ((-f $f or -p $f) and !check_file_rev_conflict($f)) {
aa54892f 522 push @files, $f;
aa54892f 523 } else {
5df9fcf6 524 push @rev_list_opts, $f;
aa54892f
JK
525 }
526}
527
5df9fcf6 528if (@rev_list_opts) {
eed6ca7c
JS
529 die "Cannot run git format-patch from outside a repository\n"
530 unless $repo;
5df9fcf6
PH
531 push @files, $repo->command('format-patch', '-o', tempdir(CLEANUP => 1), @rev_list_opts);
532}
533
dbf5e1e9 534if ($validate) {
c764a0c2 535 foreach my $f (@files) {
300913bd
KB
536 unless (-p $f) {
537 my $error = validate_patch($f);
538 $error and die "fatal: $f: $error\nwarning: no patches were sent\n";
539 }
c764a0c2 540 }
747bbff9
JK
541}
542
aa54892f
JK
543if (@files) {
544 unless ($quiet) {
545 print $_,"\n" for (@files);
546 }
547} else {
548 print STDERR "\nNo patch files specified!\n\n";
549 usage();
550}
551
beece9da
PH
552sub get_patch_subject($) {
553 my $fn = shift;
554 open (my $fh, '<', $fn);
555 while (my $line = <$fh>) {
556 next unless ($line =~ /^Subject: (.*)$/);
557 close $fh;
558 return "GIT: $1\n";
559 }
560 close $fh;
561 die "No subject line in $fn ?";
562}
563
564if ($compose) {
565 # Note that this does not need to be secure, but we will make a small
566 # effort to have it be unique
afe756c9
JS
567 $compose_filename = ($repo ?
568 tempfile(".gitsendemail.msg.XXXXXX", DIR => $repo->repo_path()) :
569 tempfile(".gitsendemail.msg.XXXXXX", DIR => "."))[1];
fe0f944f 570 open my $c, ">", $compose_filename
beece9da
PH
571 or die "Failed to open for writing $compose_filename: $!";
572
573
574 my $tpl_sender = $sender || $repoauthor || $repocommitter || '';
575 my $tpl_subject = $initial_subject || '';
576 my $tpl_reply_to = $initial_reply_to || '';
577
fe0f944f 578 print $c <<EOT;
beece9da 579From $tpl_sender # This line is ignored.
40e6e8a0 580GIT: Lines beginning in "GIT:" will be removed.
beece9da
PH
581GIT: Consider including an overall diffstat or table of contents
582GIT: for the patch you are writing.
583GIT:
584GIT: Clear the body content if you don't wish to send a summary.
585From: $tpl_sender
586Subject: $tpl_subject
587In-Reply-To: $tpl_reply_to
588
589EOT
590 for my $f (@files) {
fe0f944f 591 print $c get_patch_subject($f);
beece9da 592 }
fe0f944f 593 close $c;
beece9da 594
beece9da
PH
595 if ($annotate) {
596 do_edit($compose_filename, @files);
597 } else {
598 do_edit($compose_filename);
599 }
600
fe0f944f 601 open my $c2, ">", $compose_filename . ".final"
beece9da
PH
602 or die "Failed to open $compose_filename.final : " . $!;
603
fe0f944f 604 open $c, "<", $compose_filename
beece9da
PH
605 or die "Failed to open $compose_filename : " . $!;
606
607 my $need_8bit_cte = file_has_nonascii($compose_filename);
608 my $in_body = 0;
609 my $summary_empty = 1;
fe0f944f 610 while(<$c>) {
40e6e8a0 611 next if m/^GIT:/;
beece9da
PH
612 if ($in_body) {
613 $summary_empty = 0 unless (/^\n$/);
614 } elsif (/^\n$/) {
615 $in_body = 1;
616 if ($need_8bit_cte) {
fe0f944f 617 print $c2 "MIME-Version: 1.0\n",
beece9da 618 "Content-Type: text/plain; ",
d1fff6fc 619 "charset=UTF-8\n",
beece9da
PH
620 "Content-Transfer-Encoding: 8bit\n";
621 }
622 } elsif (/^MIME-Version:/i) {
623 $need_8bit_cte = 0;
624 } elsif (/^Subject:\s*(.+)\s*$/i) {
625 $initial_subject = $1;
626 my $subject = $initial_subject;
627 $_ = "Subject: " .
628 ($subject =~ /[^[:ascii:]]/ ?
629 quote_rfc2047($subject) :
630 $subject) .
631 "\n";
632 } elsif (/^In-Reply-To:\s*(.+)\s*$/i) {
633 $initial_reply_to = $1;
634 next;
635 } elsif (/^From:\s*(.+)\s*$/i) {
636 $sender = $1;
637 next;
638 } elsif (/^(?:To|Cc|Bcc):/i) {
639 print "To/Cc/Bcc fields are not interpreted yet, they have been ignored\n";
640 next;
641 }
fe0f944f 642 print $c2 $_;
beece9da 643 }
fe0f944f
ÆAB
644 close $c;
645 close $c2;
beece9da
PH
646
647 if ($summary_empty) {
648 print "Summary email is empty, skipping it\n";
649 $compose = -1;
650 }
651} elsif ($annotate) {
652 do_edit(@files);
653}
654
6e182518
JS
655sub ask {
656 my ($prompt, %arg) = @_;
0da43a68 657 my $valid_re = $arg{valid_re};
6e182518
JS
658 my $default = $arg{default};
659 my $resp;
660 my $i = 0;
5906f54e
JS
661 return defined $default ? $default : undef
662 unless defined $term->IN and defined fileno($term->IN) and
663 defined $term->OUT and defined fileno($term->OUT);
6e182518
JS
664 while ($i++ < 10) {
665 $resp = $term->readline($prompt);
666 if (!defined $resp) { # EOF
667 print "\n";
668 return defined $default ? $default : undef;
669 }
670 if ($resp eq '' and defined $default) {
671 return $default;
672 }
0da43a68 673 if (!defined $valid_re or $resp =~ /$valid_re/) {
6e182518
JS
674 return $resp;
675 }
676 }
677 return undef;
678}
679
3cae7e5b
TR
680my %broken_encoding;
681
682sub file_declares_8bit_cte($) {
683 my $fn = shift;
684 open (my $fh, '<', $fn);
685 while (my $line = <$fh>) {
686 last if ($line =~ /^$/);
687 return 1 if ($line =~ /^Content-Transfer-Encoding: .*8bit.*$/);
688 }
689 close $fh;
690 return 0;
691}
692
693foreach my $f (@files) {
694 next unless (body_or_subject_has_nonascii($f)
695 && !file_declares_8bit_cte($f));
696 $broken_encoding{$f} = 1;
697}
698
699if (!defined $auto_8bit_encoding && scalar %broken_encoding) {
700 print "The following files are 8bit, but do not declare " .
701 "a Content-Transfer-Encoding.\n";
702 foreach my $f (sort keys %broken_encoding) {
703 print " $f\n";
704 }
705 $auto_8bit_encoding = ask("Which 8bit encoding should I declare [UTF-8]? ",
706 default => "UTF-8");
707}
708
a03bc5b6
TR
709if (!$force) {
710 for my $f (@files) {
711 if (get_patch_subject($f) =~ /\*\*\* SUBJECT HERE \*\*\*/) {
712 die "Refusing to send because the patch\n\t$f\n"
713 . "has the template subject '*** SUBJECT HERE ***'. "
714 . "Pass --force if you really want to send.\n";
715 }
716 }
717}
718
1f038a0c 719my $prompting = 0;
94638f89 720if (!defined $sender) {
ad79c024 721 $sender = $repoauthor || $repocommitter || '';
6e182518
JS
722 $sender = ask("Who should the emails appear to be from? [$sender] ",
723 default => $sender);
94638f89 724 print "Emails will be sent from: ", $sender, "\n";
1f038a0c 725 $prompting++;
83b24437
RA
726}
727
728if (!@to) {
6e182518
JS
729 my $to = ask("Who should the emails be sent to? ");
730 push @to, parse_address_line($to) if defined $to; # sanitized/validated later
1f038a0c 731 $prompting++;
83b24437
RA
732}
733
994d6c66 734sub expand_aliases {
302e04ea
JK
735 return map { expand_one_alias($_) } @_;
736}
737
738my %EXPANDED_ALIASES;
739sub expand_one_alias {
740 my $alias = shift;
741 if ($EXPANDED_ALIASES{$alias}) {
742 die "fatal: alias '$alias' expands to itself\n";
743 }
744 local $EXPANDED_ALIASES{$alias} = 1;
745 return $aliases{$alias} ? expand_aliases(@{$aliases{$alias}}) : $alias;
994d6c66
EW
746}
747
748@to = expand_aliases(@to);
5b56aaa2 749@to = (map { sanitize_address($_) } @to);
994d6c66 750@initial_cc = expand_aliases(@initial_cc);
58063245 751@bcclist = expand_aliases(@bcclist);
994d6c66 752
5483c71d 753if ($thread && !defined $initial_reply_to && $prompting) {
6e182518
JS
754 $initial_reply_to = ask(
755 "Message-ID to be used as In-Reply-To for the first email? ");
83b24437 756}
1ca3d6ed 757if (defined $initial_reply_to) {
0fb7fc75
JS
758 $initial_reply_to =~ s/^\s*<?//;
759 $initial_reply_to =~ s/>?\s*$//;
760 $initial_reply_to = "<$initial_reply_to>" if $initial_reply_to ne '';
ace9c2a9 761}
ace72086 762
34cc60ce 763if (!defined $smtp_server) {
aca7ad76
EW
764 foreach (qw( /usr/sbin/sendmail /usr/lib/sendmail )) {
765 if (-x $_) {
766 $smtp_server = $_;
767 last;
768 }
769 }
770 $smtp_server ||= 'localhost'; # could be 127.0.0.1, too... *shrug*
3342d850
RA
771}
772
c1f2aa45
JS
773if ($compose && $compose > 0) {
774 @files = ($compose_filename . ".final", @files);
1f038a0c
RA
775}
776
83b24437 777# Variables we set as part of the loop over files
c1f2aa45 778our ($message_id, %mail, $subject, $reply_to, $references, $message,
dc1460aa 779 $needs_confirm, $message_num, $ask_default);
83b24437 780
567ffeb7
EW
781sub extract_valid_address {
782 my $address = shift;
ad9c18f5 783 my $local_part_regexp = '[^<>"\s@]+';
09302e17 784 my $domain_regexp = '[^.<>"\s@]+(?:\.[^.<>"\s@]+)+';
db3106b2
EW
785
786 # check for a local address:
ad9c18f5 787 return $address if ($address =~ /^($local_part_regexp)$/);
db3106b2 788
155197e6 789 $address =~ s/^\s*<(.*)>\s*$/$1/;
567ffeb7 790 if ($have_email_valid) {
ad9c18f5 791 return scalar Email::Valid->address($address);
567ffeb7
EW
792 } else {
793 # less robust/correct than the monster regexp in Email::Valid,
794 # but still does a 99% job, and one less dependency
ad9c18f5 795 $address =~ /($local_part_regexp\@$domain_regexp)/;
e96fd305 796 return $1;
567ffeb7
EW
797 }
798}
83b24437
RA
799
800# Usually don't need to change anything below here.
801
802# we make a "fake" message id by taking the current number
803# of seconds since the beginning of Unix time and tacking on
804# a random number to the end, in case we are called quicker than
805# 1 second since the last time we were called.
8037d1a3
RA
806
807# We'll setup a template for the message id, using the "from" address:
8037d1a3 808
be510cfe 809my ($message_id_stamp, $message_id_serial);
68ce9330 810sub make_message_id {
be510cfe
JH
811 my $uniq;
812 if (!defined $message_id_stamp) {
813 $message_id_stamp = sprintf("%s-%s", time, $$);
814 $message_id_serial = 0;
815 }
816 $message_id_serial++;
817 $uniq = "$message_id_stamp-$message_id_serial";
818
aeb59328 819 my $du_part;
94638f89
UKK
820 for ($sender, $repocommitter, $repoauthor) {
821 $du_part = extract_valid_address(sanitize_address($_));
822 last if (defined $du_part and $du_part ne '');
aeb59328 823 }
94638f89 824 if (not defined $du_part or $du_part eq '') {
aeb59328
JH
825 use Sys::Hostname qw();
826 $du_part = 'user@' . Sys::Hostname::hostname();
827 }
be510cfe
JH
828 my $message_id_template = "<%s-git-send-email-%s>";
829 $message_id = sprintf($message_id_template, $uniq, $du_part);
8037d1a3 830 #print "new message id = $message_id\n"; # Was useful for debugging
83b24437
RA
831}
832
833
834
a5370b16 835$time = time - scalar $#files;
83b24437 836
374c5905
JR
837sub unquote_rfc2047 {
838 local ($_) = @_;
8291db6f
JK
839 my $encoding;
840 if (s/=\?([^?]+)\?q\?(.*)\?=/$2/g) {
841 $encoding = $1;
374c5905
JR
842 s/_/ /g;
843 s/=([0-9A-F]{2})/chr(hex($1))/eg;
844 }
8291db6f 845 return wantarray ? ($_, $encoding) : $_;
374c5905
JR
846}
847
d54eaaa2
JK
848sub quote_rfc2047 {
849 local $_ = shift;
d1fff6fc 850 my $encoding = shift || 'UTF-8';
d54eaaa2
JK
851 s/([^-a-zA-Z0-9!*+\/])/sprintf("=%02X", ord($1))/eg;
852 s/(.*)/=\?$encoding\?q\?$1\?=/;
853 return $_;
854}
855
a3a8262b
BC
856sub is_rfc2047_quoted {
857 my $s = shift;
858 my $token = '[^][()<>@,;:"\/?.= \000-\037\177-\377]+';
859 my $encoded_text = '[!->@-~]+';
860 length($s) <= 75 &&
861 $s =~ m/^(?:"[[:ascii:]]*"|=\?$token\?$token\?$encoded_text\?=)$/o;
862}
863
5b56aaa2 864# use the simplest quoting being able to handle the recipient
68ce9330 865sub sanitize_address {
732263d4 866 my ($recipient) = @_;
5b56aaa2
UKK
867 my ($recipient_name, $recipient_addr) = ($recipient =~ /^(.*?)\s*(<.*)/);
868
869 if (not $recipient_name) {
870 return "$recipient";
871 }
872
873 # if recipient_name is already quoted, do nothing
a3a8262b 874 if (is_rfc2047_quoted($recipient_name)) {
5b56aaa2
UKK
875 return $recipient;
876 }
877
878 # rfc2047 is needed if a non-ascii char is included
879 if ($recipient_name =~ /[^[:ascii:]]/) {
a61c0ffa 880 $recipient_name =~ s/^"(.*)"$/$1/;
d54eaaa2 881 $recipient_name = quote_rfc2047($recipient_name);
732263d4 882 }
5b56aaa2
UKK
883
884 # double quotes are needed if specials or CTLs are included
885 elsif ($recipient_name =~ /[][()<>@,;:\\".\000-\037\177]/) {
18023c20 886 $recipient_name =~ s/(["\\\r])/\\$1/g;
5b56aaa2
UKK
887 $recipient_name = "\"$recipient_name\"";
888 }
889
890 return "$recipient_name $recipient_addr";
891
732263d4
RJ
892}
893
134550fe
JA
894# Returns the local Fully Qualified Domain Name (FQDN) if available.
895#
896# Tightly configured MTAa require that a caller sends a real DNS
897# domain name that corresponds the IP address in the HELO/EHLO
898# handshake. This is used to verify the connection and prevent
899# spammers from trying to hide their identity. If the DNS and IP don't
900# match, the receiveing MTA may deny the connection.
901#
902# Here is a deny example of Net::SMTP with the default "localhost.localdomain"
903#
904# Net::SMTP=GLOB(0x267ec28)>>> EHLO localhost.localdomain
905# Net::SMTP=GLOB(0x267ec28)<<< 550 EHLO argument does not match calling host
906#
907# This maildomain*() code is based on ideas in Perl library Test::Reporter
908# /usr/share/perl5/Test/Reporter/Mail/Util.pm ==> sub _maildomain ()
909
59a86303
BG
910sub valid_fqdn {
911 my $domain = shift;
61ef5e9b 912 return defined $domain && !($^O eq 'darwin' && $domain =~ /\.local$/) && $domain =~ /\./;
59a86303
BG
913}
914
68ce9330 915sub maildomain_net {
134550fe
JA
916 my $maildomain;
917
918 if (eval { require Net::Domain; 1 }) {
919 my $domain = Net::Domain::domainname();
59a86303 920 $maildomain = $domain if valid_fqdn($domain);
134550fe
JA
921 }
922
923 return $maildomain;
924}
925
68ce9330 926sub maildomain_mta {
134550fe
JA
927 my $maildomain;
928
929 if (eval { require Net::SMTP; 1 }) {
930 for my $host (qw(mailhost localhost)) {
931 my $smtp = Net::SMTP->new($host);
932 if (defined $smtp) {
933 my $domain = $smtp->domain;
934 $smtp->quit;
935
59a86303 936 $maildomain = $domain if valid_fqdn($domain);
134550fe
JA
937
938 last if $maildomain;
939 }
940 }
941 }
942
943 return $maildomain;
944}
945
68ce9330 946sub maildomain {
69cf7bfd 947 return maildomain_net() || maildomain_mta() || 'localhost.localdomain';
134550fe
JA
948}
949
15da1084 950# Returns 1 if the message was sent, and 0 otherwise.
a1b5b371 951# In actuality, the whole program dies when there
15da1084
MW
952# is an error sending a message.
953
68ce9330 954sub send_message {
4bc87a28 955 my @recipients = unique_email_list(@to);
7ac17529
ABH
956 @cc = (grep { my $cc = extract_valid_address($_);
957 not grep { $cc eq $_ } @recipients
958 }
959 map { sanitize_address($_) }
960 @cc);
4bc87a28 961 my $to = join (",\n\t", @recipients);
58063245 962 @recipients = unique_email_list(@recipients,@cc,@bcclist);
c38f0247 963 @recipients = (map { extract_valid_address($_) } @recipients);
6bdca890 964 my $date = format_2822_time($time++);
e923effb
ML
965 my $gitversion = '@@GIT_VERSION@@';
966 if ($gitversion =~ m/..GIT_VERSION../) {
3cb8caf7 967 $gitversion = Git::version();
e923effb 968 }
4bc87a28 969
02461e0e 970 my $cc = join(",\n\t", unique_email_list(@cc));
f06a6a49
JH
971 my $ccline = "";
972 if ($cc ne '') {
973 $ccline = "\nCc: $cc";
974 }
94638f89 975 my $sanitized_sender = sanitize_address($sender);
4f3d3703 976 make_message_id() unless defined($message_id);
aeb59328 977
94638f89 978 my $header = "From: $sanitized_sender
f06a6a49 979To: $to${ccline}
4bc87a28 980Subject: $subject
4bc87a28
EW
981Date: $date
982Message-Id: $message_id
e923effb 983X-Mailer: git-send-email $gitversion
4bc87a28 984";
3e0c4ffd 985 if ($reply_to) {
7ccf7927
RA
986
987 $header .= "In-Reply-To: $reply_to\n";
988 $header .= "References: $references\n";
989 }
ce91c2f6
JH
990 if (@xh) {
991 $header .= join("\n", @xh) . "\n";
992 }
4bc87a28 993
c38f0247 994 my @sendmail_parameters = ('-i', @recipients);
94638f89 995 my $raw_from = $sanitized_sender;
c89e3241
FC
996 if (defined $envelope_sender && $envelope_sender ne "auto") {
997 $raw_from = $envelope_sender;
998 }
f073a592
RJ
999 $raw_from = extract_valid_address($raw_from);
1000 unshift (@sendmail_parameters,
1001 '-f', $raw_from) if(defined $envelope_sender);
8e3d436b 1002
c1f2aa45
JS
1003 if ($needs_confirm && !$dry_run) {
1004 print "\n$header\n";
1005 if ($needs_confirm eq "inform") {
1006 $confirm_unconfigured = 0; # squelch this message for the rest of this run
6e182518 1007 $ask_default = "y"; # assume yes on EOF since user hasn't explicitly asked for confirmation
c1f2aa45
JS
1008 print " The Cc list above has been expanded by additional\n";
1009 print " addresses found in the patch commit message. By default\n";
1010 print " send-email prompts before sending whenever this occurs.\n";
1011 print " This behavior is controlled by the sendemail.confirm\n";
1012 print " configuration setting.\n";
1013 print "\n";
1014 print " For additional information, run 'git send-email --help'.\n";
1015 print " To retain the current behavior, but squelch this message,\n";
1016 print " run 'git config --global sendemail.confirm auto'.\n\n";
1017 }
6e182518
JS
1018 $_ = ask("Send this email? ([y]es|[n]o|[q]uit|[a]ll): ",
1019 valid_re => qr/^(?:yes|y|no|n|quit|q|all|a)/i,
1020 default => $ask_default);
1021 die "Send this email reply required" unless defined $_;
c1f2aa45 1022 if (/^n/i) {
15da1084 1023 return 0;
c1f2aa45
JS
1024 } elsif (/^q/i) {
1025 cleanup_compose_files();
1026 exit(0);
1027 } elsif (/^a/i) {
1028 $confirm = 'never';
1029 }
1030 }
1031
6130259c
MW
1032 if ($dry_run) {
1033 # We don't want to send the email.
1034 } elsif ($smtp_server =~ m#^/#) {
aca7ad76
EW
1035 my $pid = open my $sm, '|-';
1036 defined $pid or die $!;
1037 if (!$pid) {
8e3d436b 1038 exec($smtp_server, @sendmail_parameters) or die $!;
aca7ad76
EW
1039 }
1040 print $sm "$header\n$message";
1041 close $sm or die $?;
1042 } else {
44b2476a
JH
1043
1044 if (!defined $smtp_server) {
1045 die "The required SMTP server is not properly defined."
1046 }
1047
f6bebd12 1048 if ($smtp_encryption eq 'ssl') {
44b2476a 1049 $smtp_server_port ||= 465; # ssmtp
34cc60ce 1050 require Net::SMTP::SSL;
69cf7bfd 1051 $smtp_domain ||= maildomain();
134550fe 1052 $smtp ||= Net::SMTP::SSL->new($smtp_server,
69cf7bfd 1053 Hello => $smtp_domain,
134550fe 1054 Port => $smtp_server_port);
34cc60ce
DS
1055 }
1056 else {
1057 require Net::SMTP;
69cf7bfd 1058 $smtp_domain ||= maildomain();
44b2476a
JH
1059 $smtp ||= Net::SMTP->new((defined $smtp_server_port)
1060 ? "$smtp_server:$smtp_server_port"
f60812ef 1061 : $smtp_server,
69cf7bfd 1062 Hello => $smtp_domain,
f60812ef 1063 Debug => $debug_net_smtp);
fb3650ed 1064 if ($smtp_encryption eq 'tls' && $smtp) {
f6bebd12
TR
1065 require Net::SMTP::SSL;
1066 $smtp->command('STARTTLS');
1067 $smtp->response();
1068 if ($smtp->code == 220) {
1069 $smtp = Net::SMTP::SSL->start_SSL($smtp)
1070 or die "STARTTLS failed! ".$smtp->message;
6cbf8b00 1071 $smtp_encryption = '';
9d1ccf5e
RS
1072 # Send EHLO again to receive fresh
1073 # supported commands
1074 $smtp->hello();
f6bebd12
TR
1075 } else {
1076 die "Server does not support STARTTLS! ".$smtp->message;
1077 }
1078 }
44b2476a
JH
1079 }
1080
1081 if (!$smtp) {
f60812ef 1082 die "Unable to initialize SMTP properly. Check config and use --smtp-debug. ",
e5afb3a6
JA
1083 "VALUES: server=$smtp_server ",
1084 "encryption=$smtp_encryption ",
69cf7bfd 1085 "hello=$smtp_domain",
e5afb3a6 1086 defined $smtp_server_port ? "port=$smtp_server_port" : "";
44b2476a
JH
1087 }
1088
2363d746
MW
1089 if (defined $smtp_authuser) {
1090
1091 if (!defined $smtp_authpass) {
1092
1093 system "stty -echo";
1094
1095 do {
1096 print "Password: ";
1097 $_ = <STDIN>;
1098 print "\n";
1099 } while (!defined $_);
1100
1101 chomp($smtp_authpass = $_);
1102
1103 system "stty echo";
1104 }
1105
5f5b6118 1106 $auth ||= $smtp->auth( $smtp_authuser, $smtp_authpass ) or die $smtp->message;
34cc60ce 1107 }
2363d746 1108
2b69bfc2 1109 $smtp->mail( $raw_from ) or die $smtp->message;
aca7ad76
EW
1110 $smtp->to( @recipients ) or die $smtp->message;
1111 $smtp->data or die $smtp->message;
1112 $smtp->datasend("$header\n$message") or die $smtp->message;
1113 $smtp->dataend() or die $smtp->message;
15da1084 1114 $smtp->code =~ /250|200/ or die "Failed to send $subject\n".$smtp->message;
aca7ad76 1115 }
2718435b 1116 if ($quiet) {
71c7da94 1117 printf (($dry_run ? "Dry-" : "")."Sent %s\n", $subject);
2718435b 1118 } else {
b7f30e0a 1119 print (($dry_run ? "Dry-" : "")."OK. Log says:\n");
2b69bfc2 1120 if ($smtp_server !~ m#^/#) {
aca7ad76 1121 print "Server: $smtp_server\n";
2b69bfc2 1122 print "MAIL FROM:<$raw_from>\n";
02461e0e
JP
1123 foreach my $entry (@recipients) {
1124 print "RCPT TO:<$entry>\n";
1125 }
aca7ad76 1126 } else {
8e3d436b 1127 print "Sendmail: $smtp_server ".join(' ',@sendmail_parameters)."\n";
aca7ad76 1128 }
b7f30e0a 1129 print $header, "\n";
aca7ad76
EW
1130 if ($smtp) {
1131 print "Result: ", $smtp->code, ' ',
1132 ($smtp->message =~ /\n([^\n]+\n)$/s), "\n";
1133 } else {
1134 print "Result: OK\n";
1135 }
30d08b34 1136 }
15da1084
MW
1137
1138 return 1;
83b24437
RA
1139}
1140
83b24437 1141$reply_to = $initial_reply_to;
2186d566 1142$references = $initial_reply_to || '';
83b24437 1143$subject = $initial_subject;
c1f2aa45 1144$message_num = 0;
83b24437
RA
1145
1146foreach my $t (@files) {
f9237e61 1147 open my $fh, "<", $t or die "can't open file $t";
83b24437 1148
94638f89 1149 my $author = undef;
8291db6f
JK
1150 my $author_encoding;
1151 my $has_content_type;
1152 my $body_encoding;
c1f2aa45 1153 @cc = ();
ce91c2f6 1154 @xh = ();
e6b0964a 1155 my $input_format = undef;
5012699d 1156 my @header = ();
83b24437 1157 $message = "";
c1f2aa45 1158 $message_num++;
5012699d 1159 # First unfold multiline header fields
f9237e61 1160 while(<$fh>) {
5012699d
JS
1161 last if /^\s*$/;
1162 if (/^\s+\S/ and @header) {
1163 chomp($header[$#header]);
1164 s/^\s+/ /;
1165 $header[$#header] .= $_;
1166 } else {
1167 push(@header, $_);
1168 }
1169 }
1170 # Now parse the header
1171 foreach(@header) {
1172 if (/^From /) {
1173 $input_format = 'mbox';
1174 next;
1175 }
1176 chomp;
1177 if (!defined $input_format && /^[-A-Za-z]+:\s/) {
1178 $input_format = 'mbox';
1179 }
1180
1181 if (defined $input_format && $input_format eq 'mbox') {
1182 if (/^Subject:\s+(.*)$/) {
1183 $subject = $1;
e6b0964a 1184 }
5012699d
JS
1185 elsif (/^From:\s+(.*)$/) {
1186 ($author, $author_encoding) = unquote_rfc2047($1);
1187 next if $suppress_cc{'author'};
1188 next if $suppress_cc{'self'} and $author eq $sender;
1189 printf("(mbox) Adding cc: %s from line '%s'\n",
1190 $1, $_) unless $quiet;
1191 push @cc, $1;
e6b0964a 1192 }
5012699d
JS
1193 elsif (/^Cc:\s+(.*)$/) {
1194 foreach my $addr (parse_address_line($1)) {
1195 if (unquote_rfc2047($addr) eq $sender) {
65648283 1196 next if ($suppress_cc{'self'});
65648283
DB
1197 } else {
1198 next if ($suppress_cc{'cc'});
8a8e6235 1199 }
83b24437 1200 printf("(mbox) Adding cc: %s from line '%s'\n",
5012699d
JS
1201 $addr, $_) unless $quiet;
1202 push @cc, $addr;
83b24437 1203 }
5012699d
JS
1204 }
1205 elsif (/^Content-type:/i) {
1206 $has_content_type = 1;
1207 if (/charset="?([^ "]+)/) {
1208 $body_encoding = $1;
83b24437 1209 }
5012699d 1210 push @xh, $_;
83b24437 1211 }
5012699d
JS
1212 elsif (/^Message-Id: (.*)/i) {
1213 $message_id = $1;
83b24437 1214 }
5012699d
JS
1215 elsif (!/^Date:\s/ && /^[-A-Za-z]+:\s+\S/) {
1216 push @xh, $_;
1217 }
1218
83b24437 1219 } else {
5012699d
JS
1220 # In the traditional
1221 # "send lots of email" format,
1222 # line 1 = cc
1223 # line 2 = subject
1224 # So let's support that, too.
1225 $input_format = 'lots';
1226 if (@cc == 0 && !$suppress_cc{'cc'}) {
1227 printf("(non-mbox) Adding cc: %s from line '%s'\n",
1228 $_, $_) unless $quiet;
1229 push @cc, $_;
1230 } elsif (!defined $subject) {
1231 $subject = $_;
83b24437
RA
1232 }
1233 }
1234 }
5012699d 1235 # Now parse the message body
f9237e61 1236 while(<$fh>) {
5012699d
JS
1237 $message .= $_;
1238 if (/^(Signed-off-by|Cc): (.*)$/i) {
5012699d 1239 chomp;
3531e270 1240 my ($what, $c) = ($1, $2);
5012699d 1241 chomp $c;
3531e270
JS
1242 if ($c eq $sender) {
1243 next if ($suppress_cc{'self'});
1244 } else {
1245 next if $suppress_cc{'sob'} and $what =~ /Signed-off-by/i;
1246 next if $suppress_cc{'bodycc'} and $what =~ /Cc/i;
1247 }
5012699d 1248 push @cc, $c;
3531e270 1249 printf("(body) Adding cc: %s from line '%s'\n",
5012699d
JS
1250 $c, $_) unless $quiet;
1251 }
1252 }
f9237e61 1253 close $fh;
324a8bd0 1254
65648283 1255 if (defined $cc_cmd && !$suppress_cc{'cccmd'}) {
f9237e61 1256 open my $fh, "$cc_cmd \Q$t\E |"
324a8bd0 1257 or die "(cc-cmd) Could not execute '$cc_cmd'";
f9237e61 1258 while(<$fh>) {
324a8bd0
JP
1259 my $c = $_;
1260 $c =~ s/^\s*//g;
1261 $c =~ s/\n$//g;
620bb245 1262 next if ($c eq $sender and $suppress_from);
324a8bd0
JP
1263 push @cc, $c;
1264 printf("(cc-cmd) Adding cc: %s from: '%s'\n",
1265 $c, $cc_cmd) unless $quiet;
1266 }
f9237e61 1267 close $fh
324a8bd0
JP
1268 or die "(cc-cmd) failed to close pipe to '$cc_cmd'";
1269 }
1270
3cae7e5b
TR
1271 if ($broken_encoding{$t} && !$has_content_type) {
1272 $has_content_type = 1;
1273 push @xh, "MIME-Version: 1.0",
1274 "Content-Type: text/plain; charset=$auto_8bit_encoding",
1275 "Content-Transfer-Encoding: 8bit";
1276 $body_encoding = $auto_8bit_encoding;
1277 }
1278
1279 if ($broken_encoding{$t} && !is_rfc2047_quoted($subject)) {
1280 $subject = quote_rfc2047($subject, $auto_8bit_encoding);
1281 }
1282
5012699d 1283 if (defined $author and $author ne $sender) {
94638f89 1284 $message = "From: $author\n\n$message";
8291db6f
JK
1285 if (defined $author_encoding) {
1286 if ($has_content_type) {
1287 if ($body_encoding eq $author_encoding) {
1288 # ok, we already have the right encoding
1289 }
1290 else {
1291 # uh oh, we should re-encode
1292 }
1293 }
1294 else {
3cae7e5b 1295 $has_content_type = 1;
8291db6f
JK
1296 push @xh,
1297 'MIME-Version: 1.0',
8641ee3d
JK
1298 "Content-Type: text/plain; charset=$author_encoding",
1299 'Content-Transfer-Encoding: 8bit';
8291db6f
JK
1300 }
1301 }
8a8e6235 1302 }
83b24437 1303
c1f2aa45
JS
1304 $needs_confirm = (
1305 $confirm eq "always" or
1306 ($confirm =~ /^(?:auto|cc)$/ && @cc) or
1307 ($confirm =~ /^(?:auto|compose)$/ && $compose && $message_num == 1));
1308 $needs_confirm = "inform" if ($needs_confirm && $confirm_unconfigured && @cc);
1309
1310 @cc = (@initial_cc, @cc);
1311
15da1084 1312 my $message_was_sent = send_message();
83b24437
RA
1313
1314 # set up for the next message
95a877a3 1315 if ($thread && $message_was_sent &&
528fb087 1316 (chain_reply_to() || !defined $reply_to || length($reply_to) == 0)) {
78488b2c 1317 $reply_to = $message_id;
7ccf7927 1318 if (length $references > 0) {
a925b89c 1319 $references .= "\n $message_id";
7ccf7927
RA
1320 } else {
1321 $references = "$message_id";
1322 }
78488b2c 1323 }
4f3d3703 1324 $message_id = undef;
83b24437 1325}
e205735d 1326
c1f2aa45 1327cleanup_compose_files();
1f038a0c
RA
1328
1329sub cleanup_compose_files() {
c1f2aa45 1330 unlink($compose_filename, $compose_filename . ".final") if $compose;
1f038a0c
RA
1331}
1332
4bc87a28 1333$smtp->quit if $smtp;
e205735d
RA
1334
1335sub unique_email_list(@) {
1336 my %seen;
1337 my @emails;
1338
1339 foreach my $entry (@_) {
db3106b2
EW
1340 if (my $clean = extract_valid_address($entry)) {
1341 $seen{$clean} ||= 0;
1342 next if $seen{$clean}++;
1343 push @emails, $entry;
1344 } else {
1345 print STDERR "W: unable to extract a valid address",
1346 " from: $entry\n";
1347 }
e205735d
RA
1348 }
1349 return @emails;
1350}
747bbff9
JK
1351
1352sub validate_patch {
1353 my $fn = shift;
1354 open(my $fh, '<', $fn)
1355 or die "unable to open $fn: $!\n";
1356 while (my $line = <$fh>) {
1357 if (length($line) > 998) {
1358 return "$.: patch contains a line longer than 998 characters";
1359 }
1360 }
1361 return undef;
1362}
0706bd19
JK
1363
1364sub file_has_nonascii {
1365 my $fn = shift;
1366 open(my $fh, '<', $fn)
1367 or die "unable to open $fn: $!\n";
1368 while (my $line = <$fh>) {
1369 return 1 if $line =~ /[^[:ascii:]]/;
1370 }
1371 return 0;
1372}
3cae7e5b
TR
1373
1374sub body_or_subject_has_nonascii {
1375 my $fn = shift;
1376 open(my $fh, '<', $fn)
1377 or die "unable to open $fn: $!\n";
1378 while (my $line = <$fh>) {
1379 last if $line =~ /^$/;
1380 return 1 if $line =~ /^Subject.*[^[:ascii:]]/;
1381 }
1382 while (my $line = <$fh>) {
1383 return 1 if $line =~ /[^[:ascii:]]/;
1384 }
1385 return 0;
1386}