]> git.ipfire.org Git - thirdparty/git.git/blame - git-send-email.perl
send-email: validate patches before sending anything
[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
RA
22use Getopt::Long;
23use Data::Dumper;
412876dc 24use Term::ANSIColor;
3cb8caf7 25use Git;
83b24437 26
412876dc
SE
27$SIG{INT} = sub { print color("reset"), "\n"; exit };
28
280242d1
JH
29package FakeTerm;
30sub new {
31 my ($class, $reason) = @_;
32 return bless \$reason, shift;
33}
34sub readline {
35 my $self = shift;
36 die "Cannot use readline on FakeTerm: $$self";
37}
38package main;
39
1b0baf14
MC
40
41sub usage {
42 print <<EOT;
43git-send-email [options] <file | directory>...
44Options:
45 --from Specify the "From:" line of the email to be sent.
46
47 --to Specify the primary "To:" line of the email.
48
49 --cc Specify an initial "Cc:" list for the entire series
50 of emails.
51
324a8bd0
JP
52 --cc-cmd Specify a command to execute per file which adds
53 per file specific cc address entries
54
1b0baf14
MC
55 --bcc Specify a list of email addresses that should be Bcc:
56 on all the emails.
57
ef0c2abf
AR
58 --compose Use \$GIT_EDITOR, core.editor, \$EDITOR, or \$VISUAL to edit
59 an introductory message for the patch series.
1b0baf14
MC
60
61 --subject Specify the initial "Subject:" line.
62 Only necessary if --compose is also set. If --compose
63 is not set, this will be prompted for.
64
65 --in-reply-to Specify the first "In-Reply-To:" header line.
66 Only used if --compose is also set. If --compose is not
67 set, this will be prompted for.
68
69 --chain-reply-to If set, the replies will all be to the previous
70 email sent, rather than to the first email sent.
71 Defaults to on.
72
5483c71d
AR
73 --signed-off-cc Automatically add email addresses that appear in
74 Signed-off-by: or Cc: lines to the cc: list. Defaults to on.
1b0baf14 75
34cc60ce
DS
76 --identity The configuration identity, a subsection to prioritise over
77 the default section.
78
1b0baf14 79 --smtp-server If set, specifies the outgoing SMTP server to use.
44b2476a
JH
80 Defaults to localhost. Port number can be specified here with
81 hostname:port format or by using --smtp-server-port option.
82
83 --smtp-server-port Specify a port on the outgoing SMTP server to connect to.
1b0baf14 84
34cc60ce
DS
85 --smtp-user The username for SMTP-AUTH.
86
87 --smtp-pass The password for SMTP-AUTH.
88
89 --smtp-ssl If set, connects to the SMTP server using SSL.
90
620bb245 91 --suppress-from Suppress sending emails to yourself. Defaults to off.
1b0baf14 92
5483c71d 93 --thread Specify that the "In-Reply-To:" header should be set on all
e46f7a0e
AR
94 emails. Defaults to on.
95
1b0baf14
MC
96 --quiet Make git-send-email less verbose. One line per email
97 should be all that is output.
98
238cc635
RJ
99 --dry-run Do everything except actually send the emails.
100
f073a592
RJ
101 --envelope-sender Specify the envelope sender used to send the emails.
102
1b0baf14
MC
103EOT
104 exit(1);
105}
106
4bc87a28 107# most mail servers generate the Date: header, but not all...
6bdca890
JN
108sub format_2822_time {
109 my ($time) = @_;
110 my @localtm = localtime($time);
111 my @gmttm = gmtime($time);
112 my $localmin = $localtm[1] + $localtm[2] * 60;
113 my $gmtmin = $gmttm[1] + $gmttm[2] * 60;
114 if ($localtm[0] != $gmttm[0]) {
115 die "local zone differs from GMT by a non-minute interval\n";
116 }
117 if ((($gmttm[6] + 1) % 7) == $localtm[6]) {
118 $localmin += 1440;
119 } elsif ((($gmttm[6] - 1) % 7) == $localtm[6]) {
120 $localmin -= 1440;
121 } elsif ($gmttm[6] != $localtm[6]) {
122 die "local time offset greater than or equal to 24 hours\n";
123 }
124 my $offset = $localmin - $gmtmin;
125 my $offhour = $offset / 60;
126 my $offmin = abs($offset % 60);
127 if (abs($offhour) >= 24) {
128 die ("local time offset greater than or equal to 24 hours\n");
129 }
130
131 return sprintf("%s, %2d %s %d %02d:%02d:%02d %s%02d%02d",
132 qw(Sun Mon Tue Wed Thu Fri Sat)[$localtm[6]],
133 $localtm[3],
134 qw(Jan Feb Mar Apr May Jun
135 Jul Aug Sep Oct Nov Dec)[$localtm[4]],
136 $localtm[5]+1900,
137 $localtm[2],
138 $localtm[1],
139 $localtm[0],
140 ($offset >= 0) ? '+' : '-',
141 abs($offhour),
142 $offmin,
143 );
144}
4bc87a28 145
567ffeb7 146my $have_email_valid = eval { require Email::Valid; 1 };
4bc87a28 147my $smtp;
5f5b6118 148my $auth;
4bc87a28 149
e205735d 150sub unique_email_list(@);
1f038a0c
RA
151sub cleanup_compose_files();
152
153# Constants (essentially)
154my $compose_filename = ".msg.$$";
e205735d 155
83b24437 156# Variables we fill in automatically, or via prompting:
ce91c2f6 157my (@to,@cc,@initial_cc,@bcclist,@xh,
94638f89 158 $initial_reply_to,$initial_subject,@files,$author,$sender,$compose,$time);
83b24437 159
f073a592 160my $envelope_sender;
78488b2c 161
9133261f 162# Example reply to:
83b24437 163#$initial_reply_to = ''; #<20050203173208.GA23964@foobar.com>';
83b24437 164
3cb8caf7 165my $repo = Git->repository();
280242d1
JH
166my $term = eval {
167 new Term::ReadLine 'git-send-email';
168};
169if ($@) {
170 $term = new FakeTerm "$@: going non-interactive";
171}
83b24437 172
5483c71d
AR
173# Behavior modification variables
174my ($quiet, $dry_run) = (0, 0);
175
176# Variables with corresponding config settings
324a8bd0 177my ($thread, $chain_reply_to, $suppress_from, $signed_off_cc, $cc_cmd);
44b2476a
JH
178my ($smtp_server, $smtp_server_port, $smtp_authuser, $smtp_authpass, $smtp_ssl);
179my ($identity, $aliasfiletype, @alias_files, @smtp_host_parts);
5483c71d 180
34cc60ce 181my %config_bool_settings = (
5483c71d
AR
182 "thread" => [\$thread, 1],
183 "chainreplyto" => [\$chain_reply_to, 1],
184 "suppressfrom" => [\$suppress_from, 0],
185 "signedoffcc" => [\$signed_off_cc, 1],
34cc60ce 186 "smtpssl" => [\$smtp_ssl, 0],
e46f7a0e
AR
187);
188
34cc60ce
DS
189my %config_settings = (
190 "smtpserver" => \$smtp_server,
44b2476a 191 "smtpserverport" => \$smtp_server_port,
34cc60ce
DS
192 "smtpuser" => \$smtp_authuser,
193 "smtppass" => \$smtp_authpass,
2db9b49c 194 "to" => \@to,
34cc60ce
DS
195 "cccmd" => \$cc_cmd,
196 "aliasfiletype" => \$aliasfiletype,
197 "bcc" => \@bcclist,
198 "aliasesfile" => \@alias_files,
199);
4a62d3f5 200
83b24437
RA
201# Begin by accumulating all the variables (defined above), that we will end up
202# needing, first, from the command line:
203
94638f89 204my $rc = GetOptions("sender|from=s" => \$sender,
83b24437
RA
205 "in-reply-to=s" => \$initial_reply_to,
206 "subject=s" => \$initial_subject,
207 "to=s" => \@to,
da140f8b 208 "cc=s" => \@initial_cc,
58063245 209 "bcc=s" => \@bcclist,
78488b2c 210 "chain-reply-to!" => \$chain_reply_to,
3342d850 211 "smtp-server=s" => \$smtp_server,
44b2476a 212 "smtp-server-port=s" => \$smtp_server_port,
34cc60ce
DS
213 "smtp-user=s" => \$smtp_authuser,
214 "smtp-pass=s" => \$smtp_authpass,
215 "smtp-ssl!" => \$smtp_ssl,
216 "identity=s" => \$identity,
1f038a0c 217 "compose" => \$compose,
30d08b34 218 "quiet" => \$quiet,
324a8bd0 219 "cc-cmd=s" => \$cc_cmd,
5483c71d
AR
220 "suppress-from!" => \$suppress_from,
221 "signed-off-cc|signed-off-by-cc!" => \$signed_off_cc,
6130259c 222 "dry-run" => \$dry_run,
f073a592 223 "envelope-sender=s" => \$envelope_sender,
5483c71d 224 "thread!" => \$thread,
83b24437
RA
225 );
226
1b0baf14
MC
227unless ($rc) {
228 usage();
229}
230
34cc60ce
DS
231# Now, let's fill any that aren't set in with defaults:
232
233sub read_config {
234 my ($prefix) = @_;
235
236 foreach my $setting (keys %config_bool_settings) {
237 my $target = $config_bool_settings{$setting}->[0];
238 $$target = $repo->config_bool("$prefix.$setting") unless (defined $$target);
239 }
240
241 foreach my $setting (keys %config_settings) {
242 my $target = $config_settings{$setting};
243 if (ref($target) eq "ARRAY") {
244 unless (@$target) {
245 my @values = $repo->config("$prefix.$setting");
246 @$target = @values if (@values && defined $values[0]);
247 }
248 }
249 else {
250 $$target = $repo->config("$prefix.$setting") unless (defined $$target);
251 }
252 }
253}
254
255# read configuration from [sendemail "$identity"], fall back on [sendemail]
256$identity = $repo->config("sendemail.identity") unless (defined $identity);
257read_config("sendemail.$identity") if (defined $identity);
258read_config("sendemail");
259
260# fall back on builtin bool defaults
261foreach my $setting (values %config_bool_settings) {
262 ${$setting->[0]} = $setting->[1] unless (defined (${$setting->[0]}));
263}
264
265my ($repoauthor) = $repo->ident_person('author');
266my ($repocommitter) = $repo->ident_person('committer');
267
79ee555b
EB
268# Verify the user input
269
270foreach my $entry (@to) {
271 die "Comma in --to entry: $entry'\n" unless $entry !~ m/,/;
272}
273
274foreach my $entry (@initial_cc) {
275 die "Comma in --cc entry: $entry'\n" unless $entry !~ m/,/;
276}
277
278foreach my $entry (@bcclist) {
279 die "Comma in --bcclist entry: $entry'\n" unless $entry !~ m/,/;
280}
281
994d6c66 282my %aliases;
994d6c66
EW
283my %parse_alias = (
284 # multiline formats can be supported in the future
285 mutt => sub { my $fh = shift; while (<$fh>) {
504ceab6 286 if (/^\s*alias\s+(\S+)\s+(.*)$/) {
994d6c66
EW
287 my ($alias, $addr) = ($1, $2);
288 $addr =~ s/#.*$//; # mutt allows # comments
289 # commas delimit multiple addresses
290 $aliases{$alias} = [ split(/\s*,\s*/, $addr) ];
291 }}},
292 mailrc => sub { my $fh = shift; while (<$fh>) {
293 if (/^alias\s+(\S+)\s+(.*)$/) {
294 # spaces delimit multiple addresses
295 $aliases{$1} = [ split(/\s+/, $2) ];
296 }}},
297 pine => sub { my $fh = shift; while (<$fh>) {
2d8ae400 298 if (/^(\S+)\t.*\t(.*)$/) {
994d6c66
EW
299 $aliases{$1} = [ split(/\s*,\s*/, $2) ];
300 }}},
301 gnus => sub { my $fh = shift; while (<$fh>) {
302 if (/\(define-mail-alias\s+"(\S+?)"\s+"(\S+?)"\)/) {
303 $aliases{$1} = [ $2 ];
304 }}}
305);
306
3cb8caf7 307if (@alias_files and $aliasfiletype and defined $parse_alias{$aliasfiletype}) {
994d6c66
EW
308 foreach my $file (@alias_files) {
309 open my $fh, '<', $file or die "opening $file: $!\n";
310 $parse_alias{$aliasfiletype}->($fh);
311 close $fh;
312 }
313}
314
94638f89 315($sender) = expand_aliases($sender) if defined $sender;
ae740a58 316
aa54892f
JK
317# Now that all the defaults are set, process the rest of the command line
318# arguments and collect up the files that need to be processed.
319for my $f (@ARGV) {
320 if (-d $f) {
321 opendir(DH,$f)
322 or die "Failed to opendir $f: $!";
323
324 push @files, grep { -f $_ } map { +$f . "/" . $_ }
325 sort readdir(DH);
326
327 } elsif (-f $f) {
328 push @files, $f;
329
330 } else {
331 print STDERR "Skipping $f - not found.\n";
332 }
333}
334
747bbff9
JK
335foreach my $f (@files) {
336 my $error = validate_patch($f);
337 $error and die "fatal: $f: $error\nwarning: no patches were sent\n";
338}
339
aa54892f
JK
340if (@files) {
341 unless ($quiet) {
342 print $_,"\n" for (@files);
343 }
344} else {
345 print STDERR "\nNo patch files specified!\n\n";
346 usage();
347}
348
1f038a0c 349my $prompting = 0;
94638f89
UKK
350if (!defined $sender) {
351 $sender = $repoauthor || $repocommitter;
8037d1a3 352 do {
94638f89 353 $_ = $term->readline("Who should the emails appear to be from? [$sender] ");
ca9a7d65 354 } while (!defined $_);
8037d1a3 355
94638f89
UKK
356 $sender = $_ if ($_);
357 print "Emails will be sent from: ", $sender, "\n";
1f038a0c 358 $prompting++;
83b24437
RA
359}
360
361if (!@to) {
8037d1a3 362 do {
5825e5b2 363 $_ = $term->readline("Who should the emails be sent to? ",
8037d1a3
RA
364 "");
365 } while (!defined $_);
83b24437
RA
366 my $to = $_;
367 push @to, split /,/, $to;
1f038a0c 368 $prompting++;
83b24437
RA
369}
370
994d6c66
EW
371sub expand_aliases {
372 my @cur = @_;
373 my @last;
374 do {
375 @last = @cur;
376 @cur = map { $aliases{$_} ? @{$aliases{$_}} : $_ } @last;
377 } while (join(',',@cur) ne join(',',@last));
378 return @cur;
379}
380
381@to = expand_aliases(@to);
5b56aaa2 382@to = (map { sanitize_address($_) } @to);
994d6c66 383@initial_cc = expand_aliases(@initial_cc);
58063245 384@bcclist = expand_aliases(@bcclist);
994d6c66 385
1f038a0c 386if (!defined $initial_subject && $compose) {
8037d1a3 387 do {
cb6c162f 388 $_ = $term->readline("What subject should the initial email start with? ",
8037d1a3
RA
389 $initial_subject);
390 } while (!defined $_);
83b24437 391 $initial_subject = $_;
1f038a0c 392 $prompting++;
83b24437
RA
393}
394
5483c71d 395if ($thread && !defined $initial_reply_to && $prompting) {
8037d1a3 396 do {
1f038a0c 397 $_= $term->readline("Message-ID to be used as In-Reply-To for the first email? ",
8037d1a3
RA
398 $initial_reply_to);
399 } while (!defined $_);
400
83b24437
RA
401 $initial_reply_to = $_;
402}
ace9c2a9
JH
403if (defined $initial_reply_to && $_ ne "") {
404 $initial_reply_to =~ s/^\s*<?/</;
405 $initial_reply_to =~ s/>?\s*$/>/;
406}
ace72086 407
34cc60ce 408if (!defined $smtp_server) {
aca7ad76
EW
409 foreach (qw( /usr/sbin/sendmail /usr/lib/sendmail )) {
410 if (-x $_) {
411 $smtp_server = $_;
412 last;
413 }
414 }
415 $smtp_server ||= 'localhost'; # could be 127.0.0.1, too... *shrug*
3342d850
RA
416}
417
1f038a0c
RA
418if ($compose) {
419 # Note that this does not need to be secure, but we will make a small
420 # effort to have it be unique
421 open(C,">",$compose_filename)
422 or die "Failed to open for writing $compose_filename: $!";
94638f89 423 print C "From $sender # This line is ignored.\n";
1f038a0c
RA
424 printf C "Subject: %s\n\n", $initial_subject;
425 printf C <<EOT;
426GIT: Please enter your email below.
427GIT: Lines beginning in "GIT: " will be removed.
428GIT: Consider including an overall diffstat or table of contents
429GIT: for the patch you are writing.
430
431EOT
432 close(C);
433
ef0c2abf 434 my $editor = $ENV{GIT_EDITOR} || $repo->config("core.editor") || $ENV{VISUAL} || $ENV{EDITOR} || "vi";
0e0278ba 435 system('sh', '-c', '$0 $@', $editor, $compose_filename);
1f038a0c
RA
436
437 open(C2,">",$compose_filename . ".final")
438 or die "Failed to open $compose_filename.final : " . $!;
439
440 open(C,"<",$compose_filename)
441 or die "Failed to open $compose_filename : " . $!;
442
443 while(<C>) {
444 next if m/^GIT: /;
445 print C2 $_;
446 }
447 close(C);
448 close(C2);
449
450 do {
451 $_ = $term->readline("Send this email? (y|n) ");
452 } while (!defined $_);
453
454 if (uc substr($_,0,1) ne 'Y') {
455 cleanup_compose_files();
456 exit(0);
457 }
458
459 @files = ($compose_filename . ".final");
460}
461
83b24437 462# Variables we set as part of the loop over files
af068d27 463our ($message_id, %mail, $subject, $reply_to, $references, $message);
83b24437 464
567ffeb7
EW
465sub extract_valid_address {
466 my $address = shift;
ad9c18f5 467 my $local_part_regexp = '[^<>"\s@]+';
09302e17 468 my $domain_regexp = '[^.<>"\s@]+(?:\.[^.<>"\s@]+)+';
db3106b2
EW
469
470 # check for a local address:
ad9c18f5 471 return $address if ($address =~ /^($local_part_regexp)$/);
db3106b2 472
155197e6 473 $address =~ s/^\s*<(.*)>\s*$/$1/;
567ffeb7 474 if ($have_email_valid) {
ad9c18f5 475 return scalar Email::Valid->address($address);
567ffeb7
EW
476 } else {
477 # less robust/correct than the monster regexp in Email::Valid,
478 # but still does a 99% job, and one less dependency
ad9c18f5 479 $address =~ /($local_part_regexp\@$domain_regexp)/;
e96fd305 480 return $1;
567ffeb7
EW
481 }
482}
83b24437
RA
483
484# Usually don't need to change anything below here.
485
486# we make a "fake" message id by taking the current number
487# of seconds since the beginning of Unix time and tacking on
488# a random number to the end, in case we are called quicker than
489# 1 second since the last time we were called.
8037d1a3
RA
490
491# We'll setup a template for the message id, using the "from" address:
8037d1a3 492
be510cfe 493my ($message_id_stamp, $message_id_serial);
83b24437
RA
494sub make_message_id
495{
be510cfe
JH
496 my $uniq;
497 if (!defined $message_id_stamp) {
498 $message_id_stamp = sprintf("%s-%s", time, $$);
499 $message_id_serial = 0;
500 }
501 $message_id_serial++;
502 $uniq = "$message_id_stamp-$message_id_serial";
503
aeb59328 504 my $du_part;
94638f89
UKK
505 for ($sender, $repocommitter, $repoauthor) {
506 $du_part = extract_valid_address(sanitize_address($_));
507 last if (defined $du_part and $du_part ne '');
aeb59328 508 }
94638f89 509 if (not defined $du_part or $du_part eq '') {
aeb59328
JH
510 use Sys::Hostname qw();
511 $du_part = 'user@' . Sys::Hostname::hostname();
512 }
be510cfe
JH
513 my $message_id_template = "<%s-git-send-email-%s>";
514 $message_id = sprintf($message_id_template, $uniq, $du_part);
8037d1a3 515 #print "new message id = $message_id\n"; # Was useful for debugging
83b24437
RA
516}
517
518
519
a5370b16 520$time = time - scalar $#files;
83b24437 521
374c5905
JR
522sub unquote_rfc2047 {
523 local ($_) = @_;
8291db6f
JK
524 my $encoding;
525 if (s/=\?([^?]+)\?q\?(.*)\?=/$2/g) {
526 $encoding = $1;
374c5905
JR
527 s/_/ /g;
528 s/=([0-9A-F]{2})/chr(hex($1))/eg;
529 }
8291db6f 530 return wantarray ? ($_, $encoding) : $_;
374c5905
JR
531}
532
5b56aaa2
UKK
533# use the simplest quoting being able to handle the recipient
534sub sanitize_address
732263d4
RJ
535{
536 my ($recipient) = @_;
5b56aaa2
UKK
537 my ($recipient_name, $recipient_addr) = ($recipient =~ /^(.*?)\s*(<.*)/);
538
539 if (not $recipient_name) {
540 return "$recipient";
541 }
542
543 # if recipient_name is already quoted, do nothing
544 if ($recipient_name =~ /^(".*"|=\?utf-8\?q\?.*\?=)$/) {
545 return $recipient;
546 }
547
548 # rfc2047 is needed if a non-ascii char is included
549 if ($recipient_name =~ /[^[:ascii:]]/) {
550 $recipient_name =~ s/([^-a-zA-Z0-9!*+\/])/sprintf("=%02X", ord($1))/eg;
551 $recipient_name =~ s/(.*)/=\?utf-8\?q\?$1\?=/;
732263d4 552 }
5b56aaa2
UKK
553
554 # double quotes are needed if specials or CTLs are included
555 elsif ($recipient_name =~ /[][()<>@,;:\\".\000-\037\177]/) {
556 $recipient_name =~ s/(["\\\r])/\\$1/;
557 $recipient_name = "\"$recipient_name\"";
558 }
559
560 return "$recipient_name $recipient_addr";
561
732263d4
RJ
562}
563
83b24437
RA
564sub send_message
565{
4bc87a28 566 my @recipients = unique_email_list(@to);
7ac17529
ABH
567 @cc = (grep { my $cc = extract_valid_address($_);
568 not grep { $cc eq $_ } @recipients
569 }
570 map { sanitize_address($_) }
571 @cc);
4bc87a28 572 my $to = join (",\n\t", @recipients);
58063245 573 @recipients = unique_email_list(@recipients,@cc,@bcclist);
c38f0247 574 @recipients = (map { extract_valid_address($_) } @recipients);
6bdca890 575 my $date = format_2822_time($time++);
e923effb
ML
576 my $gitversion = '@@GIT_VERSION@@';
577 if ($gitversion =~ m/..GIT_VERSION../) {
3cb8caf7 578 $gitversion = Git::version();
e923effb 579 }
4bc87a28 580
af068d27 581 my $cc = join(", ", unique_email_list(@cc));
f06a6a49
JH
582 my $ccline = "";
583 if ($cc ne '') {
584 $ccline = "\nCc: $cc";
585 }
94638f89 586 my $sanitized_sender = sanitize_address($sender);
4f3d3703 587 make_message_id() unless defined($message_id);
aeb59328 588
94638f89 589 my $header = "From: $sanitized_sender
f06a6a49 590To: $to${ccline}
4bc87a28 591Subject: $subject
4bc87a28
EW
592Date: $date
593Message-Id: $message_id
e923effb 594X-Mailer: git-send-email $gitversion
4bc87a28 595";
5483c71d 596 if ($thread && $reply_to) {
7ccf7927
RA
597
598 $header .= "In-Reply-To: $reply_to\n";
599 $header .= "References: $references\n";
600 }
ce91c2f6
JH
601 if (@xh) {
602 $header .= join("\n", @xh) . "\n";
603 }
4bc87a28 604
c38f0247 605 my @sendmail_parameters = ('-i', @recipients);
94638f89 606 my $raw_from = $sanitized_sender;
f073a592
RJ
607 $raw_from = $envelope_sender if (defined $envelope_sender);
608 $raw_from = extract_valid_address($raw_from);
609 unshift (@sendmail_parameters,
610 '-f', $raw_from) if(defined $envelope_sender);
8e3d436b 611
6130259c
MW
612 if ($dry_run) {
613 # We don't want to send the email.
614 } elsif ($smtp_server =~ m#^/#) {
aca7ad76
EW
615 my $pid = open my $sm, '|-';
616 defined $pid or die $!;
617 if (!$pid) {
8e3d436b 618 exec($smtp_server, @sendmail_parameters) or die $!;
aca7ad76
EW
619 }
620 print $sm "$header\n$message";
621 close $sm or die $?;
622 } else {
44b2476a
JH
623
624 if (!defined $smtp_server) {
625 die "The required SMTP server is not properly defined."
626 }
627
34cc60ce 628 if ($smtp_ssl) {
44b2476a 629 $smtp_server_port ||= 465; # ssmtp
34cc60ce 630 require Net::SMTP::SSL;
44b2476a 631 $smtp ||= Net::SMTP::SSL->new($smtp_server, Port => $smtp_server_port);
34cc60ce
DS
632 }
633 else {
634 require Net::SMTP;
44b2476a
JH
635 $smtp ||= Net::SMTP->new((defined $smtp_server_port)
636 ? "$smtp_server:$smtp_server_port"
637 : $smtp_server);
638 }
639
640 if (!$smtp) {
641 die "Unable to initialize SMTP properly. Is there something wrong with your config?";
642 }
643
644 if ((defined $smtp_authuser) && (defined $smtp_authpass)) {
5f5b6118 645 $auth ||= $smtp->auth( $smtp_authuser, $smtp_authpass ) or die $smtp->message;
34cc60ce 646 }
2b69bfc2 647 $smtp->mail( $raw_from ) or die $smtp->message;
aca7ad76
EW
648 $smtp->to( @recipients ) or die $smtp->message;
649 $smtp->data or die $smtp->message;
650 $smtp->datasend("$header\n$message") or die $smtp->message;
651 $smtp->dataend() or die $smtp->message;
652 $smtp->ok or die "Failed to send $subject\n".$smtp->message;
653 }
2718435b 654 if ($quiet) {
71c7da94 655 printf (($dry_run ? "Dry-" : "")."Sent %s\n", $subject);
2718435b 656 } else {
b7f30e0a 657 print (($dry_run ? "Dry-" : "")."OK. Log says:\n");
2b69bfc2 658 if ($smtp_server !~ m#^/#) {
aca7ad76 659 print "Server: $smtp_server\n";
2b69bfc2
RJ
660 print "MAIL FROM:<$raw_from>\n";
661 print "RCPT TO:".join(',',(map { "<$_>" } @recipients))."\n";
aca7ad76 662 } else {
8e3d436b 663 print "Sendmail: $smtp_server ".join(' ',@sendmail_parameters)."\n";
aca7ad76 664 }
b7f30e0a 665 print $header, "\n";
aca7ad76
EW
666 if ($smtp) {
667 print "Result: ", $smtp->code, ' ',
668 ($smtp->message =~ /\n([^\n]+\n)$/s), "\n";
669 } else {
670 print "Result: OK\n";
671 }
30d08b34 672 }
83b24437
RA
673}
674
83b24437 675$reply_to = $initial_reply_to;
2186d566 676$references = $initial_reply_to || '';
83b24437
RA
677$subject = $initial_subject;
678
679foreach my $t (@files) {
83b24437
RA
680 open(F,"<",$t) or die "can't open file $t";
681
94638f89 682 my $author = undef;
8291db6f
JK
683 my $author_encoding;
684 my $has_content_type;
685 my $body_encoding;
da140f8b 686 @cc = @initial_cc;
ce91c2f6 687 @xh = ();
e6b0964a 688 my $input_format = undef;
83b24437
RA
689 my $header_done = 0;
690 $message = "";
691 while(<F>) {
692 if (!$header_done) {
e6b0964a
JH
693 if (/^From /) {
694 $input_format = 'mbox';
695 next;
696 }
83b24437 697 chomp;
e6b0964a
JH
698 if (!defined $input_format && /^[-A-Za-z]+:\s/) {
699 $input_format = 'mbox';
700 }
83b24437 701
e6b0964a 702 if (defined $input_format && $input_format eq 'mbox') {
83b24437
RA
703 if (/^Subject:\s+(.*)$/) {
704 $subject = $1;
705
706 } elsif (/^(Cc|From):\s+(.*)$/) {
94638f89 707 if (unquote_rfc2047($2) eq $sender) {
8a8e6235
JH
708 next if ($suppress_from);
709 }
68d42c41 710 elsif ($1 eq 'From') {
8291db6f
JK
711 ($author, $author_encoding)
712 = unquote_rfc2047($2);
8a8e6235 713 }
83b24437 714 printf("(mbox) Adding cc: %s from line '%s'\n",
2718435b 715 $2, $_) unless $quiet;
83b24437
RA
716 push @cc, $2;
717 }
8291db6f
JK
718 elsif (/^Content-type:/i) {
719 $has_content_type = 1;
720 if (/charset="?[^ "]+/) {
721 $body_encoding = $1;
722 }
723 push @xh, $_;
724 }
4f3d3703
JK
725 elsif (/^Message-Id: (.*)/i) {
726 $message_id = $1;
727 }
1d6a003a 728 elsif (!/^Date:\s/ && /^[-A-Za-z]+:\s+\S/) {
ce91c2f6
JH
729 push @xh, $_;
730 }
83b24437
RA
731
732 } else {
733 # In the traditional
734 # "send lots of email" format,
735 # line 1 = cc
736 # line 2 = subject
737 # So let's support that, too.
e6b0964a 738 $input_format = 'lots';
83b24437
RA
739 if (@cc == 0) {
740 printf("(non-mbox) Adding cc: %s from line '%s'\n",
2718435b 741 $_, $_) unless $quiet;
83b24437
RA
742
743 push @cc, $_;
744
745 } elsif (!defined $subject) {
746 $subject = $_;
747 }
748 }
5825e5b2 749
83b24437
RA
750 # A whitespace line will terminate the headers
751 if (m/^\s*$/) {
752 $header_done = 1;
753 }
754 } else {
755 $message .= $_;
5483c71d 756 if (/^(Signed-off-by|Cc): (.*)$/i && $signed_off_cc) {
abec100c 757 my $c = $2;
83b24437 758 chomp $c;
620bb245 759 next if ($c eq $sender and $suppress_from);
83b24437
RA
760 push @cc, $c;
761 printf("(sob) Adding cc: %s from line '%s'\n",
2718435b 762 $c, $_) unless $quiet;
83b24437
RA
763 }
764 }
765 }
766 close F;
324a8bd0 767
34cc60ce 768 if (defined $cc_cmd) {
324a8bd0
JP
769 open(F, "$cc_cmd $t |")
770 or die "(cc-cmd) Could not execute '$cc_cmd'";
771 while(<F>) {
772 my $c = $_;
773 $c =~ s/^\s*//g;
774 $c =~ s/\n$//g;
620bb245 775 next if ($c eq $sender and $suppress_from);
324a8bd0
JP
776 push @cc, $c;
777 printf("(cc-cmd) Adding cc: %s from: '%s'\n",
778 $c, $cc_cmd) unless $quiet;
779 }
780 close F
781 or die "(cc-cmd) failed to close pipe to '$cc_cmd'";
782 }
783
94638f89
UKK
784 if (defined $author) {
785 $message = "From: $author\n\n$message";
8291db6f
JK
786 if (defined $author_encoding) {
787 if ($has_content_type) {
788 if ($body_encoding eq $author_encoding) {
789 # ok, we already have the right encoding
790 }
791 else {
792 # uh oh, we should re-encode
793 }
794 }
795 else {
796 push @xh,
797 'MIME-Version: 1.0',
8641ee3d
JK
798 "Content-Type: text/plain; charset=$author_encoding",
799 'Content-Transfer-Encoding: 8bit';
8291db6f
JK
800 }
801 }
8a8e6235 802 }
83b24437 803
83b24437
RA
804 send_message();
805
806 # set up for the next message
bc108f63 807 if ($chain_reply_to || !defined $reply_to || length($reply_to) == 0) {
78488b2c 808 $reply_to = $message_id;
7ccf7927 809 if (length $references > 0) {
a925b89c 810 $references .= "\n $message_id";
7ccf7927
RA
811 } else {
812 $references = "$message_id";
813 }
78488b2c 814 }
4f3d3703 815 $message_id = undef;
83b24437 816}
e205735d 817
1f038a0c
RA
818if ($compose) {
819 cleanup_compose_files();
820}
821
822sub cleanup_compose_files() {
823 unlink($compose_filename, $compose_filename . ".final");
824
825}
826
4bc87a28 827$smtp->quit if $smtp;
e205735d
RA
828
829sub unique_email_list(@) {
830 my %seen;
831 my @emails;
832
833 foreach my $entry (@_) {
db3106b2
EW
834 if (my $clean = extract_valid_address($entry)) {
835 $seen{$clean} ||= 0;
836 next if $seen{$clean}++;
837 push @emails, $entry;
838 } else {
839 print STDERR "W: unable to extract a valid address",
840 " from: $entry\n";
841 }
e205735d
RA
842 }
843 return @emails;
844}
747bbff9
JK
845
846sub validate_patch {
847 my $fn = shift;
848 open(my $fh, '<', $fn)
849 or die "unable to open $fn: $!\n";
850 while (my $line = <$fh>) {
851 if (length($line) > 998) {
852 return "$.: patch contains a line longer than 998 characters";
853 }
854 }
855 return undef;
856}