blob: 77ca8fe8803f102b877c4d63ed1ffa41920cbd54 [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;
Wu Fengguang0e73b3e2008-12-19 16:10:10 +080023use Text::ParseWords;
Ryan Anderson83b24432005-07-31 04:17:25 -040024use Data::Dumper;
Sean Estabrooks412876d2007-08-17 17:38:25 -040025use Term::ANSIColor;
Pierre Habouzit5df9fcf2008-11-11 00:54:00 +010026use File::Temp qw/ tempdir /;
27use Error qw(:try);
Petr Baudis3cb8caf2006-07-03 22:47:58 +020028use Git;
Ryan Anderson83b24432005-07-31 04:17:25 -040029
Pierre Habouzit5df9fcf2008-11-11 00:54:00 +010030Getopt::Long::Configure qw/ pass_through /;
31
Junio C Hamano280242d2006-07-02 16:03:59 -070032package FakeTerm;
33sub new {
34 my ($class, $reason) = @_;
35 return bless \$reason, shift;
36}
37sub readline {
38 my $self = shift;
39 die "Cannot use readline on FakeTerm: $$self";
40}
41package main;
42
Michael Coleman1b0baf12007-02-27 22:47:54 -060043
44sub usage {
45 print <<EOT;
Pierre Habouzit5df9fcf2008-11-11 00:54:00 +010046git send-email [options] <file | directory | rev-list options >
Michael Witten4ed62b02008-09-30 07:58:30 -050047
48 Composing:
49 --from <str> * Email From:
50 --to <str> * Email To:
51 --cc <str> * Email Cc:
52 --bcc <str> * Email Bcc:
53 --subject <str> * Email "Subject:"
54 --in-reply-to <str> * Email "In-Reply-To:"
Pierre Habouzit8fd5bb72008-11-11 00:54:01 +010055 --annotate * Review each patch that will be sent in an editor.
Michael Witten4ed62b02008-09-30 07:58:30 -050056 --compose * Open an editor for introduction.
57
58 Sending:
59 --envelope-sender <str> * Email envelope sender.
60 --smtp-server <str:int> * Outgoing SMTP server to use. The port
61 is optional. Default 'localhost'.
62 --smtp-server-port <int> * Outgoing SMTP server port.
63 --smtp-user <str> * Username for SMTP-AUTH.
64 --smtp-pass <str> * Password for SMTP-AUTH; not necessary.
65 --smtp-encryption <str> * tls or ssl; anything else disables.
66 --smtp-ssl * Deprecated. Use '--smtp-encryption ssl'.
67
68 Automating:
69 --identity <str> * Use the sendemail.<id> options.
70 --cc-cmd <str> * Email Cc: via `<str> \$patch_path`
71 --suppress-cc <str> * author, self, sob, cccmd, all.
72 --[no-]signed-off-by-cc * Send to Cc: and Signed-off-by:
73 addresses. Default on.
74 --[no-]suppress-from * Send to self. Default off.
75 --[no-]chain-reply-to * Chain In-Reply-To: fields. Default on.
76 --[no-]thread * Use In-Reply-To: field. Default on.
77
78 Administering:
79 --quiet * Output one line of info per email.
80 --dry-run * Don't actually send the emails.
81 --[no-]validate * Perform patch sanity checks. Default on.
Pierre Habouzit5df9fcf2008-11-11 00:54:00 +010082 --[no-]format-patch * understand any non optional arguments as
83 `git format-patch` ones.
Jeff Kingc764a0c2008-01-18 09:20:10 -050084
Michael Coleman1b0baf12007-02-27 22:47:54 -060085EOT
86 exit(1);
87}
88
Eric Wong4bc87a22006-03-25 17:20:48 -080089# most mail servers generate the Date: header, but not all...
Jakub Narebski6bdca892006-07-07 20:57:55 +020090sub format_2822_time {
91 my ($time) = @_;
92 my @localtm = localtime($time);
93 my @gmttm = gmtime($time);
94 my $localmin = $localtm[1] + $localtm[2] * 60;
95 my $gmtmin = $gmttm[1] + $gmttm[2] * 60;
96 if ($localtm[0] != $gmttm[0]) {
97 die "local zone differs from GMT by a non-minute interval\n";
98 }
99 if ((($gmttm[6] + 1) % 7) == $localtm[6]) {
100 $localmin += 1440;
101 } elsif ((($gmttm[6] - 1) % 7) == $localtm[6]) {
102 $localmin -= 1440;
103 } elsif ($gmttm[6] != $localtm[6]) {
104 die "local time offset greater than or equal to 24 hours\n";
105 }
106 my $offset = $localmin - $gmtmin;
107 my $offhour = $offset / 60;
108 my $offmin = abs($offset % 60);
109 if (abs($offhour) >= 24) {
110 die ("local time offset greater than or equal to 24 hours\n");
111 }
112
113 return sprintf("%s, %2d %s %d %02d:%02d:%02d %s%02d%02d",
114 qw(Sun Mon Tue Wed Thu Fri Sat)[$localtm[6]],
115 $localtm[3],
116 qw(Jan Feb Mar Apr May Jun
117 Jul Aug Sep Oct Nov Dec)[$localtm[4]],
118 $localtm[5]+1900,
119 $localtm[2],
120 $localtm[1],
121 $localtm[0],
122 ($offset >= 0) ? '+' : '-',
123 abs($offhour),
124 $offmin,
125 );
126}
Eric Wong4bc87a22006-03-25 17:20:48 -0800127
Eric Wong567ffeb2006-03-25 16:47:12 -0800128my $have_email_valid = eval { require Email::Valid; 1 };
Eric Wong4bc87a22006-03-25 17:20:48 -0800129my $smtp;
Wincent Colaiuta5f5b6112007-11-21 13:35:05 +0100130my $auth;
Eric Wong4bc87a22006-03-25 17:20:48 -0800131
Ryan Andersone2057352005-08-02 21:45:22 -0400132sub unique_email_list(@);
Ryan Anderson1f038a02005-09-05 01:13:07 -0400133sub cleanup_compose_files();
134
Ryan Anderson83b24432005-07-31 04:17:25 -0400135# Variables we fill in automatically, or via prompting:
Junio C Hamanoce91c2f2006-10-05 16:36:49 -0700136my (@to,@cc,@initial_cc,@bcclist,@xh,
Pierre Habouzit8fd5bb72008-11-11 00:54:01 +0100137 $initial_reply_to,$initial_subject,@files,
138 $author,$sender,$smtp_authpass,$annotate,$compose,$time);
Ryan Anderson83b24432005-07-31 04:17:25 -0400139
Robin H. Johnsonf073a592007-04-25 19:37:22 -0700140my $envelope_sender;
Ryan Anderson78488b22005-07-31 20:04:24 -0400141
Ryan Anderson91332612005-07-31 20:04:24 -0400142# Example reply to:
Ryan Anderson83b24432005-07-31 04:17:25 -0400143#$initial_reply_to = ''; #<20050203173208.GA23964@foobar.com>';
Ryan Anderson83b24432005-07-31 04:17:25 -0400144
Frank Lichtenheldad79c022008-03-14 18:29:30 +0100145my $repo = eval { Git->repository() };
146my @repo = $repo ? ($repo) : ();
Junio C Hamano280242d2006-07-02 16:03:59 -0700147my $term = eval {
Jay Soffian0fb7fc72008-02-21 19:16:04 -0500148 $ENV{"GIT_SEND_EMAIL_NOTTY"}
149 ? new Term::ReadLine 'git-send-email', \*STDIN, \*STDOUT
150 : new Term::ReadLine 'git-send-email';
Junio C Hamano280242d2006-07-02 16:03:59 -0700151};
152if ($@) {
153 $term = new FakeTerm "$@: going non-interactive";
154}
Ryan Anderson83b24432005-07-31 04:17:25 -0400155
Adam Roben5483c712007-06-27 20:59:37 -0700156# Behavior modification variables
157my ($quiet, $dry_run) = (0, 0);
Pierre Habouzit5df9fcf2008-11-11 00:54:00 +0100158my $format_patch;
Pierre Habouzitcaf0c3d2008-11-11 00:53:59 +0100159my $compose_filename = $repo->repo_path() . "/.gitsendemail.msg.$$";
Adam Roben5483c712007-06-27 20:59:37 -0700160
Pierre Habouzit8fd5bb72008-11-11 00:54:01 +0100161# Handle interactive edition of files.
162my $multiedit;
163my $editor = $ENV{GIT_EDITOR} || Git::config(@repo, "core.editor") || $ENV{VISUAL} || $ENV{EDITOR} || "vi";
164sub do_edit {
165 if (defined($multiedit) && !$multiedit) {
Pierre Habouzitbeece9d2008-11-11 00:54:02 +0100166 map {
167 system('sh', '-c', $editor.' "$@"', $editor, $_);
168 if (($? & 127) || ($? >> 8)) {
169 die("the editor exited uncleanly, aborting everything");
170 }
171 } @_;
Pierre Habouzit8fd5bb72008-11-11 00:54:01 +0100172 } else {
173 system('sh', '-c', $editor.' "$@"', $editor, @_);
Pierre Habouzitbeece9d2008-11-11 00:54:02 +0100174 if (($? & 127) || ($? >> 8)) {
175 die("the editor exited uncleanly, aborting everything");
176 }
Pierre Habouzit8fd5bb72008-11-11 00:54:01 +0100177 }
178}
Adam Roben5483c712007-06-27 20:59:37 -0700179
180# Variables with corresponding config settings
Michael Wittenddc3d4f2008-09-30 07:58:32 -0500181my ($thread, $chain_reply_to, $suppress_from, $signed_off_by_cc, $cc_cmd);
Thomas Rastf6bebd12008-06-25 21:42:43 +0200182my ($smtp_server, $smtp_server_port, $smtp_authuser, $smtp_encryption);
Junio C Hamano44b24762007-09-25 17:27:54 -0700183my ($identity, $aliasfiletype, @alias_files, @smtp_host_parts);
Michael Wittendbf5e1e2008-09-30 07:58:27 -0500184my ($validate);
David Brown65648282007-12-25 19:56:29 -0800185my (@suppress_cc);
Adam Roben5483c712007-06-27 20:59:37 -0700186
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900187my %config_bool_settings = (
Adam Roben5483c712007-06-27 20:59:37 -0700188 "thread" => [\$thread, 1],
189 "chainreplyto" => [\$chain_reply_to, 1],
David Brown65648282007-12-25 19:56:29 -0800190 "suppressfrom" => [\$suppress_from, undef],
Michael Wittenddc3d4f2008-09-30 07:58:32 -0500191 "signedoffbycc" => [\$signed_off_by_cc, undef],
192 "signedoffcc" => [\$signed_off_by_cc, undef], # Deprecated
Michael Wittendbf5e1e2008-09-30 07:58:27 -0500193 "validate" => [\$validate, 1],
Adam Robene46f7a02007-06-26 15:48:30 -0700194);
195
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900196my %config_settings = (
197 "smtpserver" => \$smtp_server,
Junio C Hamano44b24762007-09-25 17:27:54 -0700198 "smtpserverport" => \$smtp_server_port,
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900199 "smtpuser" => \$smtp_authuser,
200 "smtppass" => \$smtp_authpass,
Miklos Vajna2db9b492007-10-01 14:42:42 +0200201 "to" => \@to,
Miklos Vajna5f8b9fc2008-04-27 14:14:58 +0200202 "cc" => \@initial_cc,
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900203 "cccmd" => \$cc_cmd,
204 "aliasfiletype" => \$aliasfiletype,
205 "bcc" => \@bcclist,
206 "aliasesfile" => \@alias_files,
David Brown65648282007-12-25 19:56:29 -0800207 "suppresscc" => \@suppress_cc,
Ask Bjørn Hansen9f7820a2008-06-07 00:33:42 -0700208 "envelopesender" => \$envelope_sender,
Pierre Habouzit8fd5bb72008-11-11 00:54:01 +0100209 "multiedit" => \$multiedit,
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900210);
Avi Kivity4a62d3f2007-03-11 19:19:44 +0200211
Michael Witten87429972008-02-03 19:53:57 -0500212# Handle Uncouth Termination
213sub signal_handler {
214
215 # Make text normal
216 print color("reset"), "\n";
217
218 # SMTP password masked
219 system "stty echo";
220
221 # tmp files from --compose
222 if (-e $compose_filename) {
223 print "'$compose_filename' contains an intermediate version of the email you were composing.\n";
224 }
225 if (-e ($compose_filename . ".final")) {
226 print "'$compose_filename.final' contains the composed email.\n"
227 }
228
229 exit;
230};
231
232$SIG{TERM} = \&signal_handler;
233$SIG{INT} = \&signal_handler;
234
Ryan Anderson83b24432005-07-31 04:17:25 -0400235# Begin by accumulating all the variables (defined above), that we will end up
236# needing, first, from the command line:
237
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200238my $rc = GetOptions("sender|from=s" => \$sender,
Ryan Anderson83b24432005-07-31 04:17:25 -0400239 "in-reply-to=s" => \$initial_reply_to,
240 "subject=s" => \$initial_subject,
241 "to=s" => \@to,
Ryan Andersonda140f82006-02-13 03:05:15 -0500242 "cc=s" => \@initial_cc,
Ryan Anderson58063242006-05-29 12:30:13 -0700243 "bcc=s" => \@bcclist,
Ryan Anderson78488b22005-07-31 20:04:24 -0400244 "chain-reply-to!" => \$chain_reply_to,
Ryan Anderson3342d852005-07-31 20:04:24 -0400245 "smtp-server=s" => \$smtp_server,
Junio C Hamano44b24762007-09-25 17:27:54 -0700246 "smtp-server-port=s" => \$smtp_server_port,
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900247 "smtp-user=s" => \$smtp_authuser,
Michael Witten2363d742008-02-03 19:53:56 -0500248 "smtp-pass:s" => \$smtp_authpass,
Thomas Rastf6bebd12008-06-25 21:42:43 +0200249 "smtp-ssl" => sub { $smtp_encryption = 'ssl' },
250 "smtp-encryption=s" => \$smtp_encryption,
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900251 "identity=s" => \$identity,
Pierre Habouzit8fd5bb72008-11-11 00:54:01 +0100252 "annotate" => \$annotate,
Ryan Anderson1f038a02005-09-05 01:13:07 -0400253 "compose" => \$compose,
Ryan Anderson30d08b32006-02-02 11:56:06 -0500254 "quiet" => \$quiet,
Joe Perches324a8bd2007-08-17 18:51:12 -0700255 "cc-cmd=s" => \$cc_cmd,
Adam Roben5483c712007-06-27 20:59:37 -0700256 "suppress-from!" => \$suppress_from,
David Brown65648282007-12-25 19:56:29 -0800257 "suppress-cc=s" => \@suppress_cc,
Michael Wittenddc3d4f2008-09-30 07:58:32 -0500258 "signed-off-cc|signed-off-by-cc!" => \$signed_off_by_cc,
Matthew Wilcox61302592006-10-10 08:58:23 -0600259 "dry-run" => \$dry_run,
Robin H. Johnsonf073a592007-04-25 19:37:22 -0700260 "envelope-sender=s" => \$envelope_sender,
Adam Roben5483c712007-06-27 20:59:37 -0700261 "thread!" => \$thread,
Michael Wittendbf5e1e2008-09-30 07:58:27 -0500262 "validate!" => \$validate,
Pierre Habouzit5df9fcf2008-11-11 00:54:00 +0100263 "format-patch!" => \$format_patch,
Ryan Anderson83b24432005-07-31 04:17:25 -0400264 );
265
Michael Coleman1b0baf12007-02-27 22:47:54 -0600266unless ($rc) {
267 usage();
268}
269
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900270# Now, let's fill any that aren't set in with defaults:
271
272sub read_config {
273 my ($prefix) = @_;
274
275 foreach my $setting (keys %config_bool_settings) {
276 my $target = $config_bool_settings{$setting}->[0];
Frank Lichtenheldad79c022008-03-14 18:29:30 +0100277 $$target = Git::config_bool(@repo, "$prefix.$setting") unless (defined $$target);
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900278 }
279
280 foreach my $setting (keys %config_settings) {
281 my $target = $config_settings{$setting};
282 if (ref($target) eq "ARRAY") {
283 unless (@$target) {
Frank Lichtenheldad79c022008-03-14 18:29:30 +0100284 my @values = Git::config(@repo, "$prefix.$setting");
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900285 @$target = @values if (@values && defined $values[0]);
286 }
287 }
288 else {
Frank Lichtenheldad79c022008-03-14 18:29:30 +0100289 $$target = Git::config(@repo, "$prefix.$setting") unless (defined $$target);
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900290 }
291 }
Thomas Rastf6bebd12008-06-25 21:42:43 +0200292
293 if (!defined $smtp_encryption) {
294 my $enc = Git::config(@repo, "$prefix.smtpencryption");
295 if (defined $enc) {
296 $smtp_encryption = $enc;
297 } elsif (Git::config_bool(@repo, "$prefix.smtpssl")) {
298 $smtp_encryption = 'ssl';
299 }
300 }
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900301}
302
303# read configuration from [sendemail "$identity"], fall back on [sendemail]
Frank Lichtenheldad79c022008-03-14 18:29:30 +0100304$identity = Git::config(@repo, "sendemail.identity") unless (defined $identity);
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900305read_config("sendemail.$identity") if (defined $identity);
306read_config("sendemail");
307
308# fall back on builtin bool defaults
309foreach my $setting (values %config_bool_settings) {
310 ${$setting->[0]} = $setting->[1] unless (defined (${$setting->[0]}));
311}
312
Thomas Rastfa835cd2008-06-26 23:03:21 +0200313# 'default' encryption is none -- this only prevents a warning
314$smtp_encryption = '' unless (defined $smtp_encryption);
315
David Brown65648282007-12-25 19:56:29 -0800316# Set CC suppressions
317my(%suppress_cc);
318if (@suppress_cc) {
319 foreach my $entry (@suppress_cc) {
320 die "Unknown --suppress-cc field: '$entry'\n"
321 unless $entry =~ /^(all|cccmd|cc|author|self|sob)$/;
322 $suppress_cc{$entry} = 1;
323 }
324}
325
326if ($suppress_cc{'all'}) {
327 foreach my $entry (qw (ccmd cc author self sob)) {
328 $suppress_cc{$entry} = 1;
329 }
330 delete $suppress_cc{'all'};
331}
332
333# If explicit old-style ones are specified, they trump --suppress-cc.
334$suppress_cc{'self'} = $suppress_from if defined $suppress_from;
Michael Wittenddc3d4f2008-09-30 07:58:32 -0500335$suppress_cc{'sob'} = !$signed_off_by_cc if defined $signed_off_by_cc;
David Brown65648282007-12-25 19:56:29 -0800336
337# Debugging, print out the suppressions.
338if (0) {
339 print "suppressions:\n";
340 foreach my $entry (keys %suppress_cc) {
341 printf " %-5s -> $suppress_cc{$entry}\n", $entry;
342 }
343}
344
Frank Lichtenheldad79c022008-03-14 18:29:30 +0100345my ($repoauthor, $repocommitter);
346($repoauthor) = Git::ident_person(@repo, 'author');
347($repocommitter) = Git::ident_person(@repo, 'committer');
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900348
Eric W. Biederman79ee5552006-06-21 07:17:31 -0600349# Verify the user input
350
351foreach my $entry (@to) {
352 die "Comma in --to entry: $entry'\n" unless $entry !~ m/,/;
353}
354
355foreach my $entry (@initial_cc) {
356 die "Comma in --cc entry: $entry'\n" unless $entry !~ m/,/;
357}
358
359foreach my $entry (@bcclist) {
360 die "Comma in --bcclist entry: $entry'\n" unless $entry !~ m/,/;
361}
362
Wu Fengguang0e73b3e2008-12-19 16:10:10 +0800363sub split_addrs {
Junio C Hamano2f0e7cb2008-12-21 01:57:59 -0800364 return quotewords('\s*,\s*', 1, @_);
Wu Fengguang0e73b3e2008-12-19 16:10:10 +0800365}
366
Eric Wong994d6c62006-05-14 19:13:44 -0700367my %aliases;
Eric Wong994d6c62006-05-14 19:13:44 -0700368my %parse_alias = (
369 # multiline formats can be supported in the future
370 mutt => sub { my $fh = shift; while (<$fh>) {
Michael Hendricks504ceab2007-05-16 23:15:16 -0600371 if (/^\s*alias\s+(\S+)\s+(.*)$/) {
Eric Wong994d6c62006-05-14 19:13:44 -0700372 my ($alias, $addr) = ($1, $2);
373 $addr =~ s/#.*$//; # mutt allows # comments
374 # commas delimit multiple addresses
Wu Fengguang0e73b3e2008-12-19 16:10:10 +0800375 $aliases{$alias} = [ split_addrs($addr) ];
Eric Wong994d6c62006-05-14 19:13:44 -0700376 }}},
377 mailrc => sub { my $fh = shift; while (<$fh>) {
378 if (/^alias\s+(\S+)\s+(.*)$/) {
379 # spaces delimit multiple addresses
380 $aliases{$1} = [ split(/\s+/, $2) ];
381 }}},
Trent Piepho73c427e2008-11-25 18:55:00 -0800382 pine => sub { my $fh = shift; my $f='\t[^\t]*';
383 for (my $x = ''; defined($x); $x = $_) {
384 chomp $x;
385 $x .= $1 while(defined($_ = <$fh>) && /^ +(.*)$/);
386 $x =~ /^(\S+)$f\t\(?([^\t]+?)\)?(:?$f){0,2}$/ or next;
Wu Fengguang0e73b3e2008-12-19 16:10:10 +0800387 $aliases{$1} = [ split_addrs($2) ];
Trent Piepho73c427e2008-11-25 18:55:00 -0800388 }},
Eric Wong994d6c62006-05-14 19:13:44 -0700389 gnus => sub { my $fh = shift; while (<$fh>) {
390 if (/\(define-mail-alias\s+"(\S+?)"\s+"(\S+?)"\)/) {
391 $aliases{$1} = [ $2 ];
392 }}}
393);
394
Petr Baudis3cb8caf2006-07-03 22:47:58 +0200395if (@alias_files and $aliasfiletype and defined $parse_alias{$aliasfiletype}) {
Eric Wong994d6c62006-05-14 19:13:44 -0700396 foreach my $file (@alias_files) {
397 open my $fh, '<', $file or die "opening $file: $!\n";
398 $parse_alias{$aliasfiletype}->($fh);
399 close $fh;
400 }
401}
402
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200403($sender) = expand_aliases($sender) if defined $sender;
Michael Hendricksae740a52007-07-04 19:11:36 -0600404
Pierre Habouzit5df9fcf2008-11-11 00:54:00 +0100405# returns 1 if the conflict must be solved using it as a format-patch argument
406sub check_file_rev_conflict($) {
407 my $f = shift;
408 try {
409 $repo->command('rev-parse', '--verify', '--quiet', $f);
410 if (defined($format_patch)) {
411 print "foo\n";
412 return $format_patch;
413 }
414 die(<<EOF);
415File '$f' exists but it could also be the range of commits
416to produce patches for. Please disambiguate by...
417
418 * Saying "./$f" if you mean a file; or
419 * Giving --format-patch option if you mean a range.
420EOF
421 } catch Git::Error::Command with {
422 return 0;
423 }
424}
425
Jeff Kingaa548922008-01-18 09:19:36 -0500426# Now that all the defaults are set, process the rest of the command line
427# arguments and collect up the files that need to be processed.
Pierre Habouzit5df9fcf2008-11-11 00:54:00 +0100428my @rev_list_opts;
Junio C Hamano69f4ce52008-11-30 22:38:20 -0800429while (defined(my $f = shift @ARGV)) {
Pierre Habouzit5df9fcf2008-11-11 00:54:00 +0100430 if ($f eq "--") {
431 push @rev_list_opts, "--", @ARGV;
432 @ARGV = ();
433 } elsif (-d $f and !check_file_rev_conflict($f)) {
Jeff Kingaa548922008-01-18 09:19:36 -0500434 opendir(DH,$f)
435 or die "Failed to opendir $f: $!";
436
437 push @files, grep { -f $_ } map { +$f . "/" . $_ }
438 sort readdir(DH);
Pierre Habouzit8c178682008-10-31 18:57:10 +0000439 closedir(DH);
Pierre Habouzit5df9fcf2008-11-11 00:54:00 +0100440 } elsif ((-f $f or -p $f) and !check_file_rev_conflict($f)) {
Jeff Kingaa548922008-01-18 09:19:36 -0500441 push @files, $f;
Jeff Kingaa548922008-01-18 09:19:36 -0500442 } else {
Pierre Habouzit5df9fcf2008-11-11 00:54:00 +0100443 push @rev_list_opts, $f;
Jeff Kingaa548922008-01-18 09:19:36 -0500444 }
445}
446
Pierre Habouzit5df9fcf2008-11-11 00:54:00 +0100447if (@rev_list_opts) {
448 push @files, $repo->command('format-patch', '-o', tempdir(CLEANUP => 1), @rev_list_opts);
449}
450
Michael Wittendbf5e1e2008-09-30 07:58:27 -0500451if ($validate) {
Jeff Kingc764a0c2008-01-18 09:20:10 -0500452 foreach my $f (@files) {
Kevin Ballard300913b2008-06-25 15:44:40 -0700453 unless (-p $f) {
454 my $error = validate_patch($f);
455 $error and die "fatal: $f: $error\nwarning: no patches were sent\n";
456 }
Jeff Kingc764a0c2008-01-18 09:20:10 -0500457 }
Jeff King747bbff2008-01-18 09:19:48 -0500458}
459
Jeff Kingaa548922008-01-18 09:19:36 -0500460if (@files) {
461 unless ($quiet) {
462 print $_,"\n" for (@files);
463 }
464} else {
465 print STDERR "\nNo patch files specified!\n\n";
466 usage();
467}
468
Pierre Habouzitbeece9d2008-11-11 00:54:02 +0100469sub get_patch_subject($) {
470 my $fn = shift;
471 open (my $fh, '<', $fn);
472 while (my $line = <$fh>) {
473 next unless ($line =~ /^Subject: (.*)$/);
474 close $fh;
475 return "GIT: $1\n";
476 }
477 close $fh;
478 die "No subject line in $fn ?";
479}
480
481if ($compose) {
482 # Note that this does not need to be secure, but we will make a small
483 # effort to have it be unique
484 open(C,">",$compose_filename)
485 or die "Failed to open for writing $compose_filename: $!";
486
487
488 my $tpl_sender = $sender || $repoauthor || $repocommitter || '';
489 my $tpl_subject = $initial_subject || '';
490 my $tpl_reply_to = $initial_reply_to || '';
491
492 print C <<EOT;
493From $tpl_sender # This line is ignored.
494GIT: Lines beginning in "GIT: " will be removed.
495GIT: Consider including an overall diffstat or table of contents
496GIT: for the patch you are writing.
497GIT:
498GIT: Clear the body content if you don't wish to send a summary.
499From: $tpl_sender
500Subject: $tpl_subject
501In-Reply-To: $tpl_reply_to
502
503EOT
504 for my $f (@files) {
505 print C get_patch_subject($f);
506 }
507 close(C);
508
509 my $editor = $ENV{GIT_EDITOR} || Git::config(@repo, "core.editor") || $ENV{VISUAL} || $ENV{EDITOR} || "vi";
510
511 if ($annotate) {
512 do_edit($compose_filename, @files);
513 } else {
514 do_edit($compose_filename);
515 }
516
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 my $need_8bit_cte = file_has_nonascii($compose_filename);
524 my $in_body = 0;
525 my $summary_empty = 1;
526 while(<C>) {
527 next if m/^GIT: /;
528 if ($in_body) {
529 $summary_empty = 0 unless (/^\n$/);
530 } elsif (/^\n$/) {
531 $in_body = 1;
532 if ($need_8bit_cte) {
533 print C2 "MIME-Version: 1.0\n",
534 "Content-Type: text/plain; ",
535 "charset=utf-8\n",
536 "Content-Transfer-Encoding: 8bit\n";
537 }
538 } elsif (/^MIME-Version:/i) {
539 $need_8bit_cte = 0;
540 } elsif (/^Subject:\s*(.+)\s*$/i) {
541 $initial_subject = $1;
542 my $subject = $initial_subject;
543 $_ = "Subject: " .
544 ($subject =~ /[^[:ascii:]]/ ?
545 quote_rfc2047($subject) :
546 $subject) .
547 "\n";
548 } elsif (/^In-Reply-To:\s*(.+)\s*$/i) {
549 $initial_reply_to = $1;
550 next;
551 } elsif (/^From:\s*(.+)\s*$/i) {
552 $sender = $1;
553 next;
554 } elsif (/^(?:To|Cc|Bcc):/i) {
555 print "To/Cc/Bcc fields are not interpreted yet, they have been ignored\n";
556 next;
557 }
558 print C2 $_;
559 }
560 close(C);
561 close(C2);
562
563 if ($summary_empty) {
564 print "Summary email is empty, skipping it\n";
565 $compose = -1;
566 }
567} elsif ($annotate) {
568 do_edit(@files);
569}
570
Ryan Anderson1f038a02005-09-05 01:13:07 -0400571my $prompting = 0;
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200572if (!defined $sender) {
Frank Lichtenheldad79c022008-03-14 18:29:30 +0100573 $sender = $repoauthor || $repocommitter || '';
Michael Witten8a7c56e2008-02-03 19:53:58 -0500574
575 while (1) {
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200576 $_ = $term->readline("Who should the emails appear to be from? [$sender] ");
Michael Witten8a7c56e2008-02-03 19:53:58 -0500577 last if defined $_;
578 print "\n";
579 }
Ryan Anderson8037d1a2005-07-31 20:04:24 -0400580
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200581 $sender = $_ if ($_);
582 print "Emails will be sent from: ", $sender, "\n";
Ryan Anderson1f038a02005-09-05 01:13:07 -0400583 $prompting++;
Ryan Anderson83b24432005-07-31 04:17:25 -0400584}
585
586if (!@to) {
Michael Witten8a7c56e2008-02-03 19:53:58 -0500587
588
589 while (1) {
590 $_ = $term->readline("Who should the emails be sent to? ", "");
591 last if defined $_;
592 print "\n";
593 }
594
Ryan Anderson83b24432005-07-31 04:17:25 -0400595 my $to = $_;
Wu Fengguang0e73b3e2008-12-19 16:10:10 +0800596 push @to, split_addrs($to);
Ryan Anderson1f038a02005-09-05 01:13:07 -0400597 $prompting++;
Ryan Anderson83b24432005-07-31 04:17:25 -0400598}
599
Eric Wong994d6c62006-05-14 19:13:44 -0700600sub expand_aliases {
601 my @cur = @_;
602 my @last;
603 do {
604 @last = @cur;
605 @cur = map { $aliases{$_} ? @{$aliases{$_}} : $_ } @last;
606 } while (join(',',@cur) ne join(',',@last));
607 return @cur;
608}
609
610@to = expand_aliases(@to);
Uwe Kleine-K,Av(Bnig5b56aaa2007-08-06 22:34:50 +0200611@to = (map { sanitize_address($_) } @to);
Eric Wong994d6c62006-05-14 19:13:44 -0700612@initial_cc = expand_aliases(@initial_cc);
Ryan Anderson58063242006-05-29 12:30:13 -0700613@bcclist = expand_aliases(@bcclist);
Eric Wong994d6c62006-05-14 19:13:44 -0700614
Adam Roben5483c712007-06-27 20:59:37 -0700615if ($thread && !defined $initial_reply_to && $prompting) {
Michael Witten8a7c56e2008-02-03 19:53:58 -0500616 while (1) {
617 $_= $term->readline("Message-ID to be used as In-Reply-To for the first email? ", $initial_reply_to);
618 last if defined $_;
619 print "\n";
620 }
Ryan Anderson8037d1a2005-07-31 20:04:24 -0400621
Ryan Anderson83b24432005-07-31 04:17:25 -0400622 $initial_reply_to = $_;
623}
Jay Soffian1ca3d6e2008-02-20 00:55:07 -0500624if (defined $initial_reply_to) {
Jay Soffian0fb7fc72008-02-21 19:16:04 -0500625 $initial_reply_to =~ s/^\s*<?//;
626 $initial_reply_to =~ s/>?\s*$//;
627 $initial_reply_to = "<$initial_reply_to>" if $initial_reply_to ne '';
Junio C Hamanoace9c2a2007-12-10 21:44:42 -0800628}
Mike Hommeyace72082007-12-09 18:17:28 +0100629
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900630if (!defined $smtp_server) {
Eric Wongaca7ad72006-05-15 02:34:44 -0700631 foreach (qw( /usr/sbin/sendmail /usr/lib/sendmail )) {
632 if (-x $_) {
633 $smtp_server = $_;
634 last;
635 }
636 }
637 $smtp_server ||= 'localhost'; # could be 127.0.0.1, too... *shrug*
Ryan Anderson3342d852005-07-31 20:04:24 -0400638}
639
Ryan Anderson1f038a02005-09-05 01:13:07 -0400640if ($compose) {
Michael Witten8a7c56e2008-02-03 19:53:58 -0500641 while (1) {
Ryan Anderson1f038a02005-09-05 01:13:07 -0400642 $_ = $term->readline("Send this email? (y|n) ");
Michael Witten8a7c56e2008-02-03 19:53:58 -0500643 last if defined $_;
644 print "\n";
645 }
Ryan Anderson1f038a02005-09-05 01:13:07 -0400646
647 if (uc substr($_,0,1) ne 'Y') {
648 cleanup_compose_files();
649 exit(0);
650 }
651
Pierre Habouzitbeece9d2008-11-11 00:54:02 +0100652 if ($compose > 0) {
653 @files = ($compose_filename . ".final", @files);
654 }
Ryan Anderson1f038a02005-09-05 01:13:07 -0400655}
656
Ryan Anderson83b24432005-07-31 04:17:25 -0400657# Variables we set as part of the loop over files
Robin H. Johnsonaf068d22007-04-25 19:37:18 -0700658our ($message_id, %mail, $subject, $reply_to, $references, $message);
Ryan Anderson83b24432005-07-31 04:17:25 -0400659
Eric Wong567ffeb2006-03-25 16:47:12 -0800660sub extract_valid_address {
661 my $address = shift;
Junio C Hamanoad9c18f2006-06-06 00:05:56 -0700662 my $local_part_regexp = '[^<>"\s@]+';
Junio C Hamano09302e12006-06-06 14:12:46 -0700663 my $domain_regexp = '[^.<>"\s@]+(?:\.[^.<>"\s@]+)+';
Eric Wongdb3106b2006-05-15 02:41:01 -0700664
665 # check for a local address:
Junio C Hamanoad9c18f2006-06-06 00:05:56 -0700666 return $address if ($address =~ /^($local_part_regexp)$/);
Eric Wongdb3106b2006-05-15 02:41:01 -0700667
Uwe Kleine-König155197e2007-08-09 15:27:57 +0200668 $address =~ s/^\s*<(.*)>\s*$/$1/;
Eric Wong567ffeb2006-03-25 16:47:12 -0800669 if ($have_email_valid) {
Junio C Hamanoad9c18f2006-06-06 00:05:56 -0700670 return scalar Email::Valid->address($address);
Eric Wong567ffeb2006-03-25 16:47:12 -0800671 } else {
672 # less robust/correct than the monster regexp in Email::Valid,
673 # but still does a 99% job, and one less dependency
Junio C Hamanoad9c18f2006-06-06 00:05:56 -0700674 $address =~ /($local_part_regexp\@$domain_regexp)/;
Horst H. von Brande96fd302006-06-03 13:11:48 -0400675 return $1;
Eric Wong567ffeb2006-03-25 16:47:12 -0800676 }
677}
Ryan Anderson83b24432005-07-31 04:17:25 -0400678
679# Usually don't need to change anything below here.
680
681# we make a "fake" message id by taking the current number
682# of seconds since the beginning of Unix time and tacking on
683# a random number to the end, in case we are called quicker than
684# 1 second since the last time we were called.
Ryan Anderson8037d1a2005-07-31 20:04:24 -0400685
686# We'll setup a template for the message id, using the "from" address:
Ryan Anderson8037d1a2005-07-31 20:04:24 -0400687
Junio C Hamanobe510cf2007-09-17 21:18:20 -0700688my ($message_id_stamp, $message_id_serial);
Ryan Anderson83b24432005-07-31 04:17:25 -0400689sub make_message_id
690{
Junio C Hamanobe510cf2007-09-17 21:18:20 -0700691 my $uniq;
692 if (!defined $message_id_stamp) {
693 $message_id_stamp = sprintf("%s-%s", time, $$);
694 $message_id_serial = 0;
695 }
696 $message_id_serial++;
697 $uniq = "$message_id_stamp-$message_id_serial";
698
Junio C Hamanoaeb59322007-06-20 13:47:34 -0700699 my $du_part;
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200700 for ($sender, $repocommitter, $repoauthor) {
701 $du_part = extract_valid_address(sanitize_address($_));
702 last if (defined $du_part and $du_part ne '');
Junio C Hamanoaeb59322007-06-20 13:47:34 -0700703 }
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200704 if (not defined $du_part or $du_part eq '') {
Junio C Hamanoaeb59322007-06-20 13:47:34 -0700705 use Sys::Hostname qw();
706 $du_part = 'user@' . Sys::Hostname::hostname();
707 }
Junio C Hamanobe510cf2007-09-17 21:18:20 -0700708 my $message_id_template = "<%s-git-send-email-%s>";
709 $message_id = sprintf($message_id_template, $uniq, $du_part);
Ryan Anderson8037d1a2005-07-31 20:04:24 -0400710 #print "new message id = $message_id\n"; # Was useful for debugging
Ryan Anderson83b24432005-07-31 04:17:25 -0400711}
712
713
714
Eric Wonga5370b12006-03-25 03:01:01 -0800715$time = time - scalar $#files;
Ryan Anderson83b24432005-07-31 04:17:25 -0400716
Jürgen Rühle374c5902007-01-10 13:36:39 -0800717sub unquote_rfc2047 {
718 local ($_) = @_;
Jeff King8291db62007-11-16 05:49:09 -0500719 my $encoding;
720 if (s/=\?([^?]+)\?q\?(.*)\?=/$2/g) {
721 $encoding = $1;
Jürgen Rühle374c5902007-01-10 13:36:39 -0800722 s/_/ /g;
723 s/=([0-9A-F]{2})/chr(hex($1))/eg;
724 }
Jeff King8291db62007-11-16 05:49:09 -0500725 return wantarray ? ($_, $encoding) : $_;
Jürgen Rühle374c5902007-01-10 13:36:39 -0800726}
727
Jeff Kingd54eaaa2008-03-28 17:29:01 -0400728sub quote_rfc2047 {
729 local $_ = shift;
730 my $encoding = shift || 'utf-8';
731 s/([^-a-zA-Z0-9!*+\/])/sprintf("=%02X", ord($1))/eg;
732 s/(.*)/=\?$encoding\?q\?$1\?=/;
733 return $_;
734}
735
Uwe Kleine-K,Av(Bnig5b56aaa2007-08-06 22:34:50 +0200736# use the simplest quoting being able to handle the recipient
737sub sanitize_address
Robin H. Johnson732263d2007-04-25 19:37:19 -0700738{
739 my ($recipient) = @_;
Uwe Kleine-K,Av(Bnig5b56aaa2007-08-06 22:34:50 +0200740 my ($recipient_name, $recipient_addr) = ($recipient =~ /^(.*?)\s*(<.*)/);
741
742 if (not $recipient_name) {
743 return "$recipient";
Robin H. Johnson732263d2007-04-25 19:37:19 -0700744 }
Uwe Kleine-K,Av(Bnig5b56aaa2007-08-06 22:34:50 +0200745
746 # if recipient_name is already quoted, do nothing
747 if ($recipient_name =~ /^(".*"|=\?utf-8\?q\?.*\?=)$/) {
748 return $recipient;
749 }
750
751 # rfc2047 is needed if a non-ascii char is included
752 if ($recipient_name =~ /[^[:ascii:]]/) {
Jeff Kingd54eaaa2008-03-28 17:29:01 -0400753 $recipient_name = quote_rfc2047($recipient_name);
Uwe Kleine-K,Av(Bnig5b56aaa2007-08-06 22:34:50 +0200754 }
755
756 # double quotes are needed if specials or CTLs are included
757 elsif ($recipient_name =~ /[][()<>@,;:\\".\000-\037\177]/) {
Horst H. von Brand18023c22008-03-28 11:09:04 -0300758 $recipient_name =~ s/(["\\\r])/\\$1/g;
Uwe Kleine-K,Av(Bnig5b56aaa2007-08-06 22:34:50 +0200759 $recipient_name = "\"$recipient_name\"";
760 }
761
762 return "$recipient_name $recipient_addr";
763
Robin H. Johnson732263d2007-04-25 19:37:19 -0700764}
765
Ryan Anderson83b24432005-07-31 04:17:25 -0400766sub send_message
767{
Eric Wong4bc87a22006-03-25 17:20:48 -0800768 my @recipients = unique_email_list(@to);
Ask Bjørn Hansen7ac17522007-11-19 03:00:26 -0800769 @cc = (grep { my $cc = extract_valid_address($_);
770 not grep { $cc eq $_ } @recipients
771 }
772 map { sanitize_address($_) }
773 @cc);
Eric Wong4bc87a22006-03-25 17:20:48 -0800774 my $to = join (",\n\t", @recipients);
Ryan Anderson58063242006-05-29 12:30:13 -0700775 @recipients = unique_email_list(@recipients,@cc,@bcclist);
Robin H. Johnsonc38f0242007-04-25 19:37:20 -0700776 @recipients = (map { extract_valid_address($_) } @recipients);
Jakub Narebski6bdca892006-07-07 20:57:55 +0200777 my $date = format_2822_time($time++);
Martin Langhoffe923eff2006-05-03 09:44:36 +1200778 my $gitversion = '@@GIT_VERSION@@';
779 if ($gitversion =~ m/..GIT_VERSION../) {
Petr Baudis3cb8caf2006-07-03 22:47:58 +0200780 $gitversion = Git::version();
Martin Langhoffe923eff2006-05-03 09:44:36 +1200781 }
Ryan Anderson83b24432005-07-31 04:17:25 -0400782
Robin H. Johnsonaf068d22007-04-25 19:37:18 -0700783 my $cc = join(", ", unique_email_list(@cc));
Junio C Hamanof06a6a42007-04-16 16:51:47 -0700784 my $ccline = "";
785 if ($cc ne '') {
786 $ccline = "\nCc: $cc";
787 }
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200788 my $sanitized_sender = sanitize_address($sender);
Jeff King4f3d3702007-12-17 15:51:34 -0500789 make_message_id() unless defined($message_id);
Junio C Hamanoaeb59322007-06-20 13:47:34 -0700790
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200791 my $header = "From: $sanitized_sender
Junio C Hamanof06a6a42007-04-16 16:51:47 -0700792To: $to${ccline}
Eric Wong4bc87a22006-03-25 17:20:48 -0800793Subject: $subject
Eric Wong4bc87a22006-03-25 17:20:48 -0800794Date: $date
795Message-Id: $message_id
Martin Langhoffe923eff2006-05-03 09:44:36 +1200796X-Mailer: git-send-email $gitversion
Eric Wong4bc87a22006-03-25 17:20:48 -0800797";
Adam Roben5483c712007-06-27 20:59:37 -0700798 if ($thread && $reply_to) {
Ryan Anderson7ccf7922006-05-29 12:30:12 -0700799
800 $header .= "In-Reply-To: $reply_to\n";
801 $header .= "References: $references\n";
802 }
Junio C Hamanoce91c2f2006-10-05 16:36:49 -0700803 if (@xh) {
804 $header .= join("\n", @xh) . "\n";
805 }
Ryan Anderson83b24432005-07-31 04:17:25 -0400806
Robin H. Johnsonc38f0242007-04-25 19:37:20 -0700807 my @sendmail_parameters = ('-i', @recipients);
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200808 my $raw_from = $sanitized_sender;
Robin H. Johnsonf073a592007-04-25 19:37:22 -0700809 $raw_from = $envelope_sender if (defined $envelope_sender);
810 $raw_from = extract_valid_address($raw_from);
811 unshift (@sendmail_parameters,
812 '-f', $raw_from) if(defined $envelope_sender);
Robin H. Johnson8e3d4362007-04-25 19:37:17 -0700813
Matthew Wilcox61302592006-10-10 08:58:23 -0600814 if ($dry_run) {
815 # We don't want to send the email.
816 } elsif ($smtp_server =~ m#^/#) {
Eric Wongaca7ad72006-05-15 02:34:44 -0700817 my $pid = open my $sm, '|-';
818 defined $pid or die $!;
819 if (!$pid) {
Robin H. Johnson8e3d4362007-04-25 19:37:17 -0700820 exec($smtp_server, @sendmail_parameters) or die $!;
Eric Wongaca7ad72006-05-15 02:34:44 -0700821 }
822 print $sm "$header\n$message";
823 close $sm or die $?;
824 } else {
Junio C Hamano44b24762007-09-25 17:27:54 -0700825
826 if (!defined $smtp_server) {
827 die "The required SMTP server is not properly defined."
828 }
829
Thomas Rastf6bebd12008-06-25 21:42:43 +0200830 if ($smtp_encryption eq 'ssl') {
Junio C Hamano44b24762007-09-25 17:27:54 -0700831 $smtp_server_port ||= 465; # ssmtp
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900832 require Net::SMTP::SSL;
Junio C Hamano44b24762007-09-25 17:27:54 -0700833 $smtp ||= Net::SMTP::SSL->new($smtp_server, Port => $smtp_server_port);
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900834 }
835 else {
836 require Net::SMTP;
Junio C Hamano44b24762007-09-25 17:27:54 -0700837 $smtp ||= Net::SMTP->new((defined $smtp_server_port)
838 ? "$smtp_server:$smtp_server_port"
839 : $smtp_server);
Thomas Rastf6bebd12008-06-25 21:42:43 +0200840 if ($smtp_encryption eq 'tls') {
841 require Net::SMTP::SSL;
842 $smtp->command('STARTTLS');
843 $smtp->response();
844 if ($smtp->code == 220) {
845 $smtp = Net::SMTP::SSL->start_SSL($smtp)
846 or die "STARTTLS failed! ".$smtp->message;
Thomas Rast6cbf8b02008-07-03 00:11:31 +0200847 $smtp_encryption = '';
Robert Shearman9d1ccf52008-07-09 22:39:40 +0100848 # Send EHLO again to receive fresh
849 # supported commands
850 $smtp->hello();
Thomas Rastf6bebd12008-06-25 21:42:43 +0200851 } else {
852 die "Server does not support STARTTLS! ".$smtp->message;
853 }
854 }
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900855 }
Junio C Hamano44b24762007-09-25 17:27:54 -0700856
857 if (!$smtp) {
858 die "Unable to initialize SMTP properly. Is there something wrong with your config?";
859 }
860
Michael Witten2363d742008-02-03 19:53:56 -0500861 if (defined $smtp_authuser) {
862
863 if (!defined $smtp_authpass) {
864
865 system "stty -echo";
866
867 do {
868 print "Password: ";
869 $_ = <STDIN>;
870 print "\n";
871 } while (!defined $_);
872
873 chomp($smtp_authpass = $_);
874
875 system "stty echo";
876 }
877
Wincent Colaiuta5f5b6112007-11-21 13:35:05 +0100878 $auth ||= $smtp->auth( $smtp_authuser, $smtp_authpass ) or die $smtp->message;
Junio C Hamano44b24762007-09-25 17:27:54 -0700879 }
Michael Witten2363d742008-02-03 19:53:56 -0500880
Robin H. Johnson2b69bfc2007-04-25 19:37:21 -0700881 $smtp->mail( $raw_from ) or die $smtp->message;
Eric Wongaca7ad72006-05-15 02:34:44 -0700882 $smtp->to( @recipients ) or die $smtp->message;
883 $smtp->data or die $smtp->message;
884 $smtp->datasend("$header\n$message") or die $smtp->message;
885 $smtp->dataend() or die $smtp->message;
886 $smtp->ok or die "Failed to send $subject\n".$smtp->message;
887 }
Ryan Anderson27184352006-02-05 20:13:52 -0500888 if ($quiet) {
Robin H. Johnson71c7da92007-04-25 19:37:16 -0700889 printf (($dry_run ? "Dry-" : "")."Sent %s\n", $subject);
Ryan Anderson27184352006-02-05 20:13:52 -0500890 } else {
David D. Kilzerb7f30e02007-11-18 20:14:55 -0800891 print (($dry_run ? "Dry-" : "")."OK. Log says:\n");
Robin H. Johnson2b69bfc2007-04-25 19:37:21 -0700892 if ($smtp_server !~ m#^/#) {
Eric Wongaca7ad72006-05-15 02:34:44 -0700893 print "Server: $smtp_server\n";
Robin H. Johnson2b69bfc2007-04-25 19:37:21 -0700894 print "MAIL FROM:<$raw_from>\n";
895 print "RCPT TO:".join(',',(map { "<$_>" } @recipients))."\n";
Eric Wongaca7ad72006-05-15 02:34:44 -0700896 } else {
Robin H. Johnson8e3d4362007-04-25 19:37:17 -0700897 print "Sendmail: $smtp_server ".join(' ',@sendmail_parameters)."\n";
Eric Wongaca7ad72006-05-15 02:34:44 -0700898 }
David D. Kilzerb7f30e02007-11-18 20:14:55 -0800899 print $header, "\n";
Eric Wongaca7ad72006-05-15 02:34:44 -0700900 if ($smtp) {
901 print "Result: ", $smtp->code, ' ',
902 ($smtp->message =~ /\n([^\n]+\n)$/s), "\n";
903 } else {
904 print "Result: OK\n";
905 }
Ryan Anderson30d08b32006-02-02 11:56:06 -0500906 }
Ryan Anderson83b24432005-07-31 04:17:25 -0400907}
908
Ryan Anderson83b24432005-07-31 04:17:25 -0400909$reply_to = $initial_reply_to;
Junio C Hamano2186d562006-05-29 23:53:13 -0700910$references = $initial_reply_to || '';
Ryan Anderson83b24432005-07-31 04:17:25 -0400911$subject = $initial_subject;
912
913foreach my $t (@files) {
Ryan Anderson83b24432005-07-31 04:17:25 -0400914 open(F,"<",$t) or die "can't open file $t";
915
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200916 my $author = undef;
Jeff King8291db62007-11-16 05:49:09 -0500917 my $author_encoding;
918 my $has_content_type;
919 my $body_encoding;
Ryan Andersonda140f82006-02-13 03:05:15 -0500920 @cc = @initial_cc;
Junio C Hamanoce91c2f2006-10-05 16:36:49 -0700921 @xh = ();
Junio C Hamanoe6b09642006-10-07 03:09:05 -0700922 my $input_format = undef;
Ryan Anderson83b24432005-07-31 04:17:25 -0400923 my $header_done = 0;
924 $message = "";
925 while(<F>) {
926 if (!$header_done) {
Junio C Hamanoe6b09642006-10-07 03:09:05 -0700927 if (/^From /) {
928 $input_format = 'mbox';
929 next;
930 }
Ryan Anderson83b24432005-07-31 04:17:25 -0400931 chomp;
Junio C Hamanoe6b09642006-10-07 03:09:05 -0700932 if (!defined $input_format && /^[-A-Za-z]+:\s/) {
933 $input_format = 'mbox';
934 }
Ryan Anderson83b24432005-07-31 04:17:25 -0400935
Junio C Hamanoe6b09642006-10-07 03:09:05 -0700936 if (defined $input_format && $input_format eq 'mbox') {
Ryan Anderson83b24432005-07-31 04:17:25 -0400937 if (/^Subject:\s+(.*)$/) {
938 $subject = $1;
939
940 } elsif (/^(Cc|From):\s+(.*)$/) {
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200941 if (unquote_rfc2047($2) eq $sender) {
David Brown65648282007-12-25 19:56:29 -0800942 next if ($suppress_cc{'self'});
Junio C Hamano8a8e6232006-03-23 23:43:52 -0800943 }
Haavard Skinnemoen68d42c42006-08-23 03:02:59 -0700944 elsif ($1 eq 'From') {
Jeff King8291db62007-11-16 05:49:09 -0500945 ($author, $author_encoding)
946 = unquote_rfc2047($2);
David Brown65648282007-12-25 19:56:29 -0800947 next if ($suppress_cc{'author'});
948 } else {
949 next if ($suppress_cc{'cc'});
Junio C Hamano8a8e6232006-03-23 23:43:52 -0800950 }
Ryan Anderson83b24432005-07-31 04:17:25 -0400951 printf("(mbox) Adding cc: %s from line '%s'\n",
Ryan Anderson27184352006-02-05 20:13:52 -0500952 $2, $_) unless $quiet;
Ryan Anderson83b24432005-07-31 04:17:25 -0400953 push @cc, $2;
954 }
Jeff King8291db62007-11-16 05:49:09 -0500955 elsif (/^Content-type:/i) {
956 $has_content_type = 1;
Peter Valdemar Mørch88920482008-07-25 15:06:48 +0200957 if (/charset="?([^ "]+)/) {
Jeff King8291db62007-11-16 05:49:09 -0500958 $body_encoding = $1;
959 }
960 push @xh, $_;
961 }
Jeff King4f3d3702007-12-17 15:51:34 -0500962 elsif (/^Message-Id: (.*)/i) {
963 $message_id = $1;
964 }
Eric Wong1d6a0032006-10-23 00:46:37 -0700965 elsif (!/^Date:\s/ && /^[-A-Za-z]+:\s+\S/) {
Junio C Hamanoce91c2f2006-10-05 16:36:49 -0700966 push @xh, $_;
967 }
Ryan Anderson83b24432005-07-31 04:17:25 -0400968
969 } else {
970 # In the traditional
971 # "send lots of email" format,
972 # line 1 = cc
973 # line 2 = subject
974 # So let's support that, too.
Junio C Hamanoe6b09642006-10-07 03:09:05 -0700975 $input_format = 'lots';
David Brown65648282007-12-25 19:56:29 -0800976 if (@cc == 0 && !$suppress_cc{'cc'}) {
Ryan Anderson83b24432005-07-31 04:17:25 -0400977 printf("(non-mbox) Adding cc: %s from line '%s'\n",
Ryan Anderson27184352006-02-05 20:13:52 -0500978 $_, $_) unless $quiet;
Ryan Anderson83b24432005-07-31 04:17:25 -0400979
980 push @cc, $_;
981
982 } elsif (!defined $subject) {
983 $subject = $_;
984 }
985 }
Junio C Hamano5825e5b2005-07-31 23:05:16 -0700986
Ryan Anderson83b24432005-07-31 04:17:25 -0400987 # A whitespace line will terminate the headers
988 if (m/^\s*$/) {
989 $header_done = 1;
990 }
991 } else {
992 $message .= $_;
David Brown65648282007-12-25 19:56:29 -0800993 if (/^(Signed-off-by|Cc): (.*)$/i) {
994 next if ($suppress_cc{'sob'});
Junio C Hamanoba517952008-03-07 22:12:13 -0800995 chomp;
J. Bruce Fieldsabec1002007-03-18 21:37:53 -0400996 my $c = $2;
Ryan Anderson83b24432005-07-31 04:17:25 -0400997 chomp $c;
David Brown65648282007-12-25 19:56:29 -0800998 next if ($c eq $sender and $suppress_cc{'self'});
Ryan Anderson83b24432005-07-31 04:17:25 -0400999 push @cc, $c;
1000 printf("(sob) Adding cc: %s from line '%s'\n",
Ryan Anderson27184352006-02-05 20:13:52 -05001001 $c, $_) unless $quiet;
Ryan Anderson83b24432005-07-31 04:17:25 -04001002 }
1003 }
1004 }
1005 close F;
Joe Perches324a8bd2007-08-17 18:51:12 -07001006
David Brown65648282007-12-25 19:56:29 -08001007 if (defined $cc_cmd && !$suppress_cc{'cccmd'}) {
Joe Perches324a8bd2007-08-17 18:51:12 -07001008 open(F, "$cc_cmd $t |")
1009 or die "(cc-cmd) Could not execute '$cc_cmd'";
1010 while(<F>) {
1011 my $c = $_;
1012 $c =~ s/^\s*//g;
1013 $c =~ s/\n$//g;
Uwe Kleine-König620bb242007-11-07 08:34:12 +01001014 next if ($c eq $sender and $suppress_from);
Joe Perches324a8bd2007-08-17 18:51:12 -07001015 push @cc, $c;
1016 printf("(cc-cmd) Adding cc: %s from: '%s'\n",
1017 $c, $cc_cmd) unless $quiet;
1018 }
1019 close F
1020 or die "(cc-cmd) failed to close pipe to '$cc_cmd'";
1021 }
1022
Uwe Kleine-König94638f82007-08-09 15:27:58 +02001023 if (defined $author) {
1024 $message = "From: $author\n\n$message";
Jeff King8291db62007-11-16 05:49:09 -05001025 if (defined $author_encoding) {
1026 if ($has_content_type) {
1027 if ($body_encoding eq $author_encoding) {
1028 # ok, we already have the right encoding
1029 }
1030 else {
1031 # uh oh, we should re-encode
1032 }
1033 }
1034 else {
1035 push @xh,
1036 'MIME-Version: 1.0',
Jeff King8641ee32007-11-20 07:54:04 -05001037 "Content-Type: text/plain; charset=$author_encoding",
1038 'Content-Transfer-Encoding: 8bit';
Jeff King8291db62007-11-16 05:49:09 -05001039 }
1040 }
Junio C Hamano8a8e6232006-03-23 23:43:52 -08001041 }
Ryan Anderson83b24432005-07-31 04:17:25 -04001042
Ryan Anderson83b24432005-07-31 04:17:25 -04001043 send_message();
1044
1045 # set up for the next message
Junio C Hamanobc108f62006-10-05 16:36:15 -07001046 if ($chain_reply_to || !defined $reply_to || length($reply_to) == 0) {
Ryan Anderson78488b22005-07-31 20:04:24 -04001047 $reply_to = $message_id;
Ryan Anderson7ccf7922006-05-29 12:30:12 -07001048 if (length $references > 0) {
YOSHIFUJI Hideaki / 吉藤英明a925b892007-04-06 08:50:24 +09001049 $references .= "\n $message_id";
Ryan Anderson7ccf7922006-05-29 12:30:12 -07001050 } else {
1051 $references = "$message_id";
1052 }
Ryan Anderson78488b22005-07-31 20:04:24 -04001053 }
Jeff King4f3d3702007-12-17 15:51:34 -05001054 $message_id = undef;
Ryan Anderson83b24432005-07-31 04:17:25 -04001055}
Ryan Andersone2057352005-08-02 21:45:22 -04001056
Ryan Anderson1f038a02005-09-05 01:13:07 -04001057if ($compose) {
1058 cleanup_compose_files();
1059}
1060
1061sub cleanup_compose_files() {
1062 unlink($compose_filename, $compose_filename . ".final");
1063
1064}
1065
Eric Wong4bc87a22006-03-25 17:20:48 -08001066$smtp->quit if $smtp;
Ryan Andersone2057352005-08-02 21:45:22 -04001067
1068sub unique_email_list(@) {
1069 my %seen;
1070 my @emails;
1071
1072 foreach my $entry (@_) {
Eric Wongdb3106b2006-05-15 02:41:01 -07001073 if (my $clean = extract_valid_address($entry)) {
1074 $seen{$clean} ||= 0;
1075 next if $seen{$clean}++;
1076 push @emails, $entry;
1077 } else {
1078 print STDERR "W: unable to extract a valid address",
1079 " from: $entry\n";
1080 }
Ryan Andersone2057352005-08-02 21:45:22 -04001081 }
1082 return @emails;
1083}
Jeff King747bbff2008-01-18 09:19:48 -05001084
1085sub validate_patch {
1086 my $fn = shift;
1087 open(my $fh, '<', $fn)
1088 or die "unable to open $fn: $!\n";
1089 while (my $line = <$fh>) {
1090 if (length($line) > 998) {
1091 return "$.: patch contains a line longer than 998 characters";
1092 }
1093 }
1094 return undef;
1095}
Jeff King0706bd12008-03-28 17:28:33 -04001096
1097sub file_has_nonascii {
1098 my $fn = shift;
1099 open(my $fh, '<', $fn)
1100 or die "unable to open $fn: $!\n";
1101 while (my $line = <$fh>) {
1102 return 1 if $line =~ /[^[:ascii:]]/;
1103 }
1104 return 0;
1105}