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