blob: 4031e86b8688e62cc3a547ffd52dfc1b8234f0f4 [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
Sean Estabrooks412876d2007-08-17 17:38:25 -040027$SIG{INT} = sub { print color("reset"), "\n"; exit };
28
Junio C Hamano280242d2006-07-02 16:03:59 -070029package 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
Michael Coleman1b0baf12007-02-27 22:47:54 -060040
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
Joe Perches324a8bd2007-08-17 18:51:12 -070052 --cc-cmd Specify a command to execute per file which adds
53 per file specific cc address entries
54
Michael Coleman1b0baf12007-02-27 22:47:54 -060055 --bcc Specify a list of email addresses that should be Bcc:
56 on all the emails.
57
Adam Robenef0c2ab2007-07-19 22:09:35 -070058 --compose Use \$GIT_EDITOR, core.editor, \$EDITOR, or \$VISUAL to edit
59 an introductory message for the patch series.
Michael Coleman1b0baf12007-02-27 22:47:54 -060060
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
Adam Roben5483c712007-06-27 20:59:37 -070073 --signed-off-cc Automatically add email addresses that appear in
74 Signed-off-by: or Cc: lines to the cc: list. Defaults to on.
Michael Coleman1b0baf12007-02-27 22:47:54 -060075
Douglas Stockwell34cc60c2007-09-03 03:06:25 +090076 --identity The configuration identity, a subsection to prioritise over
77 the default section.
78
Michael Coleman1b0baf12007-02-27 22:47:54 -060079 --smtp-server If set, specifies the outgoing SMTP server to use.
80 Defaults to localhost.
81
Douglas Stockwell34cc60c2007-09-03 03:06:25 +090082 --smtp-user The username for SMTP-AUTH.
83
84 --smtp-pass The password for SMTP-AUTH.
85
86 --smtp-ssl If set, connects to the SMTP server using SSL.
87
Michael Coleman1b0baf12007-02-27 22:47:54 -060088 --suppress-from Suppress sending emails to yourself if your address
Adam Roben5483c712007-06-27 20:59:37 -070089 appears in a From: line. Defaults to off.
Michael Coleman1b0baf12007-02-27 22:47:54 -060090
Adam Roben5483c712007-06-27 20:59:37 -070091 --thread Specify that the "In-Reply-To:" header should be set on all
Adam Robene46f7a02007-06-26 15:48:30 -070092 emails. Defaults to on.
93
Michael Coleman1b0baf12007-02-27 22:47:54 -060094 --quiet Make git-send-email less verbose. One line per email
95 should be all that is output.
96
Robin H. Johnson238cc632007-04-25 19:37:15 -070097 --dry-run Do everything except actually send the emails.
98
Robin H. Johnsonf073a592007-04-25 19:37:22 -070099 --envelope-sender Specify the envelope sender used to send the emails.
100
Michael Coleman1b0baf12007-02-27 22:47:54 -0600101EOT
102 exit(1);
103}
104
Eric Wong4bc87a22006-03-25 17:20:48 -0800105# most mail servers generate the Date: header, but not all...
Jakub Narebski6bdca892006-07-07 20:57:55 +0200106sub format_2822_time {
107 my ($time) = @_;
108 my @localtm = localtime($time);
109 my @gmttm = gmtime($time);
110 my $localmin = $localtm[1] + $localtm[2] * 60;
111 my $gmtmin = $gmttm[1] + $gmttm[2] * 60;
112 if ($localtm[0] != $gmttm[0]) {
113 die "local zone differs from GMT by a non-minute interval\n";
114 }
115 if ((($gmttm[6] + 1) % 7) == $localtm[6]) {
116 $localmin += 1440;
117 } elsif ((($gmttm[6] - 1) % 7) == $localtm[6]) {
118 $localmin -= 1440;
119 } elsif ($gmttm[6] != $localtm[6]) {
120 die "local time offset greater than or equal to 24 hours\n";
121 }
122 my $offset = $localmin - $gmtmin;
123 my $offhour = $offset / 60;
124 my $offmin = abs($offset % 60);
125 if (abs($offhour) >= 24) {
126 die ("local time offset greater than or equal to 24 hours\n");
127 }
128
129 return sprintf("%s, %2d %s %d %02d:%02d:%02d %s%02d%02d",
130 qw(Sun Mon Tue Wed Thu Fri Sat)[$localtm[6]],
131 $localtm[3],
132 qw(Jan Feb Mar Apr May Jun
133 Jul Aug Sep Oct Nov Dec)[$localtm[4]],
134 $localtm[5]+1900,
135 $localtm[2],
136 $localtm[1],
137 $localtm[0],
138 ($offset >= 0) ? '+' : '-',
139 abs($offhour),
140 $offmin,
141 );
142}
Eric Wong4bc87a22006-03-25 17:20:48 -0800143
Eric Wong567ffeb2006-03-25 16:47:12 -0800144my $have_email_valid = eval { require Email::Valid; 1 };
Eric Wong4bc87a22006-03-25 17:20:48 -0800145my $smtp;
146
Ryan Andersone2057352005-08-02 21:45:22 -0400147sub unique_email_list(@);
Ryan Anderson1f038a02005-09-05 01:13:07 -0400148sub cleanup_compose_files();
149
150# Constants (essentially)
151my $compose_filename = ".msg.$$";
Ryan Andersone2057352005-08-02 21:45:22 -0400152
Ryan Anderson83b24432005-07-31 04:17:25 -0400153# Variables we fill in automatically, or via prompting:
Junio C Hamanoce91c2f2006-10-05 16:36:49 -0700154my (@to,@cc,@initial_cc,@bcclist,@xh,
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200155 $initial_reply_to,$initial_subject,@files,$author,$sender,$compose,$time);
Ryan Anderson83b24432005-07-31 04:17:25 -0400156
Robin H. Johnsonf073a592007-04-25 19:37:22 -0700157my $envelope_sender;
Ryan Anderson78488b22005-07-31 20:04:24 -0400158
Ryan Anderson91332612005-07-31 20:04:24 -0400159# Example reply to:
Ryan Anderson83b24432005-07-31 04:17:25 -0400160#$initial_reply_to = ''; #<20050203173208.GA23964@foobar.com>';
Ryan Anderson83b24432005-07-31 04:17:25 -0400161
Petr Baudis3cb8caf2006-07-03 22:47:58 +0200162my $repo = Git->repository();
Junio C Hamano280242d2006-07-02 16:03:59 -0700163my $term = eval {
164 new Term::ReadLine 'git-send-email';
165};
166if ($@) {
167 $term = new FakeTerm "$@: going non-interactive";
168}
Ryan Anderson83b24432005-07-31 04:17:25 -0400169
Adam Roben5483c712007-06-27 20:59:37 -0700170# Behavior modification variables
171my ($quiet, $dry_run) = (0, 0);
172
173# Variables with corresponding config settings
Joe Perches324a8bd2007-08-17 18:51:12 -0700174my ($thread, $chain_reply_to, $suppress_from, $signed_off_cc, $cc_cmd);
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900175my ($smtp_server, $smtp_authuser, $smtp_authpass, $smtp_ssl);
176my ($identity, $aliasfiletype, @alias_files);
Adam Roben5483c712007-06-27 20:59:37 -0700177
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900178my %config_bool_settings = (
Adam Roben5483c712007-06-27 20:59:37 -0700179 "thread" => [\$thread, 1],
180 "chainreplyto" => [\$chain_reply_to, 1],
181 "suppressfrom" => [\$suppress_from, 0],
182 "signedoffcc" => [\$signed_off_cc, 1],
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900183 "smtpssl" => [\$smtp_ssl, 0],
Adam Robene46f7a02007-06-26 15:48:30 -0700184);
185
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900186my %config_settings = (
187 "smtpserver" => \$smtp_server,
188 "smtpuser" => \$smtp_authuser,
189 "smtppass" => \$smtp_authpass,
190 "cccmd" => \$cc_cmd,
191 "aliasfiletype" => \$aliasfiletype,
192 "bcc" => \@bcclist,
193 "aliasesfile" => \@alias_files,
194);
Avi Kivity4a62d3f2007-03-11 19:19:44 +0200195
Ryan Anderson83b24432005-07-31 04:17:25 -0400196# Begin by accumulating all the variables (defined above), that we will end up
197# needing, first, from the command line:
198
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200199my $rc = GetOptions("sender|from=s" => \$sender,
Ryan Anderson83b24432005-07-31 04:17:25 -0400200 "in-reply-to=s" => \$initial_reply_to,
201 "subject=s" => \$initial_subject,
202 "to=s" => \@to,
Ryan Andersonda140f82006-02-13 03:05:15 -0500203 "cc=s" => \@initial_cc,
Ryan Anderson58063242006-05-29 12:30:13 -0700204 "bcc=s" => \@bcclist,
Ryan Anderson78488b22005-07-31 20:04:24 -0400205 "chain-reply-to!" => \$chain_reply_to,
Ryan Anderson3342d852005-07-31 20:04:24 -0400206 "smtp-server=s" => \$smtp_server,
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900207 "smtp-user=s" => \$smtp_authuser,
208 "smtp-pass=s" => \$smtp_authpass,
209 "smtp-ssl!" => \$smtp_ssl,
210 "identity=s" => \$identity,
Ryan Anderson1f038a02005-09-05 01:13:07 -0400211 "compose" => \$compose,
Ryan Anderson30d08b32006-02-02 11:56:06 -0500212 "quiet" => \$quiet,
Joe Perches324a8bd2007-08-17 18:51:12 -0700213 "cc-cmd=s" => \$cc_cmd,
Adam Roben5483c712007-06-27 20:59:37 -0700214 "suppress-from!" => \$suppress_from,
215 "signed-off-cc|signed-off-by-cc!" => \$signed_off_cc,
Matthew Wilcox61302592006-10-10 08:58:23 -0600216 "dry-run" => \$dry_run,
Robin H. Johnsonf073a592007-04-25 19:37:22 -0700217 "envelope-sender=s" => \$envelope_sender,
Adam Roben5483c712007-06-27 20:59:37 -0700218 "thread!" => \$thread,
Ryan Anderson83b24432005-07-31 04:17:25 -0400219 );
220
Michael Coleman1b0baf12007-02-27 22:47:54 -0600221unless ($rc) {
222 usage();
223}
224
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900225# Now, let's fill any that aren't set in with defaults:
226
227sub read_config {
228 my ($prefix) = @_;
229
230 foreach my $setting (keys %config_bool_settings) {
231 my $target = $config_bool_settings{$setting}->[0];
232 $$target = $repo->config_bool("$prefix.$setting") unless (defined $$target);
233 }
234
235 foreach my $setting (keys %config_settings) {
236 my $target = $config_settings{$setting};
237 if (ref($target) eq "ARRAY") {
238 unless (@$target) {
239 my @values = $repo->config("$prefix.$setting");
240 @$target = @values if (@values && defined $values[0]);
241 }
242 }
243 else {
244 $$target = $repo->config("$prefix.$setting") unless (defined $$target);
245 }
246 }
247}
248
249# read configuration from [sendemail "$identity"], fall back on [sendemail]
250$identity = $repo->config("sendemail.identity") unless (defined $identity);
251read_config("sendemail.$identity") if (defined $identity);
252read_config("sendemail");
253
254# fall back on builtin bool defaults
255foreach my $setting (values %config_bool_settings) {
256 ${$setting->[0]} = $setting->[1] unless (defined (${$setting->[0]}));
257}
258
259my ($repoauthor) = $repo->ident_person('author');
260my ($repocommitter) = $repo->ident_person('committer');
261
Eric W. Biederman79ee5552006-06-21 07:17:31 -0600262# Verify the user input
263
264foreach my $entry (@to) {
265 die "Comma in --to entry: $entry'\n" unless $entry !~ m/,/;
266}
267
268foreach my $entry (@initial_cc) {
269 die "Comma in --cc entry: $entry'\n" unless $entry !~ m/,/;
270}
271
272foreach my $entry (@bcclist) {
273 die "Comma in --bcclist entry: $entry'\n" unless $entry !~ m/,/;
274}
275
Eric Wong994d6c62006-05-14 19:13:44 -0700276my %aliases;
Eric Wong994d6c62006-05-14 19:13:44 -0700277my %parse_alias = (
278 # multiline formats can be supported in the future
279 mutt => sub { my $fh = shift; while (<$fh>) {
Michael Hendricks504ceab2007-05-16 23:15:16 -0600280 if (/^\s*alias\s+(\S+)\s+(.*)$/) {
Eric Wong994d6c62006-05-14 19:13:44 -0700281 my ($alias, $addr) = ($1, $2);
282 $addr =~ s/#.*$//; # mutt allows # comments
283 # commas delimit multiple addresses
284 $aliases{$alias} = [ split(/\s*,\s*/, $addr) ];
285 }}},
286 mailrc => sub { my $fh = shift; while (<$fh>) {
287 if (/^alias\s+(\S+)\s+(.*)$/) {
288 # spaces delimit multiple addresses
289 $aliases{$1} = [ split(/\s+/, $2) ];
290 }}},
291 pine => sub { my $fh = shift; while (<$fh>) {
Kumar Gala2d8ae402007-07-24 09:50:38 -0500292 if (/^(\S+)\t.*\t(.*)$/) {
Eric Wong994d6c62006-05-14 19:13:44 -0700293 $aliases{$1} = [ split(/\s*,\s*/, $2) ];
294 }}},
295 gnus => sub { my $fh = shift; while (<$fh>) {
296 if (/\(define-mail-alias\s+"(\S+?)"\s+"(\S+?)"\)/) {
297 $aliases{$1} = [ $2 ];
298 }}}
299);
300
Petr Baudis3cb8caf2006-07-03 22:47:58 +0200301if (@alias_files and $aliasfiletype and defined $parse_alias{$aliasfiletype}) {
Eric Wong994d6c62006-05-14 19:13:44 -0700302 foreach my $file (@alias_files) {
303 open my $fh, '<', $file or die "opening $file: $!\n";
304 $parse_alias{$aliasfiletype}->($fh);
305 close $fh;
306 }
307}
308
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200309($sender) = expand_aliases($sender) if defined $sender;
Michael Hendricksae740a52007-07-04 19:11:36 -0600310
Ryan Anderson1f038a02005-09-05 01:13:07 -0400311my $prompting = 0;
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200312if (!defined $sender) {
313 $sender = $repoauthor || $repocommitter;
Ryan Anderson8037d1a2005-07-31 20:04:24 -0400314 do {
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200315 $_ = $term->readline("Who should the emails appear to be from? [$sender] ");
Ryan Andersonca9a7d62005-07-31 20:04:25 -0400316 } while (!defined $_);
Ryan Anderson8037d1a2005-07-31 20:04:24 -0400317
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200318 $sender = $_ if ($_);
319 print "Emails will be sent from: ", $sender, "\n";
Ryan Anderson1f038a02005-09-05 01:13:07 -0400320 $prompting++;
Ryan Anderson83b24432005-07-31 04:17:25 -0400321}
322
323if (!@to) {
Ryan Anderson8037d1a2005-07-31 20:04:24 -0400324 do {
Junio C Hamano5825e5b2005-07-31 23:05:16 -0700325 $_ = $term->readline("Who should the emails be sent to? ",
Ryan Anderson8037d1a2005-07-31 20:04:24 -0400326 "");
327 } while (!defined $_);
Ryan Anderson83b24432005-07-31 04:17:25 -0400328 my $to = $_;
329 push @to, split /,/, $to;
Ryan Anderson1f038a02005-09-05 01:13:07 -0400330 $prompting++;
Ryan Anderson83b24432005-07-31 04:17:25 -0400331}
332
Eric Wong994d6c62006-05-14 19:13:44 -0700333sub expand_aliases {
334 my @cur = @_;
335 my @last;
336 do {
337 @last = @cur;
338 @cur = map { $aliases{$_} ? @{$aliases{$_}} : $_ } @last;
339 } while (join(',',@cur) ne join(',',@last));
340 return @cur;
341}
342
343@to = expand_aliases(@to);
Uwe Kleine-K,Av(Bnig5b56aaa2007-08-06 22:34:50 +0200344@to = (map { sanitize_address($_) } @to);
Eric Wong994d6c62006-05-14 19:13:44 -0700345@initial_cc = expand_aliases(@initial_cc);
Ryan Anderson58063242006-05-29 12:30:13 -0700346@bcclist = expand_aliases(@bcclist);
Eric Wong994d6c62006-05-14 19:13:44 -0700347
Ryan Anderson1f038a02005-09-05 01:13:07 -0400348if (!defined $initial_subject && $compose) {
Ryan Anderson8037d1a2005-07-31 20:04:24 -0400349 do {
Junio C Hamano5825e5b2005-07-31 23:05:16 -0700350 $_ = $term->readline("What subject should the emails start with? ",
Ryan Anderson8037d1a2005-07-31 20:04:24 -0400351 $initial_subject);
352 } while (!defined $_);
Ryan Anderson83b24432005-07-31 04:17:25 -0400353 $initial_subject = $_;
Ryan Anderson1f038a02005-09-05 01:13:07 -0400354 $prompting++;
Ryan Anderson83b24432005-07-31 04:17:25 -0400355}
356
Adam Roben5483c712007-06-27 20:59:37 -0700357if ($thread && !defined $initial_reply_to && $prompting) {
Ryan Anderson8037d1a2005-07-31 20:04:24 -0400358 do {
Ryan Anderson1f038a02005-09-05 01:13:07 -0400359 $_= $term->readline("Message-ID to be used as In-Reply-To for the first email? ",
Ryan Anderson8037d1a2005-07-31 20:04:24 -0400360 $initial_reply_to);
361 } while (!defined $_);
362
Ryan Anderson83b24432005-07-31 04:17:25 -0400363 $initial_reply_to = $_;
David Kastrup3803bce2007-09-12 07:53:45 +0200364 $initial_reply_to =~ s/^\s+<?/</;
365 $initial_reply_to =~ s/>?\s+$/>/;
Ryan Anderson83b24432005-07-31 04:17:25 -0400366}
367
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900368if (!defined $smtp_server) {
Eric Wongaca7ad72006-05-15 02:34:44 -0700369 foreach (qw( /usr/sbin/sendmail /usr/lib/sendmail )) {
370 if (-x $_) {
371 $smtp_server = $_;
372 last;
373 }
374 }
375 $smtp_server ||= 'localhost'; # could be 127.0.0.1, too... *shrug*
Ryan Anderson3342d852005-07-31 20:04:24 -0400376}
377
Ryan Anderson1f038a02005-09-05 01:13:07 -0400378if ($compose) {
379 # Note that this does not need to be secure, but we will make a small
380 # effort to have it be unique
381 open(C,">",$compose_filename)
382 or die "Failed to open for writing $compose_filename: $!";
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200383 print C "From $sender # This line is ignored.\n";
Ryan Anderson1f038a02005-09-05 01:13:07 -0400384 printf C "Subject: %s\n\n", $initial_subject;
385 printf C <<EOT;
386GIT: Please enter your email below.
387GIT: Lines beginning in "GIT: " will be removed.
388GIT: Consider including an overall diffstat or table of contents
389GIT: for the patch you are writing.
390
391EOT
392 close(C);
393
Adam Robenef0c2ab2007-07-19 22:09:35 -0700394 my $editor = $ENV{GIT_EDITOR} || $repo->config("core.editor") || $ENV{VISUAL} || $ENV{EDITOR} || "vi";
Ryan Anderson1f038a02005-09-05 01:13:07 -0400395 system($editor, $compose_filename);
396
397 open(C2,">",$compose_filename . ".final")
398 or die "Failed to open $compose_filename.final : " . $!;
399
400 open(C,"<",$compose_filename)
401 or die "Failed to open $compose_filename : " . $!;
402
403 while(<C>) {
404 next if m/^GIT: /;
405 print C2 $_;
406 }
407 close(C);
408 close(C2);
409
410 do {
411 $_ = $term->readline("Send this email? (y|n) ");
412 } while (!defined $_);
413
414 if (uc substr($_,0,1) ne 'Y') {
415 cleanup_compose_files();
416 exit(0);
417 }
418
419 @files = ($compose_filename . ".final");
420}
421
422
Ryan Anderson83b24432005-07-31 04:17:25 -0400423# Now that all the defaults are set, process the rest of the command line
424# arguments and collect up the files that need to be processed.
425for my $f (@ARGV) {
426 if (-d $f) {
427 opendir(DH,$f)
428 or die "Failed to opendir $f: $!";
429
Junio C Hamano5825e5b2005-07-31 23:05:16 -0700430 push @files, grep { -f $_ } map { +$f . "/" . $_ }
Ryan Anderson8037d1a2005-07-31 20:04:24 -0400431 sort readdir(DH);
432
Ryan Anderson83b24432005-07-31 04:17:25 -0400433 } elsif (-f $f) {
434 push @files, $f;
435
436 } else {
437 print STDERR "Skipping $f - not found.\n";
438 }
439}
440
441if (@files) {
Ryan Anderson27184352006-02-05 20:13:52 -0500442 unless ($quiet) {
443 print $_,"\n" for (@files);
444 }
Ryan Anderson83b24432005-07-31 04:17:25 -0400445} else {
Michael Coleman1b0baf12007-02-27 22:47:54 -0600446 print STDERR "\nNo patch files specified!\n\n";
447 usage();
Ryan Anderson83b24432005-07-31 04:17:25 -0400448}
449
450# Variables we set as part of the loop over files
Robin H. Johnsonaf068d22007-04-25 19:37:18 -0700451our ($message_id, %mail, $subject, $reply_to, $references, $message);
Ryan Anderson83b24432005-07-31 04:17:25 -0400452
Eric Wong567ffeb2006-03-25 16:47:12 -0800453sub extract_valid_address {
454 my $address = shift;
Junio C Hamanoad9c18f2006-06-06 00:05:56 -0700455 my $local_part_regexp = '[^<>"\s@]+';
Junio C Hamano09302e12006-06-06 14:12:46 -0700456 my $domain_regexp = '[^.<>"\s@]+(?:\.[^.<>"\s@]+)+';
Eric Wongdb3106b2006-05-15 02:41:01 -0700457
458 # check for a local address:
Junio C Hamanoad9c18f2006-06-06 00:05:56 -0700459 return $address if ($address =~ /^($local_part_regexp)$/);
Eric Wongdb3106b2006-05-15 02:41:01 -0700460
Uwe Kleine-König155197e2007-08-09 15:27:57 +0200461 $address =~ s/^\s*<(.*)>\s*$/$1/;
Eric Wong567ffeb2006-03-25 16:47:12 -0800462 if ($have_email_valid) {
Junio C Hamanoad9c18f2006-06-06 00:05:56 -0700463 return scalar Email::Valid->address($address);
Eric Wong567ffeb2006-03-25 16:47:12 -0800464 } else {
465 # less robust/correct than the monster regexp in Email::Valid,
466 # but still does a 99% job, and one less dependency
Junio C Hamanoad9c18f2006-06-06 00:05:56 -0700467 $address =~ /($local_part_regexp\@$domain_regexp)/;
Horst H. von Brande96fd302006-06-03 13:11:48 -0400468 return $1;
Eric Wong567ffeb2006-03-25 16:47:12 -0800469 }
470}
Ryan Anderson83b24432005-07-31 04:17:25 -0400471
472# Usually don't need to change anything below here.
473
474# we make a "fake" message id by taking the current number
475# of seconds since the beginning of Unix time and tacking on
476# a random number to the end, in case we are called quicker than
477# 1 second since the last time we were called.
Ryan Anderson8037d1a2005-07-31 20:04:24 -0400478
479# We'll setup a template for the message id, using the "from" address:
Ryan Anderson8037d1a2005-07-31 20:04:24 -0400480
Junio C Hamanobe510cf2007-09-17 21:18:20 -0700481my ($message_id_stamp, $message_id_serial);
Ryan Anderson83b24432005-07-31 04:17:25 -0400482sub make_message_id
483{
Junio C Hamanobe510cf2007-09-17 21:18:20 -0700484 my $uniq;
485 if (!defined $message_id_stamp) {
486 $message_id_stamp = sprintf("%s-%s", time, $$);
487 $message_id_serial = 0;
488 }
489 $message_id_serial++;
490 $uniq = "$message_id_stamp-$message_id_serial";
491
Junio C Hamanoaeb59322007-06-20 13:47:34 -0700492 my $du_part;
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200493 for ($sender, $repocommitter, $repoauthor) {
494 $du_part = extract_valid_address(sanitize_address($_));
495 last if (defined $du_part and $du_part ne '');
Junio C Hamanoaeb59322007-06-20 13:47:34 -0700496 }
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200497 if (not defined $du_part or $du_part eq '') {
Junio C Hamanoaeb59322007-06-20 13:47:34 -0700498 use Sys::Hostname qw();
499 $du_part = 'user@' . Sys::Hostname::hostname();
500 }
Junio C Hamanobe510cf2007-09-17 21:18:20 -0700501 my $message_id_template = "<%s-git-send-email-%s>";
502 $message_id = sprintf($message_id_template, $uniq, $du_part);
Ryan Anderson8037d1a2005-07-31 20:04:24 -0400503 #print "new message id = $message_id\n"; # Was useful for debugging
Ryan Anderson83b24432005-07-31 04:17:25 -0400504}
505
506
507
Eric Wonga5370b12006-03-25 03:01:01 -0800508$time = time - scalar $#files;
Ryan Anderson83b24432005-07-31 04:17:25 -0400509
Jürgen Rühle374c5902007-01-10 13:36:39 -0800510sub unquote_rfc2047 {
511 local ($_) = @_;
512 if (s/=\?utf-8\?q\?(.*)\?=/$1/g) {
513 s/_/ /g;
514 s/=([0-9A-F]{2})/chr(hex($1))/eg;
515 }
Junio C Hamano3740b042007-01-30 02:22:37 -0800516 return "$_";
Jürgen Rühle374c5902007-01-10 13:36:39 -0800517}
518
Uwe Kleine-K,Av(Bnig5b56aaa2007-08-06 22:34:50 +0200519# use the simplest quoting being able to handle the recipient
520sub sanitize_address
Robin H. Johnson732263d2007-04-25 19:37:19 -0700521{
522 my ($recipient) = @_;
Uwe Kleine-K,Av(Bnig5b56aaa2007-08-06 22:34:50 +0200523 my ($recipient_name, $recipient_addr) = ($recipient =~ /^(.*?)\s*(<.*)/);
524
525 if (not $recipient_name) {
526 return "$recipient";
Robin H. Johnson732263d2007-04-25 19:37:19 -0700527 }
Uwe Kleine-K,Av(Bnig5b56aaa2007-08-06 22:34:50 +0200528
529 # if recipient_name is already quoted, do nothing
530 if ($recipient_name =~ /^(".*"|=\?utf-8\?q\?.*\?=)$/) {
531 return $recipient;
532 }
533
534 # rfc2047 is needed if a non-ascii char is included
535 if ($recipient_name =~ /[^[:ascii:]]/) {
536 $recipient_name =~ s/([^-a-zA-Z0-9!*+\/])/sprintf("=%02X", ord($1))/eg;
537 $recipient_name =~ s/(.*)/=\?utf-8\?q\?$1\?=/;
538 }
539
540 # double quotes are needed if specials or CTLs are included
541 elsif ($recipient_name =~ /[][()<>@,;:\\".\000-\037\177]/) {
542 $recipient_name =~ s/(["\\\r])/\\$1/;
543 $recipient_name = "\"$recipient_name\"";
544 }
545
546 return "$recipient_name $recipient_addr";
547
Robin H. Johnson732263d2007-04-25 19:37:19 -0700548}
549
Ryan Anderson83b24432005-07-31 04:17:25 -0400550sub send_message
551{
Eric Wong4bc87a22006-03-25 17:20:48 -0800552 my @recipients = unique_email_list(@to);
Uwe Kleine-K,Av(Bnig5b56aaa2007-08-06 22:34:50 +0200553 @cc = (map { sanitize_address($_) } @cc);
Eric Wong4bc87a22006-03-25 17:20:48 -0800554 my $to = join (",\n\t", @recipients);
Ryan Anderson58063242006-05-29 12:30:13 -0700555 @recipients = unique_email_list(@recipients,@cc,@bcclist);
Robin H. Johnsonc38f0242007-04-25 19:37:20 -0700556 @recipients = (map { extract_valid_address($_) } @recipients);
Jakub Narebski6bdca892006-07-07 20:57:55 +0200557 my $date = format_2822_time($time++);
Martin Langhoffe923eff2006-05-03 09:44:36 +1200558 my $gitversion = '@@GIT_VERSION@@';
559 if ($gitversion =~ m/..GIT_VERSION../) {
Petr Baudis3cb8caf2006-07-03 22:47:58 +0200560 $gitversion = Git::version();
Martin Langhoffe923eff2006-05-03 09:44:36 +1200561 }
Ryan Anderson83b24432005-07-31 04:17:25 -0400562
Robin H. Johnsonaf068d22007-04-25 19:37:18 -0700563 my $cc = join(", ", unique_email_list(@cc));
Junio C Hamanof06a6a42007-04-16 16:51:47 -0700564 my $ccline = "";
565 if ($cc ne '') {
566 $ccline = "\nCc: $cc";
567 }
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200568 my $sanitized_sender = sanitize_address($sender);
Junio C Hamanoaeb59322007-06-20 13:47:34 -0700569 make_message_id();
570
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200571 my $header = "From: $sanitized_sender
Junio C Hamanof06a6a42007-04-16 16:51:47 -0700572To: $to${ccline}
Eric Wong4bc87a22006-03-25 17:20:48 -0800573Subject: $subject
Eric Wong4bc87a22006-03-25 17:20:48 -0800574Date: $date
575Message-Id: $message_id
Martin Langhoffe923eff2006-05-03 09:44:36 +1200576X-Mailer: git-send-email $gitversion
Eric Wong4bc87a22006-03-25 17:20:48 -0800577";
Adam Roben5483c712007-06-27 20:59:37 -0700578 if ($thread && $reply_to) {
Ryan Anderson7ccf7922006-05-29 12:30:12 -0700579
580 $header .= "In-Reply-To: $reply_to\n";
581 $header .= "References: $references\n";
582 }
Junio C Hamanoce91c2f2006-10-05 16:36:49 -0700583 if (@xh) {
584 $header .= join("\n", @xh) . "\n";
585 }
Ryan Anderson83b24432005-07-31 04:17:25 -0400586
Robin H. Johnsonc38f0242007-04-25 19:37:20 -0700587 my @sendmail_parameters = ('-i', @recipients);
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200588 my $raw_from = $sanitized_sender;
Robin H. Johnsonf073a592007-04-25 19:37:22 -0700589 $raw_from = $envelope_sender if (defined $envelope_sender);
590 $raw_from = extract_valid_address($raw_from);
591 unshift (@sendmail_parameters,
592 '-f', $raw_from) if(defined $envelope_sender);
Robin H. Johnson8e3d4362007-04-25 19:37:17 -0700593
Matthew Wilcox61302592006-10-10 08:58:23 -0600594 if ($dry_run) {
595 # We don't want to send the email.
596 } elsif ($smtp_server =~ m#^/#) {
Eric Wongaca7ad72006-05-15 02:34:44 -0700597 my $pid = open my $sm, '|-';
598 defined $pid or die $!;
599 if (!$pid) {
Robin H. Johnson8e3d4362007-04-25 19:37:17 -0700600 exec($smtp_server, @sendmail_parameters) or die $!;
Eric Wongaca7ad72006-05-15 02:34:44 -0700601 }
602 print $sm "$header\n$message";
603 close $sm or die $?;
604 } else {
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900605 if ($smtp_ssl) {
606 require Net::SMTP::SSL;
607 $smtp ||= Net::SMTP::SSL->new( $smtp_server, Port => 465 );
608 }
609 else {
610 require Net::SMTP;
611 $smtp ||= Net::SMTP->new( $smtp_server );
612 }
613 $smtp->auth( $smtp_authuser, $smtp_authpass )
614 or die $smtp->message if (defined $smtp_authuser);
Robin H. Johnson2b69bfc2007-04-25 19:37:21 -0700615 $smtp->mail( $raw_from ) or die $smtp->message;
Eric Wongaca7ad72006-05-15 02:34:44 -0700616 $smtp->to( @recipients ) or die $smtp->message;
617 $smtp->data or die $smtp->message;
618 $smtp->datasend("$header\n$message") or die $smtp->message;
619 $smtp->dataend() or die $smtp->message;
620 $smtp->ok or die "Failed to send $subject\n".$smtp->message;
621 }
Ryan Anderson27184352006-02-05 20:13:52 -0500622 if ($quiet) {
Robin H. Johnson71c7da92007-04-25 19:37:16 -0700623 printf (($dry_run ? "Dry-" : "")."Sent %s\n", $subject);
Ryan Anderson27184352006-02-05 20:13:52 -0500624 } else {
Robin H. Johnson71c7da92007-04-25 19:37:16 -0700625 print (($dry_run ? "Dry-" : "")."OK. Log says:\nDate: $date\n");
Robin H. Johnson2b69bfc2007-04-25 19:37:21 -0700626 if ($smtp_server !~ m#^/#) {
Eric Wongaca7ad72006-05-15 02:34:44 -0700627 print "Server: $smtp_server\n";
Robin H. Johnson2b69bfc2007-04-25 19:37:21 -0700628 print "MAIL FROM:<$raw_from>\n";
629 print "RCPT TO:".join(',',(map { "<$_>" } @recipients))."\n";
Eric Wongaca7ad72006-05-15 02:34:44 -0700630 } else {
Robin H. Johnson8e3d4362007-04-25 19:37:17 -0700631 print "Sendmail: $smtp_server ".join(' ',@sendmail_parameters)."\n";
Eric Wongaca7ad72006-05-15 02:34:44 -0700632 }
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200633 print "From: $sanitized_sender\nSubject: $subject\nCc: $cc\nTo: $to\n\n";
Eric Wongaca7ad72006-05-15 02:34:44 -0700634 if ($smtp) {
635 print "Result: ", $smtp->code, ' ',
636 ($smtp->message =~ /\n([^\n]+\n)$/s), "\n";
637 } else {
638 print "Result: OK\n";
639 }
Ryan Anderson30d08b32006-02-02 11:56:06 -0500640 }
Ryan Anderson83b24432005-07-31 04:17:25 -0400641}
642
Ryan Anderson83b24432005-07-31 04:17:25 -0400643$reply_to = $initial_reply_to;
Junio C Hamano2186d562006-05-29 23:53:13 -0700644$references = $initial_reply_to || '';
Ryan Anderson83b24432005-07-31 04:17:25 -0400645$subject = $initial_subject;
646
647foreach my $t (@files) {
Ryan Anderson83b24432005-07-31 04:17:25 -0400648 open(F,"<",$t) or die "can't open file $t";
649
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200650 my $author = undef;
Ryan Andersonda140f82006-02-13 03:05:15 -0500651 @cc = @initial_cc;
Junio C Hamanoce91c2f2006-10-05 16:36:49 -0700652 @xh = ();
Junio C Hamanoe6b09642006-10-07 03:09:05 -0700653 my $input_format = undef;
Ryan Anderson83b24432005-07-31 04:17:25 -0400654 my $header_done = 0;
655 $message = "";
656 while(<F>) {
657 if (!$header_done) {
Junio C Hamanoe6b09642006-10-07 03:09:05 -0700658 if (/^From /) {
659 $input_format = 'mbox';
660 next;
661 }
Ryan Anderson83b24432005-07-31 04:17:25 -0400662 chomp;
Junio C Hamanoe6b09642006-10-07 03:09:05 -0700663 if (!defined $input_format && /^[-A-Za-z]+:\s/) {
664 $input_format = 'mbox';
665 }
Ryan Anderson83b24432005-07-31 04:17:25 -0400666
Junio C Hamanoe6b09642006-10-07 03:09:05 -0700667 if (defined $input_format && $input_format eq 'mbox') {
Ryan Anderson83b24432005-07-31 04:17:25 -0400668 if (/^Subject:\s+(.*)$/) {
669 $subject = $1;
670
671 } elsif (/^(Cc|From):\s+(.*)$/) {
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200672 if (unquote_rfc2047($2) eq $sender) {
Junio C Hamano8a8e6232006-03-23 23:43:52 -0800673 next if ($suppress_from);
674 }
Haavard Skinnemoen68d42c42006-08-23 03:02:59 -0700675 elsif ($1 eq 'From') {
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200676 $author = unquote_rfc2047($2);
Junio C Hamano8a8e6232006-03-23 23:43:52 -0800677 }
Ryan Anderson83b24432005-07-31 04:17:25 -0400678 printf("(mbox) Adding cc: %s from line '%s'\n",
Ryan Anderson27184352006-02-05 20:13:52 -0500679 $2, $_) unless $quiet;
Ryan Anderson83b24432005-07-31 04:17:25 -0400680 push @cc, $2;
681 }
Eric Wong1d6a0032006-10-23 00:46:37 -0700682 elsif (!/^Date:\s/ && /^[-A-Za-z]+:\s+\S/) {
Junio C Hamanoce91c2f2006-10-05 16:36:49 -0700683 push @xh, $_;
684 }
Ryan Anderson83b24432005-07-31 04:17:25 -0400685
686 } else {
687 # In the traditional
688 # "send lots of email" format,
689 # line 1 = cc
690 # line 2 = subject
691 # So let's support that, too.
Junio C Hamanoe6b09642006-10-07 03:09:05 -0700692 $input_format = 'lots';
Ryan Anderson83b24432005-07-31 04:17:25 -0400693 if (@cc == 0) {
694 printf("(non-mbox) Adding cc: %s from line '%s'\n",
Ryan Anderson27184352006-02-05 20:13:52 -0500695 $_, $_) unless $quiet;
Ryan Anderson83b24432005-07-31 04:17:25 -0400696
697 push @cc, $_;
698
699 } elsif (!defined $subject) {
700 $subject = $_;
701 }
702 }
Junio C Hamano5825e5b2005-07-31 23:05:16 -0700703
Ryan Anderson83b24432005-07-31 04:17:25 -0400704 # A whitespace line will terminate the headers
705 if (m/^\s*$/) {
706 $header_done = 1;
707 }
708 } else {
709 $message .= $_;
Adam Roben5483c712007-06-27 20:59:37 -0700710 if (/^(Signed-off-by|Cc): (.*)$/i && $signed_off_cc) {
J. Bruce Fieldsabec1002007-03-18 21:37:53 -0400711 my $c = $2;
Ryan Anderson83b24432005-07-31 04:17:25 -0400712 chomp $c;
713 push @cc, $c;
714 printf("(sob) Adding cc: %s from line '%s'\n",
Ryan Anderson27184352006-02-05 20:13:52 -0500715 $c, $_) unless $quiet;
Ryan Anderson83b24432005-07-31 04:17:25 -0400716 }
717 }
718 }
719 close F;
Joe Perches324a8bd2007-08-17 18:51:12 -0700720
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900721 if (defined $cc_cmd) {
Joe Perches324a8bd2007-08-17 18:51:12 -0700722 open(F, "$cc_cmd $t |")
723 or die "(cc-cmd) Could not execute '$cc_cmd'";
724 while(<F>) {
725 my $c = $_;
726 $c =~ s/^\s*//g;
727 $c =~ s/\n$//g;
728 push @cc, $c;
729 printf("(cc-cmd) Adding cc: %s from: '%s'\n",
730 $c, $cc_cmd) unless $quiet;
731 }
732 close F
733 or die "(cc-cmd) failed to close pipe to '$cc_cmd'";
734 }
735
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200736 if (defined $author) {
737 $message = "From: $author\n\n$message";
Junio C Hamano8a8e6232006-03-23 23:43:52 -0800738 }
Ryan Anderson83b24432005-07-31 04:17:25 -0400739
Ryan Anderson83b24432005-07-31 04:17:25 -0400740 send_message();
741
742 # set up for the next message
Junio C Hamanobc108f62006-10-05 16:36:15 -0700743 if ($chain_reply_to || !defined $reply_to || length($reply_to) == 0) {
Ryan Anderson78488b22005-07-31 20:04:24 -0400744 $reply_to = $message_id;
Ryan Anderson7ccf7922006-05-29 12:30:12 -0700745 if (length $references > 0) {
YOSHIFUJI Hideaki / 吉藤英明a925b892007-04-06 08:50:24 +0900746 $references .= "\n $message_id";
Ryan Anderson7ccf7922006-05-29 12:30:12 -0700747 } else {
748 $references = "$message_id";
749 }
Ryan Anderson78488b22005-07-31 20:04:24 -0400750 }
Ryan Anderson83b24432005-07-31 04:17:25 -0400751}
Ryan Andersone2057352005-08-02 21:45:22 -0400752
Ryan Anderson1f038a02005-09-05 01:13:07 -0400753if ($compose) {
754 cleanup_compose_files();
755}
756
757sub cleanup_compose_files() {
758 unlink($compose_filename, $compose_filename . ".final");
759
760}
761
Eric Wong4bc87a22006-03-25 17:20:48 -0800762$smtp->quit if $smtp;
Ryan Andersone2057352005-08-02 21:45:22 -0400763
764sub unique_email_list(@) {
765 my %seen;
766 my @emails;
767
768 foreach my $entry (@_) {
Eric Wongdb3106b2006-05-15 02:41:01 -0700769 if (my $clean = extract_valid_address($entry)) {
770 $seen{$clean} ||= 0;
771 next if $seen{$clean}++;
772 push @emails, $entry;
773 } else {
774 print STDERR "W: unable to extract a valid address",
775 " from: $entry\n";
776 }
Ryan Andersone2057352005-08-02 21:45:22 -0400777 }
778 return @emails;
779}