blob: 9e568bf9c012b610fd8db7e4444cb7ff8c6e0a0f [file] [log] [blame]
Ryan Anderson83b24432005-07-31 04:17:25 -04001#!/usr/bin/perl -w
Ryan Anderson83b24432005-07-31 04:17:25 -04002#
Ryan Andersonf3d9f352005-07-31 20:04:24 -04003# Copyright 2002,2005 Greg Kroah-Hartman <greg@kroah.com>
4# Copyright 2005 Ryan Anderson <ryan@michonline.com>
Ryan Anderson83b24432005-07-31 04:17:25 -04005#
6# GPL v2 (See COPYING)
Junio C Hamano5825e5b2005-07-31 23:05:16 -07007#
Ryan Anderson83b24432005-07-31 04:17:25 -04008# Ported to support git "mbox" format files by Ryan Anderson <ryan@michonline.com>
9#
Ryan Andersonf3d9f352005-07-31 20:04:24 -040010# Sends a collection of emails to the given email addresses, disturbingly fast.
Junio C Hamano5825e5b2005-07-31 23:05:16 -070011#
Ryan Andersonf3d9f352005-07-31 20:04:24 -040012# 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:
Junio C Hamano5825e5b2005-07-31 23:05:16 -070015# first line of the message is who to CC,
Ryan Andersonf3d9f352005-07-31 20:04:24 -040016# and second line is the subject of the message.
Junio C Hamano5825e5b2005-07-31 23:05:16 -070017#
Ryan Anderson83b24432005-07-31 04:17:25 -040018
19use strict;
20use warnings;
21use Term::ReadLine;
Ryan Anderson83b24432005-07-31 04:17:25 -040022use Getopt::Long;
23use Data::Dumper;
Sean Estabrooks412876d2007-08-17 17:38:25 -040024use Term::ANSIColor;
Petr Baudis3cb8caf2006-07-03 22:47:58 +020025use Git;
Ryan Anderson83b24432005-07-31 04:17:25 -040026
Junio C Hamano280242d2006-07-02 16:03:59 -070027package FakeTerm;
28sub new {
29 my ($class, $reason) = @_;
30 return bless \$reason, shift;
31}
32sub readline {
33 my $self = shift;
34 die "Cannot use readline on FakeTerm: $$self";
35}
36package main;
37
Michael Coleman1b0baf12007-02-27 22:47:54 -060038
39sub usage {
40 print <<EOT;
41git-send-email [options] <file | directory>...
42Options:
43 --from Specify the "From:" line of the email to be sent.
44
45 --to Specify the primary "To:" line of the email.
46
47 --cc Specify an initial "Cc:" list for the entire series
48 of emails.
49
Joe Perches324a8bd2007-08-17 18:51:12 -070050 --cc-cmd Specify a command to execute per file which adds
51 per file specific cc address entries
52
Michael Coleman1b0baf12007-02-27 22:47:54 -060053 --bcc Specify a list of email addresses that should be Bcc:
54 on all the emails.
55
Adam Robenef0c2ab2007-07-19 22:09:35 -070056 --compose Use \$GIT_EDITOR, core.editor, \$EDITOR, or \$VISUAL to edit
57 an introductory message for the patch series.
Michael Coleman1b0baf12007-02-27 22:47:54 -060058
59 --subject Specify the initial "Subject:" line.
60 Only necessary if --compose is also set. If --compose
61 is not set, this will be prompted for.
62
63 --in-reply-to Specify the first "In-Reply-To:" header line.
64 Only used if --compose is also set. If --compose is not
65 set, this will be prompted for.
66
67 --chain-reply-to If set, the replies will all be to the previous
68 email sent, rather than to the first email sent.
69 Defaults to on.
70
Adam Roben5483c712007-06-27 20:59:37 -070071 --signed-off-cc Automatically add email addresses that appear in
72 Signed-off-by: or Cc: lines to the cc: list. Defaults to on.
Michael Coleman1b0baf12007-02-27 22:47:54 -060073
Douglas Stockwell34cc60c2007-09-03 03:06:25 +090074 --identity The configuration identity, a subsection to prioritise over
75 the default section.
76
Michael Coleman1b0baf12007-02-27 22:47:54 -060077 --smtp-server If set, specifies the outgoing SMTP server to use.
Junio C Hamano44b24762007-09-25 17:27:54 -070078 Defaults to localhost. Port number can be specified here with
79 hostname:port format or by using --smtp-server-port option.
80
81 --smtp-server-port Specify a port on the outgoing SMTP server to connect to.
Michael Coleman1b0baf12007-02-27 22:47:54 -060082
Douglas Stockwell34cc60c2007-09-03 03:06:25 +090083 --smtp-user The username for SMTP-AUTH.
84
85 --smtp-pass The password for SMTP-AUTH.
86
87 --smtp-ssl If set, connects to the SMTP server using SSL.
88
David Brown65648282007-12-25 19:56:29 -080089 --suppress-cc Suppress the specified category of auto-CC. The category
90 can be one of 'author' for the patch author, 'self' to
91 avoid copying yourself, 'sob' for Signed-off-by lines,
92 'cccmd' for the output of the cccmd, or 'all' to suppress
93 all of these.
94
Uwe Kleine-König620bb242007-11-07 08:34:12 +010095 --suppress-from Suppress sending emails to yourself. Defaults to off.
Michael Coleman1b0baf12007-02-27 22:47:54 -060096
Adam Roben5483c712007-06-27 20:59:37 -070097 --thread Specify that the "In-Reply-To:" header should be set on all
Adam Robene46f7a02007-06-26 15:48:30 -070098 emails. Defaults to on.
99
Michael Coleman1b0baf12007-02-27 22:47:54 -0600100 --quiet Make git-send-email less verbose. One line per email
101 should be all that is output.
102
Robin H. Johnson238cc632007-04-25 19:37:15 -0700103 --dry-run Do everything except actually send the emails.
104
Robin H. Johnsonf073a592007-04-25 19:37:22 -0700105 --envelope-sender Specify the envelope sender used to send the emails.
106
Jeff Kingc764a0c2008-01-18 09:20:10 -0500107 --no-validate Don't perform any sanity checks on patches.
108
Michael Coleman1b0baf12007-02-27 22:47:54 -0600109EOT
110 exit(1);
111}
112
Eric Wong4bc87a22006-03-25 17:20:48 -0800113# most mail servers generate the Date: header, but not all...
Jakub Narebski6bdca892006-07-07 20:57:55 +0200114sub format_2822_time {
115 my ($time) = @_;
116 my @localtm = localtime($time);
117 my @gmttm = gmtime($time);
118 my $localmin = $localtm[1] + $localtm[2] * 60;
119 my $gmtmin = $gmttm[1] + $gmttm[2] * 60;
120 if ($localtm[0] != $gmttm[0]) {
121 die "local zone differs from GMT by a non-minute interval\n";
122 }
123 if ((($gmttm[6] + 1) % 7) == $localtm[6]) {
124 $localmin += 1440;
125 } elsif ((($gmttm[6] - 1) % 7) == $localtm[6]) {
126 $localmin -= 1440;
127 } elsif ($gmttm[6] != $localtm[6]) {
128 die "local time offset greater than or equal to 24 hours\n";
129 }
130 my $offset = $localmin - $gmtmin;
131 my $offhour = $offset / 60;
132 my $offmin = abs($offset % 60);
133 if (abs($offhour) >= 24) {
134 die ("local time offset greater than or equal to 24 hours\n");
135 }
136
137 return sprintf("%s, %2d %s %d %02d:%02d:%02d %s%02d%02d",
138 qw(Sun Mon Tue Wed Thu Fri Sat)[$localtm[6]],
139 $localtm[3],
140 qw(Jan Feb Mar Apr May Jun
141 Jul Aug Sep Oct Nov Dec)[$localtm[4]],
142 $localtm[5]+1900,
143 $localtm[2],
144 $localtm[1],
145 $localtm[0],
146 ($offset >= 0) ? '+' : '-',
147 abs($offhour),
148 $offmin,
149 );
150}
Eric Wong4bc87a22006-03-25 17:20:48 -0800151
Eric Wong567ffeb2006-03-25 16:47:12 -0800152my $have_email_valid = eval { require Email::Valid; 1 };
Eric Wong4bc87a22006-03-25 17:20:48 -0800153my $smtp;
Wincent Colaiuta5f5b6112007-11-21 13:35:05 +0100154my $auth;
Eric Wong4bc87a22006-03-25 17:20:48 -0800155
Ryan Andersone2057352005-08-02 21:45:22 -0400156sub unique_email_list(@);
Ryan Anderson1f038a02005-09-05 01:13:07 -0400157sub cleanup_compose_files();
158
159# Constants (essentially)
160my $compose_filename = ".msg.$$";
Ryan Andersone2057352005-08-02 21:45:22 -0400161
Ryan Anderson83b24432005-07-31 04:17:25 -0400162# Variables we fill in automatically, or via prompting:
Junio C Hamanoce91c2f2006-10-05 16:36:49 -0700163my (@to,@cc,@initial_cc,@bcclist,@xh,
Michael Witten2363d742008-02-03 19:53:56 -0500164 $initial_reply_to,$initial_subject,@files,$author,$sender,$smtp_authpass,$compose,$time);
Ryan Anderson83b24432005-07-31 04:17:25 -0400165
Robin H. Johnsonf073a592007-04-25 19:37:22 -0700166my $envelope_sender;
Ryan Anderson78488b22005-07-31 20:04:24 -0400167
Ryan Anderson91332612005-07-31 20:04:24 -0400168# Example reply to:
Ryan Anderson83b24432005-07-31 04:17:25 -0400169#$initial_reply_to = ''; #<20050203173208.GA23964@foobar.com>';
Ryan Anderson83b24432005-07-31 04:17:25 -0400170
Frank Lichtenheldad79c022008-03-14 18:29:30 +0100171my $repo = eval { Git->repository() };
172my @repo = $repo ? ($repo) : ();
Junio C Hamano280242d2006-07-02 16:03:59 -0700173my $term = eval {
Jay Soffian0fb7fc72008-02-21 19:16:04 -0500174 $ENV{"GIT_SEND_EMAIL_NOTTY"}
175 ? new Term::ReadLine 'git-send-email', \*STDIN, \*STDOUT
176 : new Term::ReadLine 'git-send-email';
Junio C Hamano280242d2006-07-02 16:03:59 -0700177};
178if ($@) {
179 $term = new FakeTerm "$@: going non-interactive";
180}
Ryan Anderson83b24432005-07-31 04:17:25 -0400181
Adam Roben5483c712007-06-27 20:59:37 -0700182# Behavior modification variables
183my ($quiet, $dry_run) = (0, 0);
184
185# Variables with corresponding config settings
Joe Perches324a8bd2007-08-17 18:51:12 -0700186my ($thread, $chain_reply_to, $suppress_from, $signed_off_cc, $cc_cmd);
Michael Witten2363d742008-02-03 19:53:56 -0500187my ($smtp_server, $smtp_server_port, $smtp_authuser, $smtp_ssl);
Junio C Hamano44b24762007-09-25 17:27:54 -0700188my ($identity, $aliasfiletype, @alias_files, @smtp_host_parts);
Jeff Kingc764a0c2008-01-18 09:20:10 -0500189my ($no_validate);
David Brown65648282007-12-25 19:56:29 -0800190my (@suppress_cc);
Adam Roben5483c712007-06-27 20:59:37 -0700191
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900192my %config_bool_settings = (
Adam Roben5483c712007-06-27 20:59:37 -0700193 "thread" => [\$thread, 1],
194 "chainreplyto" => [\$chain_reply_to, 1],
David Brown65648282007-12-25 19:56:29 -0800195 "suppressfrom" => [\$suppress_from, undef],
196 "signedoffcc" => [\$signed_off_cc, undef],
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900197 "smtpssl" => [\$smtp_ssl, 0],
Adam Robene46f7a02007-06-26 15:48:30 -0700198);
199
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900200my %config_settings = (
201 "smtpserver" => \$smtp_server,
Junio C Hamano44b24762007-09-25 17:27:54 -0700202 "smtpserverport" => \$smtp_server_port,
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900203 "smtpuser" => \$smtp_authuser,
204 "smtppass" => \$smtp_authpass,
Miklos Vajna2db9b492007-10-01 14:42:42 +0200205 "to" => \@to,
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900206 "cccmd" => \$cc_cmd,
207 "aliasfiletype" => \$aliasfiletype,
208 "bcc" => \@bcclist,
209 "aliasesfile" => \@alias_files,
David Brown65648282007-12-25 19:56:29 -0800210 "suppresscc" => \@suppress_cc,
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900211);
Avi Kivity4a62d3f2007-03-11 19:19:44 +0200212
Michael Witten87429972008-02-03 19:53:57 -0500213# Handle Uncouth Termination
214sub signal_handler {
215
216 # Make text normal
217 print color("reset"), "\n";
218
219 # SMTP password masked
220 system "stty echo";
221
222 # tmp files from --compose
223 if (-e $compose_filename) {
224 print "'$compose_filename' contains an intermediate version of the email you were composing.\n";
225 }
226 if (-e ($compose_filename . ".final")) {
227 print "'$compose_filename.final' contains the composed email.\n"
228 }
229
230 exit;
231};
232
233$SIG{TERM} = \&signal_handler;
234$SIG{INT} = \&signal_handler;
235
Ryan Anderson83b24432005-07-31 04:17:25 -0400236# Begin by accumulating all the variables (defined above), that we will end up
237# needing, first, from the command line:
238
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200239my $rc = GetOptions("sender|from=s" => \$sender,
Ryan Anderson83b24432005-07-31 04:17:25 -0400240 "in-reply-to=s" => \$initial_reply_to,
241 "subject=s" => \$initial_subject,
242 "to=s" => \@to,
Ryan Andersonda140f82006-02-13 03:05:15 -0500243 "cc=s" => \@initial_cc,
Ryan Anderson58063242006-05-29 12:30:13 -0700244 "bcc=s" => \@bcclist,
Ryan Anderson78488b22005-07-31 20:04:24 -0400245 "chain-reply-to!" => \$chain_reply_to,
Ryan Anderson3342d852005-07-31 20:04:24 -0400246 "smtp-server=s" => \$smtp_server,
Junio C Hamano44b24762007-09-25 17:27:54 -0700247 "smtp-server-port=s" => \$smtp_server_port,
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900248 "smtp-user=s" => \$smtp_authuser,
Michael Witten2363d742008-02-03 19:53:56 -0500249 "smtp-pass:s" => \$smtp_authpass,
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900250 "smtp-ssl!" => \$smtp_ssl,
251 "identity=s" => \$identity,
Ryan Anderson1f038a02005-09-05 01:13:07 -0400252 "compose" => \$compose,
Ryan Anderson30d08b32006-02-02 11:56:06 -0500253 "quiet" => \$quiet,
Joe Perches324a8bd2007-08-17 18:51:12 -0700254 "cc-cmd=s" => \$cc_cmd,
Adam Roben5483c712007-06-27 20:59:37 -0700255 "suppress-from!" => \$suppress_from,
David Brown65648282007-12-25 19:56:29 -0800256 "suppress-cc=s" => \@suppress_cc,
Adam Roben5483c712007-06-27 20:59:37 -0700257 "signed-off-cc|signed-off-by-cc!" => \$signed_off_cc,
Matthew Wilcox61302592006-10-10 08:58:23 -0600258 "dry-run" => \$dry_run,
Robin H. Johnsonf073a592007-04-25 19:37:22 -0700259 "envelope-sender=s" => \$envelope_sender,
Adam Roben5483c712007-06-27 20:59:37 -0700260 "thread!" => \$thread,
Jeff Kingc764a0c2008-01-18 09:20:10 -0500261 "no-validate" => \$no_validate,
Ryan Anderson83b24432005-07-31 04:17:25 -0400262 );
263
Michael Coleman1b0baf12007-02-27 22:47:54 -0600264unless ($rc) {
265 usage();
266}
267
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900268# Now, let's fill any that aren't set in with defaults:
269
270sub read_config {
271 my ($prefix) = @_;
272
273 foreach my $setting (keys %config_bool_settings) {
274 my $target = $config_bool_settings{$setting}->[0];
Frank Lichtenheldad79c022008-03-14 18:29:30 +0100275 $$target = Git::config_bool(@repo, "$prefix.$setting") unless (defined $$target);
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900276 }
277
278 foreach my $setting (keys %config_settings) {
279 my $target = $config_settings{$setting};
280 if (ref($target) eq "ARRAY") {
281 unless (@$target) {
Frank Lichtenheldad79c022008-03-14 18:29:30 +0100282 my @values = Git::config(@repo, "$prefix.$setting");
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900283 @$target = @values if (@values && defined $values[0]);
284 }
285 }
286 else {
Frank Lichtenheldad79c022008-03-14 18:29:30 +0100287 $$target = Git::config(@repo, "$prefix.$setting") unless (defined $$target);
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900288 }
289 }
290}
291
292# read configuration from [sendemail "$identity"], fall back on [sendemail]
Frank Lichtenheldad79c022008-03-14 18:29:30 +0100293$identity = Git::config(@repo, "sendemail.identity") unless (defined $identity);
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900294read_config("sendemail.$identity") if (defined $identity);
295read_config("sendemail");
296
297# fall back on builtin bool defaults
298foreach my $setting (values %config_bool_settings) {
299 ${$setting->[0]} = $setting->[1] unless (defined (${$setting->[0]}));
300}
301
David Brown65648282007-12-25 19:56:29 -0800302# Set CC suppressions
303my(%suppress_cc);
304if (@suppress_cc) {
305 foreach my $entry (@suppress_cc) {
306 die "Unknown --suppress-cc field: '$entry'\n"
307 unless $entry =~ /^(all|cccmd|cc|author|self|sob)$/;
308 $suppress_cc{$entry} = 1;
309 }
310}
311
312if ($suppress_cc{'all'}) {
313 foreach my $entry (qw (ccmd cc author self sob)) {
314 $suppress_cc{$entry} = 1;
315 }
316 delete $suppress_cc{'all'};
317}
318
319# If explicit old-style ones are specified, they trump --suppress-cc.
320$suppress_cc{'self'} = $suppress_from if defined $suppress_from;
Junio C Hamanoba517952008-03-07 22:12:13 -0800321$suppress_cc{'sob'} = !$signed_off_cc if defined $signed_off_cc;
David Brown65648282007-12-25 19:56:29 -0800322
323# Debugging, print out the suppressions.
324if (0) {
325 print "suppressions:\n";
326 foreach my $entry (keys %suppress_cc) {
327 printf " %-5s -> $suppress_cc{$entry}\n", $entry;
328 }
329}
330
Frank Lichtenheldad79c022008-03-14 18:29:30 +0100331my ($repoauthor, $repocommitter);
332($repoauthor) = Git::ident_person(@repo, 'author');
333($repocommitter) = Git::ident_person(@repo, 'committer');
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900334
Eric W. Biederman79ee5552006-06-21 07:17:31 -0600335# Verify the user input
336
337foreach my $entry (@to) {
338 die "Comma in --to entry: $entry'\n" unless $entry !~ m/,/;
339}
340
341foreach my $entry (@initial_cc) {
342 die "Comma in --cc entry: $entry'\n" unless $entry !~ m/,/;
343}
344
345foreach my $entry (@bcclist) {
346 die "Comma in --bcclist entry: $entry'\n" unless $entry !~ m/,/;
347}
348
Eric Wong994d6c62006-05-14 19:13:44 -0700349my %aliases;
Eric Wong994d6c62006-05-14 19:13:44 -0700350my %parse_alias = (
351 # multiline formats can be supported in the future
352 mutt => sub { my $fh = shift; while (<$fh>) {
Michael Hendricks504ceab2007-05-16 23:15:16 -0600353 if (/^\s*alias\s+(\S+)\s+(.*)$/) {
Eric Wong994d6c62006-05-14 19:13:44 -0700354 my ($alias, $addr) = ($1, $2);
355 $addr =~ s/#.*$//; # mutt allows # comments
356 # commas delimit multiple addresses
357 $aliases{$alias} = [ split(/\s*,\s*/, $addr) ];
358 }}},
359 mailrc => sub { my $fh = shift; while (<$fh>) {
360 if (/^alias\s+(\S+)\s+(.*)$/) {
361 # spaces delimit multiple addresses
362 $aliases{$1} = [ split(/\s+/, $2) ];
363 }}},
364 pine => sub { my $fh = shift; while (<$fh>) {
Kumar Gala2d8ae402007-07-24 09:50:38 -0500365 if (/^(\S+)\t.*\t(.*)$/) {
Eric Wong994d6c62006-05-14 19:13:44 -0700366 $aliases{$1} = [ split(/\s*,\s*/, $2) ];
367 }}},
368 gnus => sub { my $fh = shift; while (<$fh>) {
369 if (/\(define-mail-alias\s+"(\S+?)"\s+"(\S+?)"\)/) {
370 $aliases{$1} = [ $2 ];
371 }}}
372);
373
Petr Baudis3cb8caf2006-07-03 22:47:58 +0200374if (@alias_files and $aliasfiletype and defined $parse_alias{$aliasfiletype}) {
Eric Wong994d6c62006-05-14 19:13:44 -0700375 foreach my $file (@alias_files) {
376 open my $fh, '<', $file or die "opening $file: $!\n";
377 $parse_alias{$aliasfiletype}->($fh);
378 close $fh;
379 }
380}
381
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200382($sender) = expand_aliases($sender) if defined $sender;
Michael Hendricksae740a52007-07-04 19:11:36 -0600383
Jeff Kingaa548922008-01-18 09:19:36 -0500384# Now that all the defaults are set, process the rest of the command line
385# arguments and collect up the files that need to be processed.
386for my $f (@ARGV) {
387 if (-d $f) {
388 opendir(DH,$f)
389 or die "Failed to opendir $f: $!";
390
391 push @files, grep { -f $_ } map { +$f . "/" . $_ }
392 sort readdir(DH);
393
394 } elsif (-f $f) {
395 push @files, $f;
396
397 } else {
398 print STDERR "Skipping $f - not found.\n";
399 }
400}
401
Jeff Kingc764a0c2008-01-18 09:20:10 -0500402if (!$no_validate) {
403 foreach my $f (@files) {
404 my $error = validate_patch($f);
405 $error and die "fatal: $f: $error\nwarning: no patches were sent\n";
406 }
Jeff King747bbff2008-01-18 09:19:48 -0500407}
408
Jeff Kingaa548922008-01-18 09:19:36 -0500409if (@files) {
410 unless ($quiet) {
411 print $_,"\n" for (@files);
412 }
413} else {
414 print STDERR "\nNo patch files specified!\n\n";
415 usage();
416}
417
Ryan Anderson1f038a02005-09-05 01:13:07 -0400418my $prompting = 0;
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200419if (!defined $sender) {
Frank Lichtenheldad79c022008-03-14 18:29:30 +0100420 $sender = $repoauthor || $repocommitter || '';
Michael Witten8a7c56e2008-02-03 19:53:58 -0500421
422 while (1) {
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200423 $_ = $term->readline("Who should the emails appear to be from? [$sender] ");
Michael Witten8a7c56e2008-02-03 19:53:58 -0500424 last if defined $_;
425 print "\n";
426 }
Ryan Anderson8037d1a2005-07-31 20:04:24 -0400427
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200428 $sender = $_ if ($_);
429 print "Emails will be sent from: ", $sender, "\n";
Ryan Anderson1f038a02005-09-05 01:13:07 -0400430 $prompting++;
Ryan Anderson83b24432005-07-31 04:17:25 -0400431}
432
433if (!@to) {
Michael Witten8a7c56e2008-02-03 19:53:58 -0500434
435
436 while (1) {
437 $_ = $term->readline("Who should the emails be sent to? ", "");
438 last if defined $_;
439 print "\n";
440 }
441
Ryan Anderson83b24432005-07-31 04:17:25 -0400442 my $to = $_;
443 push @to, split /,/, $to;
Ryan Anderson1f038a02005-09-05 01:13:07 -0400444 $prompting++;
Ryan Anderson83b24432005-07-31 04:17:25 -0400445}
446
Eric Wong994d6c62006-05-14 19:13:44 -0700447sub expand_aliases {
448 my @cur = @_;
449 my @last;
450 do {
451 @last = @cur;
452 @cur = map { $aliases{$_} ? @{$aliases{$_}} : $_ } @last;
453 } while (join(',',@cur) ne join(',',@last));
454 return @cur;
455}
456
457@to = expand_aliases(@to);
Uwe Kleine-K,Av(Bnig5b56aaa2007-08-06 22:34:50 +0200458@to = (map { sanitize_address($_) } @to);
Eric Wong994d6c62006-05-14 19:13:44 -0700459@initial_cc = expand_aliases(@initial_cc);
Ryan Anderson58063242006-05-29 12:30:13 -0700460@bcclist = expand_aliases(@bcclist);
Eric Wong994d6c62006-05-14 19:13:44 -0700461
Ryan Anderson1f038a02005-09-05 01:13:07 -0400462if (!defined $initial_subject && $compose) {
Michael Witten8a7c56e2008-02-03 19:53:58 -0500463 while (1) {
464 $_ = $term->readline("What subject should the initial email start with? ", $initial_subject);
465 last if defined $_;
466 print "\n";
467 }
468
Ryan Anderson83b24432005-07-31 04:17:25 -0400469 $initial_subject = $_;
Ryan Anderson1f038a02005-09-05 01:13:07 -0400470 $prompting++;
Ryan Anderson83b24432005-07-31 04:17:25 -0400471}
472
Adam Roben5483c712007-06-27 20:59:37 -0700473if ($thread && !defined $initial_reply_to && $prompting) {
Michael Witten8a7c56e2008-02-03 19:53:58 -0500474 while (1) {
475 $_= $term->readline("Message-ID to be used as In-Reply-To for the first email? ", $initial_reply_to);
476 last if defined $_;
477 print "\n";
478 }
Ryan Anderson8037d1a2005-07-31 20:04:24 -0400479
Ryan Anderson83b24432005-07-31 04:17:25 -0400480 $initial_reply_to = $_;
481}
Jay Soffian1ca3d6e2008-02-20 00:55:07 -0500482if (defined $initial_reply_to) {
Jay Soffian0fb7fc72008-02-21 19:16:04 -0500483 $initial_reply_to =~ s/^\s*<?//;
484 $initial_reply_to =~ s/>?\s*$//;
485 $initial_reply_to = "<$initial_reply_to>" if $initial_reply_to ne '';
Junio C Hamanoace9c2a2007-12-10 21:44:42 -0800486}
Mike Hommeyace72082007-12-09 18:17:28 +0100487
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900488if (!defined $smtp_server) {
Eric Wongaca7ad72006-05-15 02:34:44 -0700489 foreach (qw( /usr/sbin/sendmail /usr/lib/sendmail )) {
490 if (-x $_) {
491 $smtp_server = $_;
492 last;
493 }
494 }
495 $smtp_server ||= 'localhost'; # could be 127.0.0.1, too... *shrug*
Ryan Anderson3342d852005-07-31 20:04:24 -0400496}
497
Ryan Anderson1f038a02005-09-05 01:13:07 -0400498if ($compose) {
499 # Note that this does not need to be secure, but we will make a small
500 # effort to have it be unique
501 open(C,">",$compose_filename)
502 or die "Failed to open for writing $compose_filename: $!";
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200503 print C "From $sender # This line is ignored.\n";
Ryan Anderson1f038a02005-09-05 01:13:07 -0400504 printf C "Subject: %s\n\n", $initial_subject;
505 printf C <<EOT;
506GIT: Please enter your email below.
507GIT: Lines beginning in "GIT: " will be removed.
508GIT: Consider including an overall diffstat or table of contents
509GIT: for the patch you are writing.
510
511EOT
512 close(C);
513
Frank Lichtenheldad79c022008-03-14 18:29:30 +0100514 my $editor = $ENV{GIT_EDITOR} || Git::config(@repo, "core.editor") || $ENV{VISUAL} || $ENV{EDITOR} || "vi";
Gustaf Hendeby0e0278b2007-12-22 01:40:52 +0100515 system('sh', '-c', '$0 $@', $editor, $compose_filename);
Ryan Anderson1f038a02005-09-05 01:13:07 -0400516
517 open(C2,">",$compose_filename . ".final")
518 or die "Failed to open $compose_filename.final : " . $!;
519
520 open(C,"<",$compose_filename)
521 or die "Failed to open $compose_filename : " . $!;
522
523 while(<C>) {
524 next if m/^GIT: /;
525 print C2 $_;
526 }
527 close(C);
528 close(C2);
529
Michael Witten8a7c56e2008-02-03 19:53:58 -0500530 while (1) {
Ryan Anderson1f038a02005-09-05 01:13:07 -0400531 $_ = $term->readline("Send this email? (y|n) ");
Michael Witten8a7c56e2008-02-03 19:53:58 -0500532 last if defined $_;
533 print "\n";
534 }
Ryan Anderson1f038a02005-09-05 01:13:07 -0400535
536 if (uc substr($_,0,1) ne 'Y') {
537 cleanup_compose_files();
538 exit(0);
539 }
540
Gustaf Hendeby97394ee2008-01-21 20:57:46 +0100541 @files = ($compose_filename . ".final", @files);
Ryan Anderson1f038a02005-09-05 01:13:07 -0400542}
543
Ryan Anderson83b24432005-07-31 04:17:25 -0400544# Variables we set as part of the loop over files
Robin H. Johnsonaf068d22007-04-25 19:37:18 -0700545our ($message_id, %mail, $subject, $reply_to, $references, $message);
Ryan Anderson83b24432005-07-31 04:17:25 -0400546
Eric Wong567ffeb2006-03-25 16:47:12 -0800547sub extract_valid_address {
548 my $address = shift;
Junio C Hamanoad9c18f2006-06-06 00:05:56 -0700549 my $local_part_regexp = '[^<>"\s@]+';
Junio C Hamano09302e12006-06-06 14:12:46 -0700550 my $domain_regexp = '[^.<>"\s@]+(?:\.[^.<>"\s@]+)+';
Eric Wongdb3106b2006-05-15 02:41:01 -0700551
552 # check for a local address:
Junio C Hamanoad9c18f2006-06-06 00:05:56 -0700553 return $address if ($address =~ /^($local_part_regexp)$/);
Eric Wongdb3106b2006-05-15 02:41:01 -0700554
Uwe Kleine-König155197e2007-08-09 15:27:57 +0200555 $address =~ s/^\s*<(.*)>\s*$/$1/;
Eric Wong567ffeb2006-03-25 16:47:12 -0800556 if ($have_email_valid) {
Junio C Hamanoad9c18f2006-06-06 00:05:56 -0700557 return scalar Email::Valid->address($address);
Eric Wong567ffeb2006-03-25 16:47:12 -0800558 } else {
559 # less robust/correct than the monster regexp in Email::Valid,
560 # but still does a 99% job, and one less dependency
Junio C Hamanoad9c18f2006-06-06 00:05:56 -0700561 $address =~ /($local_part_regexp\@$domain_regexp)/;
Horst H. von Brande96fd302006-06-03 13:11:48 -0400562 return $1;
Eric Wong567ffeb2006-03-25 16:47:12 -0800563 }
564}
Ryan Anderson83b24432005-07-31 04:17:25 -0400565
566# Usually don't need to change anything below here.
567
568# we make a "fake" message id by taking the current number
569# of seconds since the beginning of Unix time and tacking on
570# a random number to the end, in case we are called quicker than
571# 1 second since the last time we were called.
Ryan Anderson8037d1a2005-07-31 20:04:24 -0400572
573# We'll setup a template for the message id, using the "from" address:
Ryan Anderson8037d1a2005-07-31 20:04:24 -0400574
Junio C Hamanobe510cf2007-09-17 21:18:20 -0700575my ($message_id_stamp, $message_id_serial);
Ryan Anderson83b24432005-07-31 04:17:25 -0400576sub make_message_id
577{
Junio C Hamanobe510cf2007-09-17 21:18:20 -0700578 my $uniq;
579 if (!defined $message_id_stamp) {
580 $message_id_stamp = sprintf("%s-%s", time, $$);
581 $message_id_serial = 0;
582 }
583 $message_id_serial++;
584 $uniq = "$message_id_stamp-$message_id_serial";
585
Junio C Hamanoaeb59322007-06-20 13:47:34 -0700586 my $du_part;
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200587 for ($sender, $repocommitter, $repoauthor) {
588 $du_part = extract_valid_address(sanitize_address($_));
589 last if (defined $du_part and $du_part ne '');
Junio C Hamanoaeb59322007-06-20 13:47:34 -0700590 }
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200591 if (not defined $du_part or $du_part eq '') {
Junio C Hamanoaeb59322007-06-20 13:47:34 -0700592 use Sys::Hostname qw();
593 $du_part = 'user@' . Sys::Hostname::hostname();
594 }
Junio C Hamanobe510cf2007-09-17 21:18:20 -0700595 my $message_id_template = "<%s-git-send-email-%s>";
596 $message_id = sprintf($message_id_template, $uniq, $du_part);
Ryan Anderson8037d1a2005-07-31 20:04:24 -0400597 #print "new message id = $message_id\n"; # Was useful for debugging
Ryan Anderson83b24432005-07-31 04:17:25 -0400598}
599
600
601
Eric Wonga5370b12006-03-25 03:01:01 -0800602$time = time - scalar $#files;
Ryan Anderson83b24432005-07-31 04:17:25 -0400603
Jürgen Rühle374c5902007-01-10 13:36:39 -0800604sub unquote_rfc2047 {
605 local ($_) = @_;
Jeff King8291db62007-11-16 05:49:09 -0500606 my $encoding;
607 if (s/=\?([^?]+)\?q\?(.*)\?=/$2/g) {
608 $encoding = $1;
Jürgen Rühle374c5902007-01-10 13:36:39 -0800609 s/_/ /g;
610 s/=([0-9A-F]{2})/chr(hex($1))/eg;
611 }
Jeff King8291db62007-11-16 05:49:09 -0500612 return wantarray ? ($_, $encoding) : $_;
Jürgen Rühle374c5902007-01-10 13:36:39 -0800613}
614
Uwe Kleine-K,Av(Bnig5b56aaa2007-08-06 22:34:50 +0200615# use the simplest quoting being able to handle the recipient
616sub sanitize_address
Robin H. Johnson732263d2007-04-25 19:37:19 -0700617{
618 my ($recipient) = @_;
Uwe Kleine-K,Av(Bnig5b56aaa2007-08-06 22:34:50 +0200619 my ($recipient_name, $recipient_addr) = ($recipient =~ /^(.*?)\s*(<.*)/);
620
621 if (not $recipient_name) {
622 return "$recipient";
Robin H. Johnson732263d2007-04-25 19:37:19 -0700623 }
Uwe Kleine-K,Av(Bnig5b56aaa2007-08-06 22:34:50 +0200624
625 # if recipient_name is already quoted, do nothing
626 if ($recipient_name =~ /^(".*"|=\?utf-8\?q\?.*\?=)$/) {
627 return $recipient;
628 }
629
630 # rfc2047 is needed if a non-ascii char is included
631 if ($recipient_name =~ /[^[:ascii:]]/) {
632 $recipient_name =~ s/([^-a-zA-Z0-9!*+\/])/sprintf("=%02X", ord($1))/eg;
633 $recipient_name =~ s/(.*)/=\?utf-8\?q\?$1\?=/;
634 }
635
636 # double quotes are needed if specials or CTLs are included
637 elsif ($recipient_name =~ /[][()<>@,;:\\".\000-\037\177]/) {
638 $recipient_name =~ s/(["\\\r])/\\$1/;
639 $recipient_name = "\"$recipient_name\"";
640 }
641
642 return "$recipient_name $recipient_addr";
643
Robin H. Johnson732263d2007-04-25 19:37:19 -0700644}
645
Ryan Anderson83b24432005-07-31 04:17:25 -0400646sub send_message
647{
Eric Wong4bc87a22006-03-25 17:20:48 -0800648 my @recipients = unique_email_list(@to);
Ask Bjørn Hansen7ac17522007-11-19 03:00:26 -0800649 @cc = (grep { my $cc = extract_valid_address($_);
650 not grep { $cc eq $_ } @recipients
651 }
652 map { sanitize_address($_) }
653 @cc);
Eric Wong4bc87a22006-03-25 17:20:48 -0800654 my $to = join (",\n\t", @recipients);
Ryan Anderson58063242006-05-29 12:30:13 -0700655 @recipients = unique_email_list(@recipients,@cc,@bcclist);
Robin H. Johnsonc38f0242007-04-25 19:37:20 -0700656 @recipients = (map { extract_valid_address($_) } @recipients);
Jakub Narebski6bdca892006-07-07 20:57:55 +0200657 my $date = format_2822_time($time++);
Martin Langhoffe923eff2006-05-03 09:44:36 +1200658 my $gitversion = '@@GIT_VERSION@@';
659 if ($gitversion =~ m/..GIT_VERSION../) {
Petr Baudis3cb8caf2006-07-03 22:47:58 +0200660 $gitversion = Git::version();
Martin Langhoffe923eff2006-05-03 09:44:36 +1200661 }
Ryan Anderson83b24432005-07-31 04:17:25 -0400662
Robin H. Johnsonaf068d22007-04-25 19:37:18 -0700663 my $cc = join(", ", unique_email_list(@cc));
Junio C Hamanof06a6a42007-04-16 16:51:47 -0700664 my $ccline = "";
665 if ($cc ne '') {
666 $ccline = "\nCc: $cc";
667 }
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200668 my $sanitized_sender = sanitize_address($sender);
Jeff King4f3d3702007-12-17 15:51:34 -0500669 make_message_id() unless defined($message_id);
Junio C Hamanoaeb59322007-06-20 13:47:34 -0700670
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200671 my $header = "From: $sanitized_sender
Junio C Hamanof06a6a42007-04-16 16:51:47 -0700672To: $to${ccline}
Eric Wong4bc87a22006-03-25 17:20:48 -0800673Subject: $subject
Eric Wong4bc87a22006-03-25 17:20:48 -0800674Date: $date
675Message-Id: $message_id
Martin Langhoffe923eff2006-05-03 09:44:36 +1200676X-Mailer: git-send-email $gitversion
Eric Wong4bc87a22006-03-25 17:20:48 -0800677";
Adam Roben5483c712007-06-27 20:59:37 -0700678 if ($thread && $reply_to) {
Ryan Anderson7ccf7922006-05-29 12:30:12 -0700679
680 $header .= "In-Reply-To: $reply_to\n";
681 $header .= "References: $references\n";
682 }
Junio C Hamanoce91c2f2006-10-05 16:36:49 -0700683 if (@xh) {
684 $header .= join("\n", @xh) . "\n";
685 }
Ryan Anderson83b24432005-07-31 04:17:25 -0400686
Robin H. Johnsonc38f0242007-04-25 19:37:20 -0700687 my @sendmail_parameters = ('-i', @recipients);
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200688 my $raw_from = $sanitized_sender;
Robin H. Johnsonf073a592007-04-25 19:37:22 -0700689 $raw_from = $envelope_sender if (defined $envelope_sender);
690 $raw_from = extract_valid_address($raw_from);
691 unshift (@sendmail_parameters,
692 '-f', $raw_from) if(defined $envelope_sender);
Robin H. Johnson8e3d4362007-04-25 19:37:17 -0700693
Matthew Wilcox61302592006-10-10 08:58:23 -0600694 if ($dry_run) {
695 # We don't want to send the email.
696 } elsif ($smtp_server =~ m#^/#) {
Eric Wongaca7ad72006-05-15 02:34:44 -0700697 my $pid = open my $sm, '|-';
698 defined $pid or die $!;
699 if (!$pid) {
Robin H. Johnson8e3d4362007-04-25 19:37:17 -0700700 exec($smtp_server, @sendmail_parameters) or die $!;
Eric Wongaca7ad72006-05-15 02:34:44 -0700701 }
702 print $sm "$header\n$message";
703 close $sm or die $?;
704 } else {
Junio C Hamano44b24762007-09-25 17:27:54 -0700705
706 if (!defined $smtp_server) {
707 die "The required SMTP server is not properly defined."
708 }
709
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900710 if ($smtp_ssl) {
Junio C Hamano44b24762007-09-25 17:27:54 -0700711 $smtp_server_port ||= 465; # ssmtp
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900712 require Net::SMTP::SSL;
Junio C Hamano44b24762007-09-25 17:27:54 -0700713 $smtp ||= Net::SMTP::SSL->new($smtp_server, Port => $smtp_server_port);
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900714 }
715 else {
716 require Net::SMTP;
Junio C Hamano44b24762007-09-25 17:27:54 -0700717 $smtp ||= Net::SMTP->new((defined $smtp_server_port)
718 ? "$smtp_server:$smtp_server_port"
719 : $smtp_server);
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900720 }
Junio C Hamano44b24762007-09-25 17:27:54 -0700721
722 if (!$smtp) {
723 die "Unable to initialize SMTP properly. Is there something wrong with your config?";
724 }
725
Michael Witten2363d742008-02-03 19:53:56 -0500726 if (defined $smtp_authuser) {
727
728 if (!defined $smtp_authpass) {
729
730 system "stty -echo";
731
732 do {
733 print "Password: ";
734 $_ = <STDIN>;
735 print "\n";
736 } while (!defined $_);
737
738 chomp($smtp_authpass = $_);
739
740 system "stty echo";
741 }
742
Wincent Colaiuta5f5b6112007-11-21 13:35:05 +0100743 $auth ||= $smtp->auth( $smtp_authuser, $smtp_authpass ) or die $smtp->message;
Junio C Hamano44b24762007-09-25 17:27:54 -0700744 }
Michael Witten2363d742008-02-03 19:53:56 -0500745
Robin H. Johnson2b69bfc2007-04-25 19:37:21 -0700746 $smtp->mail( $raw_from ) or die $smtp->message;
Eric Wongaca7ad72006-05-15 02:34:44 -0700747 $smtp->to( @recipients ) or die $smtp->message;
748 $smtp->data or die $smtp->message;
749 $smtp->datasend("$header\n$message") or die $smtp->message;
750 $smtp->dataend() or die $smtp->message;
751 $smtp->ok or die "Failed to send $subject\n".$smtp->message;
752 }
Ryan Anderson27184352006-02-05 20:13:52 -0500753 if ($quiet) {
Robin H. Johnson71c7da92007-04-25 19:37:16 -0700754 printf (($dry_run ? "Dry-" : "")."Sent %s\n", $subject);
Ryan Anderson27184352006-02-05 20:13:52 -0500755 } else {
David D. Kilzerb7f30e02007-11-18 20:14:55 -0800756 print (($dry_run ? "Dry-" : "")."OK. Log says:\n");
Robin H. Johnson2b69bfc2007-04-25 19:37:21 -0700757 if ($smtp_server !~ m#^/#) {
Eric Wongaca7ad72006-05-15 02:34:44 -0700758 print "Server: $smtp_server\n";
Robin H. Johnson2b69bfc2007-04-25 19:37:21 -0700759 print "MAIL FROM:<$raw_from>\n";
760 print "RCPT TO:".join(',',(map { "<$_>" } @recipients))."\n";
Eric Wongaca7ad72006-05-15 02:34:44 -0700761 } else {
Robin H. Johnson8e3d4362007-04-25 19:37:17 -0700762 print "Sendmail: $smtp_server ".join(' ',@sendmail_parameters)."\n";
Eric Wongaca7ad72006-05-15 02:34:44 -0700763 }
David D. Kilzerb7f30e02007-11-18 20:14:55 -0800764 print $header, "\n";
Eric Wongaca7ad72006-05-15 02:34:44 -0700765 if ($smtp) {
766 print "Result: ", $smtp->code, ' ',
767 ($smtp->message =~ /\n([^\n]+\n)$/s), "\n";
768 } else {
769 print "Result: OK\n";
770 }
Ryan Anderson30d08b32006-02-02 11:56:06 -0500771 }
Ryan Anderson83b24432005-07-31 04:17:25 -0400772}
773
Ryan Anderson83b24432005-07-31 04:17:25 -0400774$reply_to = $initial_reply_to;
Junio C Hamano2186d562006-05-29 23:53:13 -0700775$references = $initial_reply_to || '';
Ryan Anderson83b24432005-07-31 04:17:25 -0400776$subject = $initial_subject;
777
778foreach my $t (@files) {
Ryan Anderson83b24432005-07-31 04:17:25 -0400779 open(F,"<",$t) or die "can't open file $t";
780
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200781 my $author = undef;
Jeff King8291db62007-11-16 05:49:09 -0500782 my $author_encoding;
783 my $has_content_type;
784 my $body_encoding;
Ryan Andersonda140f82006-02-13 03:05:15 -0500785 @cc = @initial_cc;
Junio C Hamanoce91c2f2006-10-05 16:36:49 -0700786 @xh = ();
Junio C Hamanoe6b09642006-10-07 03:09:05 -0700787 my $input_format = undef;
Ryan Anderson83b24432005-07-31 04:17:25 -0400788 my $header_done = 0;
789 $message = "";
790 while(<F>) {
791 if (!$header_done) {
Junio C Hamanoe6b09642006-10-07 03:09:05 -0700792 if (/^From /) {
793 $input_format = 'mbox';
794 next;
795 }
Ryan Anderson83b24432005-07-31 04:17:25 -0400796 chomp;
Junio C Hamanoe6b09642006-10-07 03:09:05 -0700797 if (!defined $input_format && /^[-A-Za-z]+:\s/) {
798 $input_format = 'mbox';
799 }
Ryan Anderson83b24432005-07-31 04:17:25 -0400800
Junio C Hamanoe6b09642006-10-07 03:09:05 -0700801 if (defined $input_format && $input_format eq 'mbox') {
Ryan Anderson83b24432005-07-31 04:17:25 -0400802 if (/^Subject:\s+(.*)$/) {
803 $subject = $1;
804
805 } elsif (/^(Cc|From):\s+(.*)$/) {
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200806 if (unquote_rfc2047($2) eq $sender) {
David Brown65648282007-12-25 19:56:29 -0800807 next if ($suppress_cc{'self'});
Junio C Hamano8a8e6232006-03-23 23:43:52 -0800808 }
Haavard Skinnemoen68d42c42006-08-23 03:02:59 -0700809 elsif ($1 eq 'From') {
Jeff King8291db62007-11-16 05:49:09 -0500810 ($author, $author_encoding)
811 = unquote_rfc2047($2);
David Brown65648282007-12-25 19:56:29 -0800812 next if ($suppress_cc{'author'});
813 } else {
814 next if ($suppress_cc{'cc'});
Junio C Hamano8a8e6232006-03-23 23:43:52 -0800815 }
Ryan Anderson83b24432005-07-31 04:17:25 -0400816 printf("(mbox) Adding cc: %s from line '%s'\n",
Ryan Anderson27184352006-02-05 20:13:52 -0500817 $2, $_) unless $quiet;
Ryan Anderson83b24432005-07-31 04:17:25 -0400818 push @cc, $2;
819 }
Jeff King8291db62007-11-16 05:49:09 -0500820 elsif (/^Content-type:/i) {
821 $has_content_type = 1;
822 if (/charset="?[^ "]+/) {
823 $body_encoding = $1;
824 }
825 push @xh, $_;
826 }
Jeff King4f3d3702007-12-17 15:51:34 -0500827 elsif (/^Message-Id: (.*)/i) {
828 $message_id = $1;
829 }
Eric Wong1d6a0032006-10-23 00:46:37 -0700830 elsif (!/^Date:\s/ && /^[-A-Za-z]+:\s+\S/) {
Junio C Hamanoce91c2f2006-10-05 16:36:49 -0700831 push @xh, $_;
832 }
Ryan Anderson83b24432005-07-31 04:17:25 -0400833
834 } else {
835 # In the traditional
836 # "send lots of email" format,
837 # line 1 = cc
838 # line 2 = subject
839 # So let's support that, too.
Junio C Hamanoe6b09642006-10-07 03:09:05 -0700840 $input_format = 'lots';
David Brown65648282007-12-25 19:56:29 -0800841 if (@cc == 0 && !$suppress_cc{'cc'}) {
Ryan Anderson83b24432005-07-31 04:17:25 -0400842 printf("(non-mbox) Adding cc: %s from line '%s'\n",
Ryan Anderson27184352006-02-05 20:13:52 -0500843 $_, $_) unless $quiet;
Ryan Anderson83b24432005-07-31 04:17:25 -0400844
845 push @cc, $_;
846
847 } elsif (!defined $subject) {
848 $subject = $_;
849 }
850 }
Junio C Hamano5825e5b2005-07-31 23:05:16 -0700851
Ryan Anderson83b24432005-07-31 04:17:25 -0400852 # A whitespace line will terminate the headers
853 if (m/^\s*$/) {
854 $header_done = 1;
855 }
856 } else {
857 $message .= $_;
David Brown65648282007-12-25 19:56:29 -0800858 if (/^(Signed-off-by|Cc): (.*)$/i) {
859 next if ($suppress_cc{'sob'});
Junio C Hamanoba517952008-03-07 22:12:13 -0800860 chomp;
J. Bruce Fieldsabec1002007-03-18 21:37:53 -0400861 my $c = $2;
Ryan Anderson83b24432005-07-31 04:17:25 -0400862 chomp $c;
David Brown65648282007-12-25 19:56:29 -0800863 next if ($c eq $sender and $suppress_cc{'self'});
Ryan Anderson83b24432005-07-31 04:17:25 -0400864 push @cc, $c;
865 printf("(sob) Adding cc: %s from line '%s'\n",
Ryan Anderson27184352006-02-05 20:13:52 -0500866 $c, $_) unless $quiet;
Ryan Anderson83b24432005-07-31 04:17:25 -0400867 }
868 }
869 }
870 close F;
Joe Perches324a8bd2007-08-17 18:51:12 -0700871
David Brown65648282007-12-25 19:56:29 -0800872 if (defined $cc_cmd && !$suppress_cc{'cccmd'}) {
Joe Perches324a8bd2007-08-17 18:51:12 -0700873 open(F, "$cc_cmd $t |")
874 or die "(cc-cmd) Could not execute '$cc_cmd'";
875 while(<F>) {
876 my $c = $_;
877 $c =~ s/^\s*//g;
878 $c =~ s/\n$//g;
Uwe Kleine-König620bb242007-11-07 08:34:12 +0100879 next if ($c eq $sender and $suppress_from);
Joe Perches324a8bd2007-08-17 18:51:12 -0700880 push @cc, $c;
881 printf("(cc-cmd) Adding cc: %s from: '%s'\n",
882 $c, $cc_cmd) unless $quiet;
883 }
884 close F
885 or die "(cc-cmd) failed to close pipe to '$cc_cmd'";
886 }
887
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200888 if (defined $author) {
889 $message = "From: $author\n\n$message";
Jeff King8291db62007-11-16 05:49:09 -0500890 if (defined $author_encoding) {
891 if ($has_content_type) {
892 if ($body_encoding eq $author_encoding) {
893 # ok, we already have the right encoding
894 }
895 else {
896 # uh oh, we should re-encode
897 }
898 }
899 else {
900 push @xh,
901 'MIME-Version: 1.0',
Jeff King8641ee32007-11-20 07:54:04 -0500902 "Content-Type: text/plain; charset=$author_encoding",
903 'Content-Transfer-Encoding: 8bit';
Jeff King8291db62007-11-16 05:49:09 -0500904 }
905 }
Junio C Hamano8a8e6232006-03-23 23:43:52 -0800906 }
Ryan Anderson83b24432005-07-31 04:17:25 -0400907
Ryan Anderson83b24432005-07-31 04:17:25 -0400908 send_message();
909
910 # set up for the next message
Junio C Hamanobc108f62006-10-05 16:36:15 -0700911 if ($chain_reply_to || !defined $reply_to || length($reply_to) == 0) {
Ryan Anderson78488b22005-07-31 20:04:24 -0400912 $reply_to = $message_id;
Ryan Anderson7ccf7922006-05-29 12:30:12 -0700913 if (length $references > 0) {
YOSHIFUJI Hideaki / 吉藤英明a925b892007-04-06 08:50:24 +0900914 $references .= "\n $message_id";
Ryan Anderson7ccf7922006-05-29 12:30:12 -0700915 } else {
916 $references = "$message_id";
917 }
Ryan Anderson78488b22005-07-31 20:04:24 -0400918 }
Jeff King4f3d3702007-12-17 15:51:34 -0500919 $message_id = undef;
Ryan Anderson83b24432005-07-31 04:17:25 -0400920}
Ryan Andersone2057352005-08-02 21:45:22 -0400921
Ryan Anderson1f038a02005-09-05 01:13:07 -0400922if ($compose) {
923 cleanup_compose_files();
924}
925
926sub cleanup_compose_files() {
927 unlink($compose_filename, $compose_filename . ".final");
928
929}
930
Eric Wong4bc87a22006-03-25 17:20:48 -0800931$smtp->quit if $smtp;
Ryan Andersone2057352005-08-02 21:45:22 -0400932
933sub unique_email_list(@) {
934 my %seen;
935 my @emails;
936
937 foreach my $entry (@_) {
Eric Wongdb3106b2006-05-15 02:41:01 -0700938 if (my $clean = extract_valid_address($entry)) {
939 $seen{$clean} ||= 0;
940 next if $seen{$clean}++;
941 push @emails, $entry;
942 } else {
943 print STDERR "W: unable to extract a valid address",
944 " from: $entry\n";
945 }
Ryan Andersone2057352005-08-02 21:45:22 -0400946 }
947 return @emails;
948}
Jeff King747bbff2008-01-18 09:19:48 -0500949
950sub validate_patch {
951 my $fn = shift;
952 open(my $fh, '<', $fn)
953 or die "unable to open $fn: $!\n";
954 while (my $line = <$fh>) {
955 if (length($line) > 998) {
956 return "$.: patch contains a line longer than 998 characters";
957 }
958 }
959 return undef;
960}