blob: ef30c557c7dee549e891fe7605902ba58d0566a3 [file] [log] [blame]
Ævar Arnfjörð Bjarmason3328ace2010-09-24 20:00:53 +00001#!/usr/bin/perl
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
Ævar Arnfjörð Bjarmasond48b2842010-09-24 20:00:52 +000019use 5.008;
Ryan Anderson83b24432005-07-31 04:17:25 -040020use strict;
21use warnings;
22use Term::ReadLine;
Ryan Anderson83b24432005-07-31 04:17:25 -040023use Getopt::Long;
Wu Fengguang0e73b3e2008-12-19 16:10:10 +080024use Text::ParseWords;
Ryan Anderson83b24432005-07-31 04:17:25 -040025use Data::Dumper;
Sean Estabrooks412876d2007-08-17 17:38:25 -040026use Term::ANSIColor;
Jay Soffianeed6ca72009-02-14 23:32:13 -050027use File::Temp qw/ tempdir tempfile /;
Ævar Arnfjörð Bjarmason89bf1ba2010-09-14 19:02:24 +000028use File::Spec::Functions qw(catfile);
Pierre Habouzit5df9fcf2008-11-11 00:54:00 +010029use Error qw(:try);
Petr Baudis3cb8caf2006-07-03 22:47:58 +020030use Git;
Ryan Anderson83b24432005-07-31 04:17:25 -040031
Pierre Habouzit5df9fcf2008-11-11 00:54:00 +010032Getopt::Long::Configure qw/ pass_through /;
33
Junio C Hamano280242d2006-07-02 16:03:59 -070034package FakeTerm;
35sub new {
36 my ($class, $reason) = @_;
37 return bless \$reason, shift;
38}
39sub readline {
40 my $self = shift;
41 die "Cannot use readline on FakeTerm: $$self";
42}
43package main;
44
Michael Coleman1b0baf12007-02-27 22:47:54 -060045
46sub usage {
47 print <<EOT;
Pierre Habouzit5df9fcf2008-11-11 00:54:00 +010048git send-email [options] <file | directory | rev-list options >
Michael Witten4ed62b02008-09-30 07:58:30 -050049
50 Composing:
51 --from <str> * Email From:
Stephen Boydf434c082010-03-07 14:46:48 -080052 --[no-]to <str> * Email To:
53 --[no-]cc <str> * Email Cc:
54 --[no-]bcc <str> * Email Bcc:
Michael Witten4ed62b02008-09-30 07:58:30 -050055 --subject <str> * Email "Subject:"
56 --in-reply-to <str> * Email "In-Reply-To:"
Pierre Habouzit8fd5bb72008-11-11 00:54:01 +010057 --annotate * Review each patch that will be sent in an editor.
Michael Witten4ed62b02008-09-30 07:58:30 -050058 --compose * Open an editor for introduction.
Thomas Rast3cae7e52010-06-17 22:10:39 +020059 --8bit-encoding <str> * Encoding to assume 8bit mails if undeclared
Michael Witten4ed62b02008-09-30 07:58:30 -050060
61 Sending:
62 --envelope-sender <str> * Email envelope sender.
63 --smtp-server <str:int> * Outgoing SMTP server to use. The port
64 is optional. Default 'localhost'.
Pascal Obry052fbea2010-09-06 20:12:11 +020065 --smtp-server-option <str> * Outgoing SMTP server option to use.
Michael Witten4ed62b02008-09-30 07:58:30 -050066 --smtp-server-port <int> * Outgoing SMTP server port.
67 --smtp-user <str> * Username for SMTP-AUTH.
68 --smtp-pass <str> * Password for SMTP-AUTH; not necessary.
69 --smtp-encryption <str> * tls or ssl; anything else disables.
70 --smtp-ssl * Deprecated. Use '--smtp-encryption ssl'.
Jari Aalto134550f2010-03-14 17:16:45 +020071 --smtp-domain <str> * The domain name sent to HELO/EHLO handshake
Jari Aaltof60812e2010-03-14 17:16:09 +020072 --smtp-debug <0|1> * Disable, enable Net::SMTP debug.
Michael Witten4ed62b02008-09-30 07:58:30 -050073
74 Automating:
75 --identity <str> * Use the sendemail.<id> options.
Joe Perches6e74e072010-09-24 10:03:00 -070076 --to-cmd <str> * Email To: via `<str> \$patch_path`
Michael Witten4ed62b02008-09-30 07:58:30 -050077 --cc-cmd <str> * Email Cc: via `<str> \$patch_path`
Jay Soffian3531e272009-02-14 23:32:15 -050078 --suppress-cc <str> * author, self, sob, cc, cccmd, body, bodycc, all.
79 --[no-]signed-off-by-cc * Send to Signed-off-by: addresses. Default on.
Michael Witten4ed62b02008-09-30 07:58:30 -050080 --[no-]suppress-from * Send to self. Default off.
Junio C Hamano41fe87f2009-08-22 12:48:48 -070081 --[no-]chain-reply-to * Chain In-Reply-To: fields. Default off.
Michael Witten4ed62b02008-09-30 07:58:30 -050082 --[no-]thread * Use In-Reply-To: field. Default on.
83
84 Administering:
Jay Soffianc1f2aa42009-03-02 23:52:18 -050085 --confirm <str> * Confirm recipients before sending;
86 auto, cc, compose, always, or never.
Michael Witten4ed62b02008-09-30 07:58:30 -050087 --quiet * Output one line of info per email.
88 --dry-run * Don't actually send the emails.
89 --[no-]validate * Perform patch sanity checks. Default on.
Pierre Habouzit5df9fcf2008-11-11 00:54:00 +010090 --[no-]format-patch * understand any non optional arguments as
91 `git format-patch` ones.
Thomas Rasta03bc5b2009-06-08 23:34:12 +020092 --force * Send even if safety checks would prevent it.
Jeff Kingc764a0c2008-01-18 09:20:10 -050093
Michael Coleman1b0baf12007-02-27 22:47:54 -060094EOT
95 exit(1);
96}
97
Eric Wong4bc87a22006-03-25 17:20:48 -080098# most mail servers generate the Date: header, but not all...
Jakub Narebski6bdca892006-07-07 20:57:55 +020099sub format_2822_time {
100 my ($time) = @_;
101 my @localtm = localtime($time);
102 my @gmttm = gmtime($time);
103 my $localmin = $localtm[1] + $localtm[2] * 60;
104 my $gmtmin = $gmttm[1] + $gmttm[2] * 60;
105 if ($localtm[0] != $gmttm[0]) {
106 die "local zone differs from GMT by a non-minute interval\n";
107 }
108 if ((($gmttm[6] + 1) % 7) == $localtm[6]) {
109 $localmin += 1440;
110 } elsif ((($gmttm[6] - 1) % 7) == $localtm[6]) {
111 $localmin -= 1440;
112 } elsif ($gmttm[6] != $localtm[6]) {
113 die "local time offset greater than or equal to 24 hours\n";
114 }
115 my $offset = $localmin - $gmtmin;
116 my $offhour = $offset / 60;
117 my $offmin = abs($offset % 60);
118 if (abs($offhour) >= 24) {
119 die ("local time offset greater than or equal to 24 hours\n");
120 }
121
122 return sprintf("%s, %2d %s %d %02d:%02d:%02d %s%02d%02d",
123 qw(Sun Mon Tue Wed Thu Fri Sat)[$localtm[6]],
124 $localtm[3],
125 qw(Jan Feb Mar Apr May Jun
126 Jul Aug Sep Oct Nov Dec)[$localtm[4]],
127 $localtm[5]+1900,
128 $localtm[2],
129 $localtm[1],
130 $localtm[0],
131 ($offset >= 0) ? '+' : '-',
132 abs($offhour),
133 $offmin,
134 );
135}
Eric Wong4bc87a22006-03-25 17:20:48 -0800136
Eric Wong567ffeb2006-03-25 16:47:12 -0800137my $have_email_valid = eval { require Email::Valid; 1 };
Jay Soffian50126992009-02-14 23:32:14 -0500138my $have_mail_address = eval { require Mail::Address; 1 };
Eric Wong4bc87a22006-03-25 17:20:48 -0800139my $smtp;
Wincent Colaiuta5f5b6112007-11-21 13:35:05 +0100140my $auth;
Eric Wong4bc87a22006-03-25 17:20:48 -0800141
Ryan Anderson83b24432005-07-31 04:17:25 -0400142# Variables we fill in automatically, or via prompting:
Stephen Boyd3c3bb512010-10-04 00:05:24 -0700143my (@to,$no_to,@initial_to,@cc,$no_cc,@initial_cc,@bcclist,$no_bcc,@xh,
Pierre Habouzit8fd5bb72008-11-11 00:54:01 +0100144 $initial_reply_to,$initial_subject,@files,
145 $author,$sender,$smtp_authpass,$annotate,$compose,$time);
Ryan Anderson83b24432005-07-31 04:17:25 -0400146
Robin H. Johnsonf073a592007-04-25 19:37:22 -0700147my $envelope_sender;
Ryan Anderson78488b22005-07-31 20:04:24 -0400148
Ryan Anderson91332612005-07-31 20:04:24 -0400149# Example reply to:
Ryan Anderson83b24432005-07-31 04:17:25 -0400150#$initial_reply_to = ''; #<20050203173208.GA23964@foobar.com>';
Ryan Anderson83b24432005-07-31 04:17:25 -0400151
Frank Lichtenheldad79c022008-03-14 18:29:30 +0100152my $repo = eval { Git->repository() };
153my @repo = $repo ? ($repo) : ();
Junio C Hamano280242d2006-07-02 16:03:59 -0700154my $term = eval {
Jay Soffian0fb7fc72008-02-21 19:16:04 -0500155 $ENV{"GIT_SEND_EMAIL_NOTTY"}
156 ? new Term::ReadLine 'git-send-email', \*STDIN, \*STDOUT
157 : new Term::ReadLine 'git-send-email';
Junio C Hamano280242d2006-07-02 16:03:59 -0700158};
159if ($@) {
160 $term = new FakeTerm "$@: going non-interactive";
161}
Ryan Anderson83b24432005-07-31 04:17:25 -0400162
Adam Roben5483c712007-06-27 20:59:37 -0700163# Behavior modification variables
164my ($quiet, $dry_run) = (0, 0);
Pierre Habouzit5df9fcf2008-11-11 00:54:00 +0100165my $format_patch;
Jay Soffianafe756c2009-02-23 13:51:37 -0500166my $compose_filename;
Thomas Rasta03bc5b2009-06-08 23:34:12 +0200167my $force = 0;
Adam Roben5483c712007-06-27 20:59:37 -0700168
Pierre Habouzit8fd5bb72008-11-11 00:54:01 +0100169# Handle interactive edition of files.
170my $multiedit;
Michael J Gruber0ce142c2010-03-22 17:12:53 +0100171my $editor;
Jonathan Niederb4479f02009-10-30 20:42:34 -0500172
Pierre Habouzit8fd5bb72008-11-11 00:54:01 +0100173sub do_edit {
Michael J Gruber0ce142c2010-03-22 17:12:53 +0100174 if (!defined($editor)) {
175 $editor = Git::command_oneline('var', 'GIT_EDITOR');
176 }
Pierre Habouzit8fd5bb72008-11-11 00:54:01 +0100177 if (defined($multiedit) && !$multiedit) {
Pierre Habouzitbeece9d2008-11-11 00:54:02 +0100178 map {
179 system('sh', '-c', $editor.' "$@"', $editor, $_);
180 if (($? & 127) || ($? >> 8)) {
181 die("the editor exited uncleanly, aborting everything");
182 }
183 } @_;
Pierre Habouzit8fd5bb72008-11-11 00:54:01 +0100184 } else {
185 system('sh', '-c', $editor.' "$@"', $editor, @_);
Pierre Habouzitbeece9d2008-11-11 00:54:02 +0100186 if (($? & 127) || ($? >> 8)) {
187 die("the editor exited uncleanly, aborting everything");
188 }
Pierre Habouzit8fd5bb72008-11-11 00:54:01 +0100189 }
190}
Adam Roben5483c712007-06-27 20:59:37 -0700191
192# Variables with corresponding config settings
Joe Perches6e74e072010-09-24 10:03:00 -0700193my ($thread, $chain_reply_to, $suppress_from, $signed_off_by_cc);
194my ($to_cmd, $cc_cmd);
Pascal Obry052fbea2010-09-06 20:12:11 +0200195my ($smtp_server, $smtp_server_port, @smtp_server_options);
196my ($smtp_authuser, $smtp_encryption);
Pascal Obry1d02a002010-09-06 20:12:10 +0200197my ($identity, $aliasfiletype, @alias_files, $smtp_domain);
Jay Soffianc1f2aa42009-03-02 23:52:18 -0500198my ($validate, $confirm);
David Brown65648282007-12-25 19:56:29 -0800199my (@suppress_cc);
Thomas Rast3cae7e52010-06-17 22:10:39 +0200200my ($auto_8bit_encoding);
Adam Roben5483c712007-06-27 20:59:37 -0700201
Jari Aaltof60812e2010-03-14 17:16:09 +0200202my ($debug_net_smtp) = 0; # Net::SMTP, see send_message()
203
Nanako Shiraishi528fb082009-11-29 12:24:48 +0900204my $not_set_by_user = "true but not set by the user";
205
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900206my %config_bool_settings = (
Adam Roben5483c712007-06-27 20:59:37 -0700207 "thread" => [\$thread, 1],
Nanako Shiraishi528fb082009-11-29 12:24:48 +0900208 "chainreplyto" => [\$chain_reply_to, $not_set_by_user],
David Brown65648282007-12-25 19:56:29 -0800209 "suppressfrom" => [\$suppress_from, undef],
Michael Wittenddc3d4f2008-09-30 07:58:32 -0500210 "signedoffbycc" => [\$signed_off_by_cc, undef],
211 "signedoffcc" => [\$signed_off_by_cc, undef], # Deprecated
Michael Wittendbf5e1e2008-09-30 07:58:27 -0500212 "validate" => [\$validate, 1],
Jeff King829a1c62012-01-09 17:55:42 -0500213 "multiedit" => [\$multiedit, undef]
Adam Robene46f7a02007-06-26 15:48:30 -0700214);
215
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900216my %config_settings = (
217 "smtpserver" => \$smtp_server,
Junio C Hamano44b24762007-09-25 17:27:54 -0700218 "smtpserverport" => \$smtp_server_port,
Pascal Obry052fbea2010-09-06 20:12:11 +0200219 "smtpserveroption" => \@smtp_server_options,
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900220 "smtpuser" => \$smtp_authuser,
221 "smtppass" => \$smtp_authpass,
Pascal Obrye1e91152010-09-06 20:12:09 +0200222 "smtpdomain" => \$smtp_domain,
Stephen Boyd3c3bb512010-10-04 00:05:24 -0700223 "to" => \@initial_to,
Joe Perches6e74e072010-09-24 10:03:00 -0700224 "tocmd" => \$to_cmd,
Miklos Vajna5f8b9fc2008-04-27 14:14:58 +0200225 "cc" => \@initial_cc,
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900226 "cccmd" => \$cc_cmd,
227 "aliasfiletype" => \$aliasfiletype,
228 "bcc" => \@bcclist,
David Brown65648282007-12-25 19:56:29 -0800229 "suppresscc" => \@suppress_cc,
Ask Bjørn Hansen9f7820a2008-06-07 00:33:42 -0700230 "envelopesender" => \$envelope_sender,
Jay Soffianc1f2aa42009-03-02 23:52:18 -0500231 "confirm" => \$confirm,
Trent Piepho09caa242009-05-12 15:48:56 -0700232 "from" => \$sender,
Thomas Rast3cae7e52010-06-17 22:10:39 +0200233 "assume8bitencoding" => \$auto_8bit_encoding,
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900234);
Avi Kivity4a62d3f2007-03-11 19:19:44 +0200235
Cord Seelecec5dae2011-09-30 12:52:25 +0200236my %config_path_settings = (
237 "aliasesfile" => \@alias_files,
238);
239
Nanako Shiraishi528fb082009-11-29 12:24:48 +0900240# Help users prepare for 1.7.0
241sub chain_reply_to {
242 if (defined $chain_reply_to &&
243 $chain_reply_to eq $not_set_by_user) {
244 print STDERR
Junio C Hamanoa19f1012009-12-26 14:03:17 -0800245 "In git 1.7.0, the default has changed to --no-chain-reply-to\n" .
Nanako Shiraishi528fb082009-11-29 12:24:48 +0900246 "Set sendemail.chainreplyto configuration variable to true if\n" .
247 "you want to keep --chain-reply-to as your default.\n";
Junio C Hamanoa19f1012009-12-26 14:03:17 -0800248 $chain_reply_to = 0;
Nanako Shiraishi528fb082009-11-29 12:24:48 +0900249 }
250 return $chain_reply_to;
251}
252
Michael Witten87429972008-02-03 19:53:57 -0500253# Handle Uncouth Termination
254sub signal_handler {
255
256 # Make text normal
257 print color("reset"), "\n";
258
259 # SMTP password masked
260 system "stty echo";
261
262 # tmp files from --compose
Jay Soffianafe756c2009-02-23 13:51:37 -0500263 if (defined $compose_filename) {
264 if (-e $compose_filename) {
265 print "'$compose_filename' contains an intermediate version of the email you were composing.\n";
266 }
267 if (-e ($compose_filename . ".final")) {
268 print "'$compose_filename.final' contains the composed email.\n"
269 }
Michael Witten87429972008-02-03 19:53:57 -0500270 }
271
272 exit;
273};
274
275$SIG{TERM} = \&signal_handler;
276$SIG{INT} = \&signal_handler;
277
Ryan Anderson83b24432005-07-31 04:17:25 -0400278# Begin by accumulating all the variables (defined above), that we will end up
279# needing, first, from the command line:
280
Clemens Buchacherc5978242011-09-03 19:06:13 +0200281my $help;
282my $rc = GetOptions("h" => \$help,
283 "sender|from=s" => \$sender,
Ryan Anderson83b24432005-07-31 04:17:25 -0400284 "in-reply-to=s" => \$initial_reply_to,
285 "subject=s" => \$initial_subject,
Stephen Boyd3c3bb512010-10-04 00:05:24 -0700286 "to=s" => \@initial_to,
Joe Perches6e74e072010-09-24 10:03:00 -0700287 "to-cmd=s" => \$to_cmd,
Stephen Boydf434c082010-03-07 14:46:48 -0800288 "no-to" => \$no_to,
Ryan Andersonda140f82006-02-13 03:05:15 -0500289 "cc=s" => \@initial_cc,
Stephen Boydf434c082010-03-07 14:46:48 -0800290 "no-cc" => \$no_cc,
Ryan Anderson58063242006-05-29 12:30:13 -0700291 "bcc=s" => \@bcclist,
Stephen Boydf434c082010-03-07 14:46:48 -0800292 "no-bcc" => \$no_bcc,
Ryan Anderson78488b22005-07-31 20:04:24 -0400293 "chain-reply-to!" => \$chain_reply_to,
Ryan Anderson3342d852005-07-31 20:04:24 -0400294 "smtp-server=s" => \$smtp_server,
Pascal Obry052fbea2010-09-06 20:12:11 +0200295 "smtp-server-option=s" => \@smtp_server_options,
Junio C Hamano44b24762007-09-25 17:27:54 -0700296 "smtp-server-port=s" => \$smtp_server_port,
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900297 "smtp-user=s" => \$smtp_authuser,
Michael Witten2363d742008-02-03 19:53:56 -0500298 "smtp-pass:s" => \$smtp_authpass,
Thomas Rastf6bebd12008-06-25 21:42:43 +0200299 "smtp-ssl" => sub { $smtp_encryption = 'ssl' },
300 "smtp-encryption=s" => \$smtp_encryption,
Jari Aaltof60812e2010-03-14 17:16:09 +0200301 "smtp-debug:i" => \$debug_net_smtp,
Brian Gernhardt69cf7bf2010-04-10 10:53:56 -0400302 "smtp-domain:s" => \$smtp_domain,
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900303 "identity=s" => \$identity,
Pierre Habouzit8fd5bb72008-11-11 00:54:01 +0100304 "annotate" => \$annotate,
Ryan Anderson1f038a02005-09-05 01:13:07 -0400305 "compose" => \$compose,
Ryan Anderson30d08b32006-02-02 11:56:06 -0500306 "quiet" => \$quiet,
Joe Perches324a8bd2007-08-17 18:51:12 -0700307 "cc-cmd=s" => \$cc_cmd,
Adam Roben5483c712007-06-27 20:59:37 -0700308 "suppress-from!" => \$suppress_from,
David Brown65648282007-12-25 19:56:29 -0800309 "suppress-cc=s" => \@suppress_cc,
Michael Wittenddc3d4f2008-09-30 07:58:32 -0500310 "signed-off-cc|signed-off-by-cc!" => \$signed_off_by_cc,
Jay Soffianc1f2aa42009-03-02 23:52:18 -0500311 "confirm=s" => \$confirm,
Matthew Wilcox61302592006-10-10 08:58:23 -0600312 "dry-run" => \$dry_run,
Robin H. Johnsonf073a592007-04-25 19:37:22 -0700313 "envelope-sender=s" => \$envelope_sender,
Adam Roben5483c712007-06-27 20:59:37 -0700314 "thread!" => \$thread,
Michael Wittendbf5e1e2008-09-30 07:58:27 -0500315 "validate!" => \$validate,
Pierre Habouzit5df9fcf2008-11-11 00:54:00 +0100316 "format-patch!" => \$format_patch,
Thomas Rast3cae7e52010-06-17 22:10:39 +0200317 "8bit-encoding=s" => \$auto_8bit_encoding,
Thomas Rasta03bc5b2009-06-08 23:34:12 +0200318 "force" => \$force,
Ryan Anderson83b24432005-07-31 04:17:25 -0400319 );
320
Clemens Buchacherc5978242011-09-03 19:06:13 +0200321usage() if $help;
Michael Coleman1b0baf12007-02-27 22:47:54 -0600322unless ($rc) {
323 usage();
324}
325
Jay Soffianeed6ca72009-02-14 23:32:13 -0500326die "Cannot run git format-patch from outside a repository\n"
327 if $format_patch and not $repo;
328
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900329# Now, let's fill any that aren't set in with defaults:
330
331sub read_config {
332 my ($prefix) = @_;
333
334 foreach my $setting (keys %config_bool_settings) {
335 my $target = $config_bool_settings{$setting}->[0];
Frank Lichtenheldad79c022008-03-14 18:29:30 +0100336 $$target = Git::config_bool(@repo, "$prefix.$setting") unless (defined $$target);
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900337 }
338
Cord Seelecec5dae2011-09-30 12:52:25 +0200339 foreach my $setting (keys %config_path_settings) {
Cord Seele463b0ea2011-10-14 22:53:31 +0200340 my $target = $config_path_settings{$setting};
341 if (ref($target) eq "ARRAY") {
342 unless (@$target) {
343 my @values = Git::config_path(@repo, "$prefix.$setting");
344 @$target = @values if (@values && defined $values[0]);
345 }
346 }
347 else {
348 $$target = Git::config_path(@repo, "$prefix.$setting") unless (defined $$target);
349 }
Cord Seelecec5dae2011-09-30 12:52:25 +0200350 }
351
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900352 foreach my $setting (keys %config_settings) {
353 my $target = $config_settings{$setting};
Stephen Boydf434c082010-03-07 14:46:48 -0800354 next if $setting eq "to" and defined $no_to;
355 next if $setting eq "cc" and defined $no_cc;
356 next if $setting eq "bcc" and defined $no_bcc;
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900357 if (ref($target) eq "ARRAY") {
358 unless (@$target) {
Frank Lichtenheldad79c022008-03-14 18:29:30 +0100359 my @values = Git::config(@repo, "$prefix.$setting");
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900360 @$target = @values if (@values && defined $values[0]);
361 }
362 }
363 else {
Frank Lichtenheldad79c022008-03-14 18:29:30 +0100364 $$target = Git::config(@repo, "$prefix.$setting") unless (defined $$target);
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900365 }
366 }
Thomas Rastf6bebd12008-06-25 21:42:43 +0200367
368 if (!defined $smtp_encryption) {
369 my $enc = Git::config(@repo, "$prefix.smtpencryption");
370 if (defined $enc) {
371 $smtp_encryption = $enc;
372 } elsif (Git::config_bool(@repo, "$prefix.smtpssl")) {
373 $smtp_encryption = 'ssl';
374 }
375 }
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900376}
377
378# read configuration from [sendemail "$identity"], fall back on [sendemail]
Frank Lichtenheldad79c022008-03-14 18:29:30 +0100379$identity = Git::config(@repo, "sendemail.identity") unless (defined $identity);
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900380read_config("sendemail.$identity") if (defined $identity);
381read_config("sendemail");
382
383# fall back on builtin bool defaults
384foreach my $setting (values %config_bool_settings) {
385 ${$setting->[0]} = $setting->[1] unless (defined (${$setting->[0]}));
386}
387
Thomas Rastfa835cd2008-06-26 23:03:21 +0200388# 'default' encryption is none -- this only prevents a warning
389$smtp_encryption = '' unless (defined $smtp_encryption);
390
David Brown65648282007-12-25 19:56:29 -0800391# Set CC suppressions
392my(%suppress_cc);
393if (@suppress_cc) {
394 foreach my $entry (@suppress_cc) {
395 die "Unknown --suppress-cc field: '$entry'\n"
Ævar Arnfjörð Bjarmasone9bf7412010-09-30 13:43:04 +0000396 unless $entry =~ /^(?:all|cccmd|cc|author|self|sob|body|bodycc)$/;
David Brown65648282007-12-25 19:56:29 -0800397 $suppress_cc{$entry} = 1;
398 }
399}
400
401if ($suppress_cc{'all'}) {
Paolo Bonzinicb8a9bd2009-06-18 14:31:32 +0200402 foreach my $entry (qw (cccmd cc author self sob body bodycc)) {
David Brown65648282007-12-25 19:56:29 -0800403 $suppress_cc{$entry} = 1;
404 }
405 delete $suppress_cc{'all'};
406}
407
408# If explicit old-style ones are specified, they trump --suppress-cc.
409$suppress_cc{'self'} = $suppress_from if defined $suppress_from;
Michael Wittenddc3d4f2008-09-30 07:58:32 -0500410$suppress_cc{'sob'} = !$signed_off_by_cc if defined $signed_off_by_cc;
David Brown65648282007-12-25 19:56:29 -0800411
Jay Soffian3531e272009-02-14 23:32:15 -0500412if ($suppress_cc{'body'}) {
413 foreach my $entry (qw (sob bodycc)) {
414 $suppress_cc{$entry} = 1;
415 }
416 delete $suppress_cc{'body'};
417}
418
Jay Soffianc1f2aa42009-03-02 23:52:18 -0500419# Set confirm's default value
420my $confirm_unconfigured = !defined $confirm;
421if ($confirm_unconfigured) {
422 $confirm = scalar %suppress_cc ? 'compose' : 'auto';
423};
424die "Unknown --confirm setting: '$confirm'\n"
425 unless $confirm =~ /^(?:auto|cc|compose|always|never)/;
426
David Brown65648282007-12-25 19:56:29 -0800427# Debugging, print out the suppressions.
428if (0) {
429 print "suppressions:\n";
430 foreach my $entry (keys %suppress_cc) {
431 printf " %-5s -> $suppress_cc{$entry}\n", $entry;
432 }
433}
434
Frank Lichtenheldad79c022008-03-14 18:29:30 +0100435my ($repoauthor, $repocommitter);
436($repoauthor) = Git::ident_person(@repo, 'author');
437($repocommitter) = Git::ident_person(@repo, 'committer');
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900438
Eric W. Biederman79ee5552006-06-21 07:17:31 -0600439# Verify the user input
440
Stephen Boyd3c3bb512010-10-04 00:05:24 -0700441foreach my $entry (@initial_to) {
Eric W. Biederman79ee5552006-06-21 07:17:31 -0600442 die "Comma in --to entry: $entry'\n" unless $entry !~ m/,/;
443}
444
445foreach my $entry (@initial_cc) {
446 die "Comma in --cc entry: $entry'\n" unless $entry !~ m/,/;
447}
448
449foreach my $entry (@bcclist) {
450 die "Comma in --bcclist entry: $entry'\n" unless $entry !~ m/,/;
451}
452
Jay Soffian50126992009-02-14 23:32:14 -0500453sub parse_address_line {
454 if ($have_mail_address) {
455 return map { $_->format } Mail::Address->parse($_[0]);
456 } else {
457 return split_addrs($_[0]);
458 }
459}
460
Wu Fengguang0e73b3e2008-12-19 16:10:10 +0800461sub split_addrs {
Junio C Hamano2f0e7cb2008-12-21 01:57:59 -0800462 return quotewords('\s*,\s*', 1, @_);
Wu Fengguang0e73b3e2008-12-19 16:10:10 +0800463}
464
Eric Wong994d6c62006-05-14 19:13:44 -0700465my %aliases;
Eric Wong994d6c62006-05-14 19:13:44 -0700466my %parse_alias = (
467 # multiline formats can be supported in the future
468 mutt => sub { my $fh = shift; while (<$fh>) {
Felipe Contrerasffc01f92009-09-30 17:49:36 +0300469 if (/^\s*alias\s+(?:-group\s+\S+\s+)*(\S+)\s+(.*)$/) {
Eric Wong994d6c62006-05-14 19:13:44 -0700470 my ($alias, $addr) = ($1, $2);
471 $addr =~ s/#.*$//; # mutt allows # comments
472 # commas delimit multiple addresses
Wu Fengguang0e73b3e2008-12-19 16:10:10 +0800473 $aliases{$alias} = [ split_addrs($addr) ];
Eric Wong994d6c62006-05-14 19:13:44 -0700474 }}},
475 mailrc => sub { my $fh = shift; while (<$fh>) {
476 if (/^alias\s+(\S+)\s+(.*)$/) {
477 # spaces delimit multiple addresses
Eric W. Biedermanfe87c922009-05-20 19:45:53 -0700478 $aliases{$1} = [ quotewords('\s+', 0, $2) ];
Eric Wong994d6c62006-05-14 19:13:44 -0700479 }}},
Trent Piepho73c427e2008-11-25 18:55:00 -0800480 pine => sub { my $fh = shift; my $f='\t[^\t]*';
481 for (my $x = ''; defined($x); $x = $_) {
482 chomp $x;
483 $x .= $1 while(defined($_ = <$fh>) && /^ +(.*)$/);
484 $x =~ /^(\S+)$f\t\(?([^\t]+?)\)?(:?$f){0,2}$/ or next;
Wu Fengguang0e73b3e2008-12-19 16:10:10 +0800485 $aliases{$1} = [ split_addrs($2) ];
Trent Piepho73c427e2008-11-25 18:55:00 -0800486 }},
Bill Pemberton7613ea32009-04-22 09:41:29 -0400487 elm => sub { my $fh = shift;
488 while (<$fh>) {
489 if (/^(\S+)\s+=\s+[^=]+=\s(\S+)/) {
490 my ($alias, $addr) = ($1, $2);
491 $aliases{$alias} = [ split_addrs($addr) ];
492 }
493 } },
494
Eric Wong994d6c62006-05-14 19:13:44 -0700495 gnus => sub { my $fh = shift; while (<$fh>) {
496 if (/\(define-mail-alias\s+"(\S+?)"\s+"(\S+?)"\)/) {
497 $aliases{$1} = [ $2 ];
498 }}}
499);
500
Petr Baudis3cb8caf2006-07-03 22:47:58 +0200501if (@alias_files and $aliasfiletype and defined $parse_alias{$aliasfiletype}) {
Eric Wong994d6c62006-05-14 19:13:44 -0700502 foreach my $file (@alias_files) {
503 open my $fh, '<', $file or die "opening $file: $!\n";
504 $parse_alias{$aliasfiletype}->($fh);
505 close $fh;
506 }
507}
508
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200509($sender) = expand_aliases($sender) if defined $sender;
Michael Hendricksae740a52007-07-04 19:11:36 -0600510
Pierre Habouzit5df9fcf2008-11-11 00:54:00 +0100511# returns 1 if the conflict must be solved using it as a format-patch argument
512sub check_file_rev_conflict($) {
Jay Soffianeed6ca72009-02-14 23:32:13 -0500513 return unless $repo;
Pierre Habouzit5df9fcf2008-11-11 00:54:00 +0100514 my $f = shift;
515 try {
516 $repo->command('rev-parse', '--verify', '--quiet', $f);
517 if (defined($format_patch)) {
Pierre Habouzit5df9fcf2008-11-11 00:54:00 +0100518 return $format_patch;
519 }
520 die(<<EOF);
521File '$f' exists but it could also be the range of commits
522to produce patches for. Please disambiguate by...
523
524 * Saying "./$f" if you mean a file; or
525 * Giving --format-patch option if you mean a range.
526EOF
527 } catch Git::Error::Command with {
528 return 0;
529 }
530}
531
Jeff Kingaa548922008-01-18 09:19:36 -0500532# Now that all the defaults are set, process the rest of the command line
533# arguments and collect up the files that need to be processed.
Pierre Habouzit5df9fcf2008-11-11 00:54:00 +0100534my @rev_list_opts;
Junio C Hamano69f4ce52008-11-30 22:38:20 -0800535while (defined(my $f = shift @ARGV)) {
Pierre Habouzit5df9fcf2008-11-11 00:54:00 +0100536 if ($f eq "--") {
537 push @rev_list_opts, "--", @ARGV;
538 @ARGV = ();
539 } elsif (-d $f and !check_file_rev_conflict($f)) {
Ævar Arnfjörð Bjarmasonc6038162010-09-30 13:42:54 +0000540 opendir my $dh, $f
Jeff Kingaa548922008-01-18 09:19:36 -0500541 or die "Failed to opendir $f: $!";
542
Ævar Arnfjörð Bjarmason89bf1ba2010-09-14 19:02:24 +0000543 push @files, grep { -f $_ } map { catfile($f, $_) }
Ævar Arnfjörð Bjarmasonc6038162010-09-30 13:42:54 +0000544 sort readdir $dh;
545 closedir $dh;
Pierre Habouzit5df9fcf2008-11-11 00:54:00 +0100546 } elsif ((-f $f or -p $f) and !check_file_rev_conflict($f)) {
Jeff Kingaa548922008-01-18 09:19:36 -0500547 push @files, $f;
Jeff Kingaa548922008-01-18 09:19:36 -0500548 } else {
Pierre Habouzit5df9fcf2008-11-11 00:54:00 +0100549 push @rev_list_opts, $f;
Jeff Kingaa548922008-01-18 09:19:36 -0500550 }
551}
552
Pierre Habouzit5df9fcf2008-11-11 00:54:00 +0100553if (@rev_list_opts) {
Jay Soffianeed6ca72009-02-14 23:32:13 -0500554 die "Cannot run git format-patch from outside a repository\n"
555 unless $repo;
Pierre Habouzit5df9fcf2008-11-11 00:54:00 +0100556 push @files, $repo->command('format-patch', '-o', tempdir(CLEANUP => 1), @rev_list_opts);
557}
558
Michael Wittendbf5e1e2008-09-30 07:58:27 -0500559if ($validate) {
Jeff Kingc764a0c2008-01-18 09:20:10 -0500560 foreach my $f (@files) {
Kevin Ballard300913b2008-06-25 15:44:40 -0700561 unless (-p $f) {
562 my $error = validate_patch($f);
563 $error and die "fatal: $f: $error\nwarning: no patches were sent\n";
564 }
Jeff Kingc764a0c2008-01-18 09:20:10 -0500565 }
Jeff King747bbff2008-01-18 09:19:48 -0500566}
567
Jeff Kingaa548922008-01-18 09:19:36 -0500568if (@files) {
569 unless ($quiet) {
570 print $_,"\n" for (@files);
571 }
572} else {
573 print STDERR "\nNo patch files specified!\n\n";
574 usage();
575}
576
Ævar Arnfjörð Bjarmasonacf071b2010-09-30 13:42:57 +0000577sub get_patch_subject {
Pierre Habouzitbeece9d2008-11-11 00:54:02 +0100578 my $fn = shift;
579 open (my $fh, '<', $fn);
580 while (my $line = <$fh>) {
581 next unless ($line =~ /^Subject: (.*)$/);
582 close $fh;
583 return "GIT: $1\n";
584 }
585 close $fh;
586 die "No subject line in $fn ?";
587}
588
589if ($compose) {
590 # Note that this does not need to be secure, but we will make a small
591 # effort to have it be unique
Jay Soffianafe756c2009-02-23 13:51:37 -0500592 $compose_filename = ($repo ?
593 tempfile(".gitsendemail.msg.XXXXXX", DIR => $repo->repo_path()) :
594 tempfile(".gitsendemail.msg.XXXXXX", DIR => "."))[1];
Ævar Arnfjörð Bjarmasonfe0f9442010-09-30 13:42:55 +0000595 open my $c, ">", $compose_filename
Pierre Habouzitbeece9d2008-11-11 00:54:02 +0100596 or die "Failed to open for writing $compose_filename: $!";
597
598
599 my $tpl_sender = $sender || $repoauthor || $repocommitter || '';
600 my $tpl_subject = $initial_subject || '';
601 my $tpl_reply_to = $initial_reply_to || '';
602
Ævar Arnfjörð Bjarmasonfe0f9442010-09-30 13:42:55 +0000603 print $c <<EOT;
Pierre Habouzitbeece9d2008-11-11 00:54:02 +0100604From $tpl_sender # This line is ignored.
Michael Witten40e6e8a2009-04-13 13:23:50 -0500605GIT: Lines beginning in "GIT:" will be removed.
Pierre Habouzitbeece9d2008-11-11 00:54:02 +0100606GIT: Consider including an overall diffstat or table of contents
607GIT: for the patch you are writing.
608GIT:
609GIT: Clear the body content if you don't wish to send a summary.
610From: $tpl_sender
611Subject: $tpl_subject
612In-Reply-To: $tpl_reply_to
613
614EOT
615 for my $f (@files) {
Ævar Arnfjörð Bjarmasonfe0f9442010-09-30 13:42:55 +0000616 print $c get_patch_subject($f);
Pierre Habouzitbeece9d2008-11-11 00:54:02 +0100617 }
Ævar Arnfjörð Bjarmasonfe0f9442010-09-30 13:42:55 +0000618 close $c;
Pierre Habouzitbeece9d2008-11-11 00:54:02 +0100619
Pierre Habouzitbeece9d2008-11-11 00:54:02 +0100620 if ($annotate) {
621 do_edit($compose_filename, @files);
622 } else {
623 do_edit($compose_filename);
624 }
625
Ævar Arnfjörð Bjarmasonfe0f9442010-09-30 13:42:55 +0000626 open my $c2, ">", $compose_filename . ".final"
Pierre Habouzitbeece9d2008-11-11 00:54:02 +0100627 or die "Failed to open $compose_filename.final : " . $!;
628
Ævar Arnfjörð Bjarmasonfe0f9442010-09-30 13:42:55 +0000629 open $c, "<", $compose_filename
Pierre Habouzitbeece9d2008-11-11 00:54:02 +0100630 or die "Failed to open $compose_filename : " . $!;
631
632 my $need_8bit_cte = file_has_nonascii($compose_filename);
633 my $in_body = 0;
634 my $summary_empty = 1;
Ævar Arnfjörð Bjarmasonfe0f9442010-09-30 13:42:55 +0000635 while(<$c>) {
Michael Witten40e6e8a2009-04-13 13:23:50 -0500636 next if m/^GIT:/;
Pierre Habouzitbeece9d2008-11-11 00:54:02 +0100637 if ($in_body) {
638 $summary_empty = 0 unless (/^\n$/);
639 } elsif (/^\n$/) {
640 $in_body = 1;
641 if ($need_8bit_cte) {
Ævar Arnfjörð Bjarmasonfe0f9442010-09-30 13:42:55 +0000642 print $c2 "MIME-Version: 1.0\n",
Pierre Habouzitbeece9d2008-11-11 00:54:02 +0100643 "Content-Type: text/plain; ",
Brandon Caseyd1fff6f2009-06-06 20:12:31 -0500644 "charset=UTF-8\n",
Pierre Habouzitbeece9d2008-11-11 00:54:02 +0100645 "Content-Transfer-Encoding: 8bit\n";
646 }
647 } elsif (/^MIME-Version:/i) {
648 $need_8bit_cte = 0;
649 } elsif (/^Subject:\s*(.+)\s*$/i) {
650 $initial_subject = $1;
651 my $subject = $initial_subject;
652 $_ = "Subject: " .
653 ($subject =~ /[^[:ascii:]]/ ?
654 quote_rfc2047($subject) :
655 $subject) .
656 "\n";
657 } elsif (/^In-Reply-To:\s*(.+)\s*$/i) {
658 $initial_reply_to = $1;
659 next;
660 } elsif (/^From:\s*(.+)\s*$/i) {
661 $sender = $1;
662 next;
663 } elsif (/^(?:To|Cc|Bcc):/i) {
664 print "To/Cc/Bcc fields are not interpreted yet, they have been ignored\n";
665 next;
666 }
Ævar Arnfjörð Bjarmasonfe0f9442010-09-30 13:42:55 +0000667 print $c2 $_;
Pierre Habouzitbeece9d2008-11-11 00:54:02 +0100668 }
Ævar Arnfjörð Bjarmasonfe0f9442010-09-30 13:42:55 +0000669 close $c;
670 close $c2;
Pierre Habouzitbeece9d2008-11-11 00:54:02 +0100671
672 if ($summary_empty) {
673 print "Summary email is empty, skipping it\n";
674 $compose = -1;
675 }
676} elsif ($annotate) {
677 do_edit(@files);
678}
679
Jay Soffian6e182512009-03-28 21:39:10 -0400680sub ask {
681 my ($prompt, %arg) = @_;
Jay Soffian0da43a62009-04-04 23:23:21 -0400682 my $valid_re = $arg{valid_re};
Jay Soffian6e182512009-03-28 21:39:10 -0400683 my $default = $arg{default};
684 my $resp;
685 my $i = 0;
Jay Soffian5906f542009-03-31 12:22:11 -0400686 return defined $default ? $default : undef
687 unless defined $term->IN and defined fileno($term->IN) and
688 defined $term->OUT and defined fileno($term->OUT);
Jay Soffian6e182512009-03-28 21:39:10 -0400689 while ($i++ < 10) {
690 $resp = $term->readline($prompt);
691 if (!defined $resp) { # EOF
692 print "\n";
693 return defined $default ? $default : undef;
694 }
695 if ($resp eq '' and defined $default) {
696 return $default;
697 }
Jay Soffian0da43a62009-04-04 23:23:21 -0400698 if (!defined $valid_re or $resp =~ /$valid_re/) {
Jay Soffian6e182512009-03-28 21:39:10 -0400699 return $resp;
700 }
701 }
702 return undef;
703}
704
Thomas Rast3cae7e52010-06-17 22:10:39 +0200705my %broken_encoding;
706
Ævar Arnfjörð Bjarmason1d50bfd2010-09-30 13:42:58 +0000707sub file_declares_8bit_cte {
Thomas Rast3cae7e52010-06-17 22:10:39 +0200708 my $fn = shift;
709 open (my $fh, '<', $fn);
710 while (my $line = <$fh>) {
711 last if ($line =~ /^$/);
712 return 1 if ($line =~ /^Content-Transfer-Encoding: .*8bit.*$/);
713 }
714 close $fh;
715 return 0;
716}
717
718foreach my $f (@files) {
719 next unless (body_or_subject_has_nonascii($f)
720 && !file_declares_8bit_cte($f));
721 $broken_encoding{$f} = 1;
722}
723
724if (!defined $auto_8bit_encoding && scalar %broken_encoding) {
725 print "The following files are 8bit, but do not declare " .
726 "a Content-Transfer-Encoding.\n";
727 foreach my $f (sort keys %broken_encoding) {
728 print " $f\n";
729 }
730 $auto_8bit_encoding = ask("Which 8bit encoding should I declare [UTF-8]? ",
731 default => "UTF-8");
732}
733
Thomas Rasta03bc5b2009-06-08 23:34:12 +0200734if (!$force) {
735 for my $f (@files) {
Ævar Arnfjörð Bjarmason0d290a42010-09-30 13:43:01 +0000736 if (get_patch_subject($f) =~ /\Q*** SUBJECT HERE ***\E/) {
Thomas Rasta03bc5b2009-06-08 23:34:12 +0200737 die "Refusing to send because the patch\n\t$f\n"
738 . "has the template subject '*** SUBJECT HERE ***'. "
739 . "Pass --force if you really want to send.\n";
740 }
741 }
742}
743
Ryan Anderson1f038a02005-09-05 01:13:07 -0400744my $prompting = 0;
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200745if (!defined $sender) {
Frank Lichtenheldad79c022008-03-14 18:29:30 +0100746 $sender = $repoauthor || $repocommitter || '';
Jay Soffian6e182512009-03-28 21:39:10 -0400747 $sender = ask("Who should the emails appear to be from? [$sender] ",
748 default => $sender);
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200749 print "Emails will be sent from: ", $sender, "\n";
Ryan Anderson1f038a02005-09-05 01:13:07 -0400750 $prompting++;
Ryan Anderson83b24432005-07-31 04:17:25 -0400751}
752
Junio C Hamano8796ff72010-10-26 22:02:03 -0700753if (!@initial_to && !defined $to_cmd) {
Jay Soffian6e182512009-03-28 21:39:10 -0400754 my $to = ask("Who should the emails be sent to? ");
Stephen Boyd3c3bb512010-10-04 00:05:24 -0700755 push @initial_to, parse_address_line($to) if defined $to; # sanitized/validated later
Ryan Anderson1f038a02005-09-05 01:13:07 -0400756 $prompting++;
Ryan Anderson83b24432005-07-31 04:17:25 -0400757}
758
Eric Wong994d6c62006-05-14 19:13:44 -0700759sub expand_aliases {
Jeff King302e04e2009-07-23 07:09:29 -0400760 return map { expand_one_alias($_) } @_;
761}
762
763my %EXPANDED_ALIASES;
764sub expand_one_alias {
765 my $alias = shift;
766 if ($EXPANDED_ALIASES{$alias}) {
767 die "fatal: alias '$alias' expands to itself\n";
768 }
769 local $EXPANDED_ALIASES{$alias} = 1;
770 return $aliases{$alias} ? expand_aliases(@{$aliases{$alias}}) : $alias;
Eric Wong994d6c62006-05-14 19:13:44 -0700771}
772
Stephen Boyd3c3bb512010-10-04 00:05:24 -0700773@initial_to = expand_aliases(@initial_to);
774@initial_to = (map { sanitize_address($_) } @initial_to);
Eric Wong994d6c62006-05-14 19:13:44 -0700775@initial_cc = expand_aliases(@initial_cc);
Ryan Anderson58063242006-05-29 12:30:13 -0700776@bcclist = expand_aliases(@bcclist);
Eric Wong994d6c62006-05-14 19:13:44 -0700777
Adam Roben5483c712007-06-27 20:59:37 -0700778if ($thread && !defined $initial_reply_to && $prompting) {
Jay Soffian6e182512009-03-28 21:39:10 -0400779 $initial_reply_to = ask(
780 "Message-ID to be used as In-Reply-To for the first email? ");
Ryan Anderson83b24432005-07-31 04:17:25 -0400781}
Jay Soffian1ca3d6e2008-02-20 00:55:07 -0500782if (defined $initial_reply_to) {
Jay Soffian0fb7fc72008-02-21 19:16:04 -0500783 $initial_reply_to =~ s/^\s*<?//;
784 $initial_reply_to =~ s/>?\s*$//;
785 $initial_reply_to = "<$initial_reply_to>" if $initial_reply_to ne '';
Junio C Hamanoace9c2a2007-12-10 21:44:42 -0800786}
Mike Hommeyace72082007-12-09 18:17:28 +0100787
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900788if (!defined $smtp_server) {
Eric Wongaca7ad72006-05-15 02:34:44 -0700789 foreach (qw( /usr/sbin/sendmail /usr/lib/sendmail )) {
790 if (-x $_) {
791 $smtp_server = $_;
792 last;
793 }
794 }
795 $smtp_server ||= 'localhost'; # could be 127.0.0.1, too... *shrug*
Ryan Anderson3342d852005-07-31 20:04:24 -0400796}
797
Jay Soffianc1f2aa42009-03-02 23:52:18 -0500798if ($compose && $compose > 0) {
799 @files = ($compose_filename . ".final", @files);
Ryan Anderson1f038a02005-09-05 01:13:07 -0400800}
801
Ryan Anderson83b24432005-07-31 04:17:25 -0400802# Variables we set as part of the loop over files
Jay Soffianc1f2aa42009-03-02 23:52:18 -0500803our ($message_id, %mail, $subject, $reply_to, $references, $message,
Jay Soffiandc1460a2009-03-31 12:22:12 -0400804 $needs_confirm, $message_num, $ask_default);
Ryan Anderson83b24432005-07-31 04:17:25 -0400805
Eric Wong567ffeb2006-03-25 16:47:12 -0800806sub extract_valid_address {
807 my $address = shift;
Ævar Arnfjörð Bjarmason35b6ab92010-09-30 19:03:31 +0000808 my $local_part_regexp = qr/[^<>"\s@]+/;
809 my $domain_regexp = qr/[^.<>"\s@]+(?:\.[^.<>"\s@]+)+/;
Eric Wongdb3106b2006-05-15 02:41:01 -0700810
811 # check for a local address:
Junio C Hamanoad9c18f2006-06-06 00:05:56 -0700812 return $address if ($address =~ /^($local_part_regexp)$/);
Eric Wongdb3106b2006-05-15 02:41:01 -0700813
Uwe Kleine-König155197e2007-08-09 15:27:57 +0200814 $address =~ s/^\s*<(.*)>\s*$/$1/;
Eric Wong567ffeb2006-03-25 16:47:12 -0800815 if ($have_email_valid) {
Junio C Hamanoad9c18f2006-06-06 00:05:56 -0700816 return scalar Email::Valid->address($address);
Eric Wong567ffeb2006-03-25 16:47:12 -0800817 } else {
818 # less robust/correct than the monster regexp in Email::Valid,
819 # but still does a 99% job, and one less dependency
Junio C Hamanoad9c18f2006-06-06 00:05:56 -0700820 $address =~ /($local_part_regexp\@$domain_regexp)/;
Horst H. von Brande96fd302006-06-03 13:11:48 -0400821 return $1;
Eric Wong567ffeb2006-03-25 16:47:12 -0800822 }
823}
Ryan Anderson83b24432005-07-31 04:17:25 -0400824
825# Usually don't need to change anything below here.
826
827# we make a "fake" message id by taking the current number
828# of seconds since the beginning of Unix time and tacking on
829# a random number to the end, in case we are called quicker than
830# 1 second since the last time we were called.
Ryan Anderson8037d1a2005-07-31 20:04:24 -0400831
832# We'll setup a template for the message id, using the "from" address:
Ryan Anderson8037d1a2005-07-31 20:04:24 -0400833
Junio C Hamanobe510cf2007-09-17 21:18:20 -0700834my ($message_id_stamp, $message_id_serial);
Brian Gernhardt68ce9332010-04-10 10:53:53 -0400835sub make_message_id {
Junio C Hamanobe510cf2007-09-17 21:18:20 -0700836 my $uniq;
837 if (!defined $message_id_stamp) {
838 $message_id_stamp = sprintf("%s-%s", time, $$);
839 $message_id_serial = 0;
840 }
841 $message_id_serial++;
842 $uniq = "$message_id_stamp-$message_id_serial";
843
Junio C Hamanoaeb59322007-06-20 13:47:34 -0700844 my $du_part;
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200845 for ($sender, $repocommitter, $repoauthor) {
846 $du_part = extract_valid_address(sanitize_address($_));
847 last if (defined $du_part and $du_part ne '');
Junio C Hamanoaeb59322007-06-20 13:47:34 -0700848 }
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200849 if (not defined $du_part or $du_part eq '') {
Ævar Arnfjörð Bjarmason529dd382010-09-30 13:43:08 +0000850 require Sys::Hostname;
Junio C Hamanoaeb59322007-06-20 13:47:34 -0700851 $du_part = 'user@' . Sys::Hostname::hostname();
852 }
Junio C Hamanobe510cf2007-09-17 21:18:20 -0700853 my $message_id_template = "<%s-git-send-email-%s>";
854 $message_id = sprintf($message_id_template, $uniq, $du_part);
Ryan Anderson8037d1a2005-07-31 20:04:24 -0400855 #print "new message id = $message_id\n"; # Was useful for debugging
Ryan Anderson83b24432005-07-31 04:17:25 -0400856}
857
858
859
Eric Wonga5370b12006-03-25 03:01:01 -0800860$time = time - scalar $#files;
Ryan Anderson83b24432005-07-31 04:17:25 -0400861
Jürgen Rühle374c5902007-01-10 13:36:39 -0800862sub unquote_rfc2047 {
863 local ($_) = @_;
Jeff King8291db62007-11-16 05:49:09 -0500864 my $encoding;
865 if (s/=\?([^?]+)\?q\?(.*)\?=/$2/g) {
866 $encoding = $1;
Jürgen Rühle374c5902007-01-10 13:36:39 -0800867 s/_/ /g;
868 s/=([0-9A-F]{2})/chr(hex($1))/eg;
869 }
Jeff King8291db62007-11-16 05:49:09 -0500870 return wantarray ? ($_, $encoding) : $_;
Jürgen Rühle374c5902007-01-10 13:36:39 -0800871}
872
Jeff Kingd54eaaa2008-03-28 17:29:01 -0400873sub quote_rfc2047 {
874 local $_ = shift;
Brandon Caseyd1fff6f2009-06-06 20:12:31 -0500875 my $encoding = shift || 'UTF-8';
Jeff Kingd54eaaa2008-03-28 17:29:01 -0400876 s/([^-a-zA-Z0-9!*+\/])/sprintf("=%02X", ord($1))/eg;
877 s/(.*)/=\?$encoding\?q\?$1\?=/;
878 return $_;
879}
880
Brandon Caseya3a82622009-06-07 19:25:58 -0500881sub is_rfc2047_quoted {
882 my $s = shift;
Ævar Arnfjörð Bjarmason49f73852010-09-30 13:43:05 +0000883 my $token = qr/[^][()<>@,;:"\/?.= \000-\037\177-\377]+/;
884 my $encoded_text = qr/[!->@-~]+/;
Brandon Caseya3a82622009-06-07 19:25:58 -0500885 length($s) <= 75 &&
886 $s =~ m/^(?:"[[:ascii:]]*"|=\?$token\?$token\?$encoded_text\?=)$/o;
887}
888
Uwe Kleine-K,Av(Bnig5b56aaa2007-08-06 22:34:50 +0200889# use the simplest quoting being able to handle the recipient
Brian Gernhardt68ce9332010-04-10 10:53:53 -0400890sub sanitize_address {
Robin H. Johnson732263d2007-04-25 19:37:19 -0700891 my ($recipient) = @_;
Uwe Kleine-K,Av(Bnig5b56aaa2007-08-06 22:34:50 +0200892 my ($recipient_name, $recipient_addr) = ($recipient =~ /^(.*?)\s*(<.*)/);
893
894 if (not $recipient_name) {
Ævar Arnfjörð Bjarmasonff483892010-09-30 13:43:02 +0000895 return $recipient;
Robin H. Johnson732263d2007-04-25 19:37:19 -0700896 }
Uwe Kleine-K,Av(Bnig5b56aaa2007-08-06 22:34:50 +0200897
898 # if recipient_name is already quoted, do nothing
Brandon Caseya3a82622009-06-07 19:25:58 -0500899 if (is_rfc2047_quoted($recipient_name)) {
Uwe Kleine-K,Av(Bnig5b56aaa2007-08-06 22:34:50 +0200900 return $recipient;
901 }
902
903 # rfc2047 is needed if a non-ascii char is included
904 if ($recipient_name =~ /[^[:ascii:]]/) {
Jay Soffiana61c0ff2009-03-31 12:22:14 -0400905 $recipient_name =~ s/^"(.*)"$/$1/;
Jeff Kingd54eaaa2008-03-28 17:29:01 -0400906 $recipient_name = quote_rfc2047($recipient_name);
Uwe Kleine-K,Av(Bnig5b56aaa2007-08-06 22:34:50 +0200907 }
908
909 # double quotes are needed if specials or CTLs are included
910 elsif ($recipient_name =~ /[][()<>@,;:\\".\000-\037\177]/) {
Horst H. von Brand18023c22008-03-28 11:09:04 -0300911 $recipient_name =~ s/(["\\\r])/\\$1/g;
Ævar Arnfjörð Bjarmasond5c7d692010-09-30 13:43:03 +0000912 $recipient_name = qq["$recipient_name"];
Uwe Kleine-K,Av(Bnig5b56aaa2007-08-06 22:34:50 +0200913 }
914
915 return "$recipient_name $recipient_addr";
916
Robin H. Johnson732263d2007-04-25 19:37:19 -0700917}
918
Jari Aalto134550f2010-03-14 17:16:45 +0200919# Returns the local Fully Qualified Domain Name (FQDN) if available.
920#
921# Tightly configured MTAa require that a caller sends a real DNS
922# domain name that corresponds the IP address in the HELO/EHLO
923# handshake. This is used to verify the connection and prevent
924# spammers from trying to hide their identity. If the DNS and IP don't
925# match, the receiveing MTA may deny the connection.
926#
927# Here is a deny example of Net::SMTP with the default "localhost.localdomain"
928#
929# Net::SMTP=GLOB(0x267ec28)>>> EHLO localhost.localdomain
930# Net::SMTP=GLOB(0x267ec28)<<< 550 EHLO argument does not match calling host
931#
932# This maildomain*() code is based on ideas in Perl library Test::Reporter
933# /usr/share/perl5/Test/Reporter/Mail/Util.pm ==> sub _maildomain ()
934
Brian Gernhardt59a86302010-04-10 10:53:54 -0400935sub valid_fqdn {
936 my $domain = shift;
Brandon Casey61ef5e92010-09-26 22:18:01 -0500937 return defined $domain && !($^O eq 'darwin' && $domain =~ /\.local$/) && $domain =~ /\./;
Brian Gernhardt59a86302010-04-10 10:53:54 -0400938}
939
Brian Gernhardt68ce9332010-04-10 10:53:53 -0400940sub maildomain_net {
Jari Aalto134550f2010-03-14 17:16:45 +0200941 my $maildomain;
942
943 if (eval { require Net::Domain; 1 }) {
944 my $domain = Net::Domain::domainname();
Brian Gernhardt59a86302010-04-10 10:53:54 -0400945 $maildomain = $domain if valid_fqdn($domain);
Jari Aalto134550f2010-03-14 17:16:45 +0200946 }
947
948 return $maildomain;
949}
950
Brian Gernhardt68ce9332010-04-10 10:53:53 -0400951sub maildomain_mta {
Jari Aalto134550f2010-03-14 17:16:45 +0200952 my $maildomain;
953
954 if (eval { require Net::SMTP; 1 }) {
955 for my $host (qw(mailhost localhost)) {
956 my $smtp = Net::SMTP->new($host);
957 if (defined $smtp) {
958 my $domain = $smtp->domain;
959 $smtp->quit;
960
Brian Gernhardt59a86302010-04-10 10:53:54 -0400961 $maildomain = $domain if valid_fqdn($domain);
Jari Aalto134550f2010-03-14 17:16:45 +0200962
963 last if $maildomain;
964 }
965 }
966 }
967
968 return $maildomain;
969}
970
Brian Gernhardt68ce9332010-04-10 10:53:53 -0400971sub maildomain {
Brian Gernhardt69cf7bf2010-04-10 10:53:56 -0400972 return maildomain_net() || maildomain_mta() || 'localhost.localdomain';
Jari Aalto134550f2010-03-14 17:16:45 +0200973}
974
Michael Witten15da1082009-04-13 13:23:51 -0500975# Returns 1 if the message was sent, and 0 otherwise.
Markus Heidelberga1b5b372009-06-12 12:51:42 +0200976# In actuality, the whole program dies when there
Michael Witten15da1082009-04-13 13:23:51 -0500977# is an error sending a message.
978
Brian Gernhardt68ce9332010-04-10 10:53:53 -0400979sub send_message {
Eric Wong4bc87a22006-03-25 17:20:48 -0800980 my @recipients = unique_email_list(@to);
Ask Bjørn Hansen7ac17522007-11-19 03:00:26 -0800981 @cc = (grep { my $cc = extract_valid_address($_);
Joe Perches83acaae2010-11-20 15:06:05 -0800982 not grep { $cc eq $_ || $_ =~ /<\Q${cc}\E>$/ } @recipients
Ask Bjørn Hansen7ac17522007-11-19 03:00:26 -0800983 }
984 map { sanitize_address($_) }
985 @cc);
Eric Wong4bc87a22006-03-25 17:20:48 -0800986 my $to = join (",\n\t", @recipients);
Ryan Anderson58063242006-05-29 12:30:13 -0700987 @recipients = unique_email_list(@recipients,@cc,@bcclist);
Robin H. Johnsonc38f0242007-04-25 19:37:20 -0700988 @recipients = (map { extract_valid_address($_) } @recipients);
Jakub Narebski6bdca892006-07-07 20:57:55 +0200989 my $date = format_2822_time($time++);
Martin Langhoffe923eff2006-05-03 09:44:36 +1200990 my $gitversion = '@@GIT_VERSION@@';
991 if ($gitversion =~ m/..GIT_VERSION../) {
Petr Baudis3cb8caf2006-07-03 22:47:58 +0200992 $gitversion = Git::version();
Martin Langhoffe923eff2006-05-03 09:44:36 +1200993 }
Ryan Anderson83b24432005-07-31 04:17:25 -0400994
Joe Perches02461e02009-10-08 10:03:26 -0700995 my $cc = join(",\n\t", unique_email_list(@cc));
Junio C Hamanof06a6a42007-04-16 16:51:47 -0700996 my $ccline = "";
997 if ($cc ne '') {
998 $ccline = "\nCc: $cc";
999 }
Uwe Kleine-König94638f82007-08-09 15:27:58 +02001000 my $sanitized_sender = sanitize_address($sender);
Jeff King4f3d3702007-12-17 15:51:34 -05001001 make_message_id() unless defined($message_id);
Junio C Hamanoaeb59322007-06-20 13:47:34 -07001002
Uwe Kleine-König94638f82007-08-09 15:27:58 +02001003 my $header = "From: $sanitized_sender
Junio C Hamanof06a6a42007-04-16 16:51:47 -07001004To: $to${ccline}
Eric Wong4bc87a22006-03-25 17:20:48 -08001005Subject: $subject
Eric Wong4bc87a22006-03-25 17:20:48 -08001006Date: $date
1007Message-Id: $message_id
Martin Langhoffe923eff2006-05-03 09:44:36 +12001008X-Mailer: git-send-email $gitversion
Eric Wong4bc87a22006-03-25 17:20:48 -08001009";
Thomas Rast3e0c4ff2009-03-01 23:45:41 +01001010 if ($reply_to) {
Ryan Anderson7ccf7922006-05-29 12:30:12 -07001011
1012 $header .= "In-Reply-To: $reply_to\n";
1013 $header .= "References: $references\n";
1014 }
Junio C Hamanoce91c2f2006-10-05 16:36:49 -07001015 if (@xh) {
1016 $header .= join("\n", @xh) . "\n";
1017 }
Ryan Anderson83b24432005-07-31 04:17:25 -04001018
Robin H. Johnsonc38f0242007-04-25 19:37:20 -07001019 my @sendmail_parameters = ('-i', @recipients);
Uwe Kleine-König94638f82007-08-09 15:27:58 +02001020 my $raw_from = $sanitized_sender;
Felipe Contrerasc89e3242009-11-26 21:04:29 +02001021 if (defined $envelope_sender && $envelope_sender ne "auto") {
1022 $raw_from = $envelope_sender;
1023 }
Robin H. Johnsonf073a592007-04-25 19:37:22 -07001024 $raw_from = extract_valid_address($raw_from);
1025 unshift (@sendmail_parameters,
1026 '-f', $raw_from) if(defined $envelope_sender);
Robin H. Johnson8e3d4362007-04-25 19:37:17 -07001027
Jay Soffianc1f2aa42009-03-02 23:52:18 -05001028 if ($needs_confirm && !$dry_run) {
1029 print "\n$header\n";
1030 if ($needs_confirm eq "inform") {
1031 $confirm_unconfigured = 0; # squelch this message for the rest of this run
Jay Soffian6e182512009-03-28 21:39:10 -04001032 $ask_default = "y"; # assume yes on EOF since user hasn't explicitly asked for confirmation
Jay Soffianc1f2aa42009-03-02 23:52:18 -05001033 print " The Cc list above has been expanded by additional\n";
1034 print " addresses found in the patch commit message. By default\n";
1035 print " send-email prompts before sending whenever this occurs.\n";
1036 print " This behavior is controlled by the sendemail.confirm\n";
1037 print " configuration setting.\n";
1038 print "\n";
1039 print " For additional information, run 'git send-email --help'.\n";
1040 print " To retain the current behavior, but squelch this message,\n";
1041 print " run 'git config --global sendemail.confirm auto'.\n\n";
1042 }
Jay Soffian6e182512009-03-28 21:39:10 -04001043 $_ = ask("Send this email? ([y]es|[n]o|[q]uit|[a]ll): ",
1044 valid_re => qr/^(?:yes|y|no|n|quit|q|all|a)/i,
1045 default => $ask_default);
1046 die "Send this email reply required" unless defined $_;
Jay Soffianc1f2aa42009-03-02 23:52:18 -05001047 if (/^n/i) {
Michael Witten15da1082009-04-13 13:23:51 -05001048 return 0;
Jay Soffianc1f2aa42009-03-02 23:52:18 -05001049 } elsif (/^q/i) {
1050 cleanup_compose_files();
1051 exit(0);
1052 } elsif (/^a/i) {
1053 $confirm = 'never';
1054 }
1055 }
1056
Pascal Obry052fbea2010-09-06 20:12:11 +02001057 unshift (@sendmail_parameters, @smtp_server_options);
1058
Matthew Wilcox61302592006-10-10 08:58:23 -06001059 if ($dry_run) {
1060 # We don't want to send the email.
1061 } elsif ($smtp_server =~ m#^/#) {
Eric Wongaca7ad72006-05-15 02:34:44 -07001062 my $pid = open my $sm, '|-';
1063 defined $pid or die $!;
1064 if (!$pid) {
Robin H. Johnson8e3d4362007-04-25 19:37:17 -07001065 exec($smtp_server, @sendmail_parameters) or die $!;
Eric Wongaca7ad72006-05-15 02:34:44 -07001066 }
1067 print $sm "$header\n$message";
Ævar Arnfjörð Bjarmason5e2c2ab2010-09-30 13:43:07 +00001068 close $sm or die $!;
Eric Wongaca7ad72006-05-15 02:34:44 -07001069 } else {
Junio C Hamano44b24762007-09-25 17:27:54 -07001070
1071 if (!defined $smtp_server) {
1072 die "The required SMTP server is not properly defined."
1073 }
1074
Thomas Rastf6bebd12008-06-25 21:42:43 +02001075 if ($smtp_encryption eq 'ssl') {
Junio C Hamano44b24762007-09-25 17:27:54 -07001076 $smtp_server_port ||= 465; # ssmtp
Douglas Stockwell34cc60c2007-09-03 03:06:25 +09001077 require Net::SMTP::SSL;
Brian Gernhardt69cf7bf2010-04-10 10:53:56 -04001078 $smtp_domain ||= maildomain();
Jari Aalto134550f2010-03-14 17:16:45 +02001079 $smtp ||= Net::SMTP::SSL->new($smtp_server,
Brian Gernhardt69cf7bf2010-04-10 10:53:56 -04001080 Hello => $smtp_domain,
Jari Aalto134550f2010-03-14 17:16:45 +02001081 Port => $smtp_server_port);
Douglas Stockwell34cc60c2007-09-03 03:06:25 +09001082 }
1083 else {
1084 require Net::SMTP;
Brian Gernhardt69cf7bf2010-04-10 10:53:56 -04001085 $smtp_domain ||= maildomain();
Junio C Hamano44b24762007-09-25 17:27:54 -07001086 $smtp ||= Net::SMTP->new((defined $smtp_server_port)
1087 ? "$smtp_server:$smtp_server_port"
Jari Aaltof60812e2010-03-14 17:16:09 +02001088 : $smtp_server,
Brian Gernhardt69cf7bf2010-04-10 10:53:56 -04001089 Hello => $smtp_domain,
Jari Aaltof60812e2010-03-14 17:16:09 +02001090 Debug => $debug_net_smtp);
Yakov Lernerfb3650e2009-09-25 15:10:21 -07001091 if ($smtp_encryption eq 'tls' && $smtp) {
Thomas Rastf6bebd12008-06-25 21:42:43 +02001092 require Net::SMTP::SSL;
1093 $smtp->command('STARTTLS');
1094 $smtp->response();
1095 if ($smtp->code == 220) {
1096 $smtp = Net::SMTP::SSL->start_SSL($smtp)
1097 or die "STARTTLS failed! ".$smtp->message;
Thomas Rast6cbf8b02008-07-03 00:11:31 +02001098 $smtp_encryption = '';
Robert Shearman9d1ccf52008-07-09 22:39:40 +01001099 # Send EHLO again to receive fresh
1100 # supported commands
Matthew Daley155b9402011-10-15 04:44:52 -04001101 $smtp->hello($smtp_domain);
Thomas Rastf6bebd12008-06-25 21:42:43 +02001102 } else {
1103 die "Server does not support STARTTLS! ".$smtp->message;
1104 }
1105 }
Douglas Stockwell34cc60c2007-09-03 03:06:25 +09001106 }
Junio C Hamano44b24762007-09-25 17:27:54 -07001107
1108 if (!$smtp) {
Jari Aaltof60812e2010-03-14 17:16:09 +02001109 die "Unable to initialize SMTP properly. Check config and use --smtp-debug. ",
Jari Aaltoe5afb3a2010-03-14 17:15:33 +02001110 "VALUES: server=$smtp_server ",
1111 "encryption=$smtp_encryption ",
Brian Gernhardt69cf7bf2010-04-10 10:53:56 -04001112 "hello=$smtp_domain",
Sylvain Rabota1dd7e12011-04-29 20:23:24 +02001113 defined $smtp_server_port ? " port=$smtp_server_port" : "";
Junio C Hamano44b24762007-09-25 17:27:54 -07001114 }
1115
Michael Witten2363d742008-02-03 19:53:56 -05001116 if (defined $smtp_authuser) {
Zbigniew Jędrzejewski-Szmekccdbdc72011-09-29 19:02:45 +02001117 # Workaround AUTH PLAIN/LOGIN interaction defect
1118 # with Authen::SASL::Cyrus
1119 eval {
1120 require Authen::SASL;
1121 Authen::SASL->import(qw(Perl));
1122 };
Michael Witten2363d742008-02-03 19:53:56 -05001123
1124 if (!defined $smtp_authpass) {
1125
1126 system "stty -echo";
1127
1128 do {
1129 print "Password: ";
1130 $_ = <STDIN>;
1131 print "\n";
1132 } while (!defined $_);
1133
1134 chomp($smtp_authpass = $_);
1135
1136 system "stty echo";
1137 }
1138
Wincent Colaiuta5f5b6112007-11-21 13:35:05 +01001139 $auth ||= $smtp->auth( $smtp_authuser, $smtp_authpass ) or die $smtp->message;
Junio C Hamano44b24762007-09-25 17:27:54 -07001140 }
Michael Witten2363d742008-02-03 19:53:56 -05001141
Robin H. Johnson2b69bfc2007-04-25 19:37:21 -07001142 $smtp->mail( $raw_from ) or die $smtp->message;
Eric Wongaca7ad72006-05-15 02:34:44 -07001143 $smtp->to( @recipients ) or die $smtp->message;
1144 $smtp->data or die $smtp->message;
1145 $smtp->datasend("$header\n$message") or die $smtp->message;
1146 $smtp->dataend() or die $smtp->message;
Michael Witten15da1082009-04-13 13:23:51 -05001147 $smtp->code =~ /250|200/ or die "Failed to send $subject\n".$smtp->message;
Eric Wongaca7ad72006-05-15 02:34:44 -07001148 }
Ryan Anderson27184352006-02-05 20:13:52 -05001149 if ($quiet) {
Robin H. Johnson71c7da92007-04-25 19:37:16 -07001150 printf (($dry_run ? "Dry-" : "")."Sent %s\n", $subject);
Ryan Anderson27184352006-02-05 20:13:52 -05001151 } else {
David D. Kilzerb7f30e02007-11-18 20:14:55 -08001152 print (($dry_run ? "Dry-" : "")."OK. Log says:\n");
Robin H. Johnson2b69bfc2007-04-25 19:37:21 -07001153 if ($smtp_server !~ m#^/#) {
Eric Wongaca7ad72006-05-15 02:34:44 -07001154 print "Server: $smtp_server\n";
Robin H. Johnson2b69bfc2007-04-25 19:37:21 -07001155 print "MAIL FROM:<$raw_from>\n";
Joe Perches02461e02009-10-08 10:03:26 -07001156 foreach my $entry (@recipients) {
1157 print "RCPT TO:<$entry>\n";
1158 }
Eric Wongaca7ad72006-05-15 02:34:44 -07001159 } else {
Robin H. Johnson8e3d4362007-04-25 19:37:17 -07001160 print "Sendmail: $smtp_server ".join(' ',@sendmail_parameters)."\n";
Eric Wongaca7ad72006-05-15 02:34:44 -07001161 }
David D. Kilzerb7f30e02007-11-18 20:14:55 -08001162 print $header, "\n";
Eric Wongaca7ad72006-05-15 02:34:44 -07001163 if ($smtp) {
1164 print "Result: ", $smtp->code, ' ',
1165 ($smtp->message =~ /\n([^\n]+\n)$/s), "\n";
1166 } else {
1167 print "Result: OK\n";
1168 }
Ryan Anderson30d08b32006-02-02 11:56:06 -05001169 }
Michael Witten15da1082009-04-13 13:23:51 -05001170
1171 return 1;
Ryan Anderson83b24432005-07-31 04:17:25 -04001172}
1173
Ryan Anderson83b24432005-07-31 04:17:25 -04001174$reply_to = $initial_reply_to;
Junio C Hamano2186d562006-05-29 23:53:13 -07001175$references = $initial_reply_to || '';
Ryan Anderson83b24432005-07-31 04:17:25 -04001176$subject = $initial_subject;
Jay Soffianc1f2aa42009-03-02 23:52:18 -05001177$message_num = 0;
Ryan Anderson83b24432005-07-31 04:17:25 -04001178
1179foreach my $t (@files) {
Ævar Arnfjörð Bjarmasonf9237e62010-09-30 13:42:56 +00001180 open my $fh, "<", $t or die "can't open file $t";
Ryan Anderson83b24432005-07-31 04:17:25 -04001181
Uwe Kleine-König94638f82007-08-09 15:27:58 +02001182 my $author = undef;
Jeff King8291db62007-11-16 05:49:09 -05001183 my $author_encoding;
1184 my $has_content_type;
1185 my $body_encoding;
Stephen Boyd3c3bb512010-10-04 00:05:24 -07001186 @to = ();
Jay Soffianc1f2aa42009-03-02 23:52:18 -05001187 @cc = ();
Junio C Hamanoce91c2f2006-10-05 16:36:49 -07001188 @xh = ();
Junio C Hamanoe6b09642006-10-07 03:09:05 -07001189 my $input_format = undef;
Jay Soffian50126992009-02-14 23:32:14 -05001190 my @header = ();
Ryan Anderson83b24432005-07-31 04:17:25 -04001191 $message = "";
Jay Soffianc1f2aa42009-03-02 23:52:18 -05001192 $message_num++;
Jay Soffian50126992009-02-14 23:32:14 -05001193 # First unfold multiline header fields
Ævar Arnfjörð Bjarmasonf9237e62010-09-30 13:42:56 +00001194 while(<$fh>) {
Jay Soffian50126992009-02-14 23:32:14 -05001195 last if /^\s*$/;
1196 if (/^\s+\S/ and @header) {
1197 chomp($header[$#header]);
1198 s/^\s+/ /;
1199 $header[$#header] .= $_;
1200 } else {
1201 push(@header, $_);
1202 }
1203 }
1204 # Now parse the header
1205 foreach(@header) {
1206 if (/^From /) {
1207 $input_format = 'mbox';
1208 next;
1209 }
1210 chomp;
1211 if (!defined $input_format && /^[-A-Za-z]+:\s/) {
1212 $input_format = 'mbox';
1213 }
Ryan Anderson83b24432005-07-31 04:17:25 -04001214
Jay Soffian50126992009-02-14 23:32:14 -05001215 if (defined $input_format && $input_format eq 'mbox') {
1216 if (/^Subject:\s+(.*)$/) {
1217 $subject = $1;
1218 }
1219 elsif (/^From:\s+(.*)$/) {
1220 ($author, $author_encoding) = unquote_rfc2047($1);
1221 next if $suppress_cc{'author'};
1222 next if $suppress_cc{'self'} and $author eq $sender;
1223 printf("(mbox) Adding cc: %s from line '%s'\n",
1224 $1, $_) unless $quiet;
1225 push @cc, $1;
1226 }
Stephen Boyd21802cd2010-09-29 00:26:44 -07001227 elsif (/^To:\s+(.*)$/) {
1228 foreach my $addr (parse_address_line($1)) {
1229 printf("(mbox) Adding to: %s from line '%s'\n",
1230 $addr, $_) unless $quiet;
1231 push @to, sanitize_address($addr);
1232 }
1233 }
Jay Soffian50126992009-02-14 23:32:14 -05001234 elsif (/^Cc:\s+(.*)$/) {
1235 foreach my $addr (parse_address_line($1)) {
1236 if (unquote_rfc2047($addr) eq $sender) {
David Brown65648282007-12-25 19:56:29 -08001237 next if ($suppress_cc{'self'});
David Brown65648282007-12-25 19:56:29 -08001238 } else {
1239 next if ($suppress_cc{'cc'});
Junio C Hamano8a8e6232006-03-23 23:43:52 -08001240 }
Ryan Anderson83b24432005-07-31 04:17:25 -04001241 printf("(mbox) Adding cc: %s from line '%s'\n",
Jay Soffian50126992009-02-14 23:32:14 -05001242 $addr, $_) unless $quiet;
1243 push @cc, $addr;
Ryan Anderson83b24432005-07-31 04:17:25 -04001244 }
1245 }
Jay Soffian50126992009-02-14 23:32:14 -05001246 elsif (/^Content-type:/i) {
1247 $has_content_type = 1;
1248 if (/charset="?([^ "]+)/) {
1249 $body_encoding = $1;
1250 }
1251 push @xh, $_;
Ryan Anderson83b24432005-07-31 04:17:25 -04001252 }
Jay Soffian50126992009-02-14 23:32:14 -05001253 elsif (/^Message-Id: (.*)/i) {
1254 $message_id = $1;
1255 }
1256 elsif (!/^Date:\s/ && /^[-A-Za-z]+:\s+\S/) {
1257 push @xh, $_;
1258 }
1259
Ryan Anderson83b24432005-07-31 04:17:25 -04001260 } else {
Jay Soffian50126992009-02-14 23:32:14 -05001261 # In the traditional
1262 # "send lots of email" format,
1263 # line 1 = cc
1264 # line 2 = subject
1265 # So let's support that, too.
1266 $input_format = 'lots';
1267 if (@cc == 0 && !$suppress_cc{'cc'}) {
1268 printf("(non-mbox) Adding cc: %s from line '%s'\n",
1269 $_, $_) unless $quiet;
1270 push @cc, $_;
1271 } elsif (!defined $subject) {
1272 $subject = $_;
Ryan Anderson83b24432005-07-31 04:17:25 -04001273 }
1274 }
1275 }
Jay Soffian50126992009-02-14 23:32:14 -05001276 # Now parse the message body
Ævar Arnfjörð Bjarmasonf9237e62010-09-30 13:42:56 +00001277 while(<$fh>) {
Jay Soffian50126992009-02-14 23:32:14 -05001278 $message .= $_;
1279 if (/^(Signed-off-by|Cc): (.*)$/i) {
Jay Soffian50126992009-02-14 23:32:14 -05001280 chomp;
Jay Soffian3531e272009-02-14 23:32:15 -05001281 my ($what, $c) = ($1, $2);
Jay Soffian50126992009-02-14 23:32:14 -05001282 chomp $c;
Jay Soffian3531e272009-02-14 23:32:15 -05001283 if ($c eq $sender) {
1284 next if ($suppress_cc{'self'});
1285 } else {
1286 next if $suppress_cc{'sob'} and $what =~ /Signed-off-by/i;
1287 next if $suppress_cc{'bodycc'} and $what =~ /Cc/i;
1288 }
Jay Soffian50126992009-02-14 23:32:14 -05001289 push @cc, $c;
Jay Soffian3531e272009-02-14 23:32:15 -05001290 printf("(body) Adding cc: %s from line '%s'\n",
Jay Soffian50126992009-02-14 23:32:14 -05001291 $c, $_) unless $quiet;
1292 }
1293 }
Ævar Arnfjörð Bjarmasonf9237e62010-09-30 13:42:56 +00001294 close $fh;
Joe Perches324a8bd2007-08-17 18:51:12 -07001295
Joe Perches6e74e072010-09-24 10:03:00 -07001296 push @to, recipients_cmd("to-cmd", "to", $to_cmd, $t)
1297 if defined $to_cmd;
1298 push @cc, recipients_cmd("cc-cmd", "cc", $cc_cmd, $t)
1299 if defined $cc_cmd && !$suppress_cc{'cccmd'};
Joe Perches324a8bd2007-08-17 18:51:12 -07001300
Thomas Rast3cae7e52010-06-17 22:10:39 +02001301 if ($broken_encoding{$t} && !$has_content_type) {
1302 $has_content_type = 1;
1303 push @xh, "MIME-Version: 1.0",
1304 "Content-Type: text/plain; charset=$auto_8bit_encoding",
1305 "Content-Transfer-Encoding: 8bit";
1306 $body_encoding = $auto_8bit_encoding;
1307 }
1308
1309 if ($broken_encoding{$t} && !is_rfc2047_quoted($subject)) {
1310 $subject = quote_rfc2047($subject, $auto_8bit_encoding);
1311 }
1312
Jay Soffian50126992009-02-14 23:32:14 -05001313 if (defined $author and $author ne $sender) {
Uwe Kleine-König94638f82007-08-09 15:27:58 +02001314 $message = "From: $author\n\n$message";
Jeff King8291db62007-11-16 05:49:09 -05001315 if (defined $author_encoding) {
1316 if ($has_content_type) {
1317 if ($body_encoding eq $author_encoding) {
1318 # ok, we already have the right encoding
1319 }
1320 else {
1321 # uh oh, we should re-encode
1322 }
1323 }
1324 else {
Thomas Rast3cae7e52010-06-17 22:10:39 +02001325 $has_content_type = 1;
Jeff King8291db62007-11-16 05:49:09 -05001326 push @xh,
1327 'MIME-Version: 1.0',
Jeff King8641ee32007-11-20 07:54:04 -05001328 "Content-Type: text/plain; charset=$author_encoding",
1329 'Content-Transfer-Encoding: 8bit';
Jeff King8291db62007-11-16 05:49:09 -05001330 }
1331 }
Junio C Hamano8a8e6232006-03-23 23:43:52 -08001332 }
Ryan Anderson83b24432005-07-31 04:17:25 -04001333
Jay Soffianc1f2aa42009-03-02 23:52:18 -05001334 $needs_confirm = (
1335 $confirm eq "always" or
1336 ($confirm =~ /^(?:auto|cc)$/ && @cc) or
1337 ($confirm =~ /^(?:auto|compose)$/ && $compose && $message_num == 1));
1338 $needs_confirm = "inform" if ($needs_confirm && $confirm_unconfigured && @cc);
1339
Stephen Boyd3c3bb512010-10-04 00:05:24 -07001340 @to = (@initial_to, @to);
Jay Soffianc1f2aa42009-03-02 23:52:18 -05001341 @cc = (@initial_cc, @cc);
1342
Michael Witten15da1082009-04-13 13:23:51 -05001343 my $message_was_sent = send_message();
Ryan Anderson83b24432005-07-31 04:17:25 -04001344
1345 # set up for the next message
Junio C Hamano95a877a2009-06-12 09:23:43 -07001346 if ($thread && $message_was_sent &&
Antonio Ospitedb54c8e2010-11-12 15:55:08 +01001347 (chain_reply_to() || !defined $reply_to || length($reply_to) == 0 ||
1348 $message_num == 1)) {
Ryan Anderson78488b22005-07-31 20:04:24 -04001349 $reply_to = $message_id;
Ryan Anderson7ccf7922006-05-29 12:30:12 -07001350 if (length $references > 0) {
YOSHIFUJI Hideaki / 吉藤英明a925b892007-04-06 08:50:24 +09001351 $references .= "\n $message_id";
Ryan Anderson7ccf7922006-05-29 12:30:12 -07001352 } else {
1353 $references = "$message_id";
1354 }
Ryan Anderson78488b22005-07-31 20:04:24 -04001355 }
Jeff King4f3d3702007-12-17 15:51:34 -05001356 $message_id = undef;
Ryan Anderson83b24432005-07-31 04:17:25 -04001357}
Ryan Andersone2057352005-08-02 21:45:22 -04001358
Joe Perches6e74e072010-09-24 10:03:00 -07001359# Execute a command (e.g. $to_cmd) to get a list of email addresses
1360# and return a results array
1361sub recipients_cmd {
1362 my ($prefix, $what, $cmd, $file) = @_;
1363
1364 my $sanitized_sender = sanitize_address($sender);
1365 my @addresses = ();
Junio C Hamano7ebee442010-10-26 22:02:52 -07001366 open my $fh, "$cmd \Q$file\E |"
Joe Perches6e74e072010-09-24 10:03:00 -07001367 or die "($prefix) Could not execute '$cmd'";
Junio C Hamano7ebee442010-10-26 22:02:52 -07001368 while (my $address = <$fh>) {
Joe Perches6e74e072010-09-24 10:03:00 -07001369 $address =~ s/^\s*//g;
1370 $address =~ s/\s*$//g;
1371 $address = sanitize_address($address);
1372 next if ($address eq $sanitized_sender and $suppress_from);
1373 push @addresses, $address;
1374 printf("($prefix) Adding %s: %s from: '%s'\n",
1375 $what, $address, $cmd) unless $quiet;
1376 }
Junio C Hamano7ebee442010-10-26 22:02:52 -07001377 close $fh
Joe Perches6e74e072010-09-24 10:03:00 -07001378 or die "($prefix) failed to close pipe to '$cmd'";
1379 return @addresses;
1380}
1381
Jay Soffianc1f2aa42009-03-02 23:52:18 -05001382cleanup_compose_files();
Ryan Anderson1f038a02005-09-05 01:13:07 -04001383
Ævar Arnfjörð Bjarmason4bf597e2010-09-30 13:43:00 +00001384sub cleanup_compose_files {
Jay Soffianc1f2aa42009-03-02 23:52:18 -05001385 unlink($compose_filename, $compose_filename . ".final") if $compose;
Ryan Anderson1f038a02005-09-05 01:13:07 -04001386}
1387
Eric Wong4bc87a22006-03-25 17:20:48 -08001388$smtp->quit if $smtp;
Ryan Andersone2057352005-08-02 21:45:22 -04001389
Ævar Arnfjörð Bjarmasonc438ea22010-09-30 13:42:59 +00001390sub unique_email_list {
Ryan Andersone2057352005-08-02 21:45:22 -04001391 my %seen;
1392 my @emails;
1393
1394 foreach my $entry (@_) {
Eric Wongdb3106b2006-05-15 02:41:01 -07001395 if (my $clean = extract_valid_address($entry)) {
1396 $seen{$clean} ||= 0;
1397 next if $seen{$clean}++;
1398 push @emails, $entry;
1399 } else {
1400 print STDERR "W: unable to extract a valid address",
1401 " from: $entry\n";
1402 }
Ryan Andersone2057352005-08-02 21:45:22 -04001403 }
1404 return @emails;
1405}
Jeff King747bbff2008-01-18 09:19:48 -05001406
1407sub validate_patch {
1408 my $fn = shift;
1409 open(my $fh, '<', $fn)
1410 or die "unable to open $fn: $!\n";
1411 while (my $line = <$fh>) {
1412 if (length($line) > 998) {
1413 return "$.: patch contains a line longer than 998 characters";
1414 }
1415 }
1416 return undef;
1417}
Jeff King0706bd12008-03-28 17:28:33 -04001418
1419sub file_has_nonascii {
1420 my $fn = shift;
1421 open(my $fh, '<', $fn)
1422 or die "unable to open $fn: $!\n";
1423 while (my $line = <$fh>) {
1424 return 1 if $line =~ /[^[:ascii:]]/;
1425 }
1426 return 0;
1427}
Thomas Rast3cae7e52010-06-17 22:10:39 +02001428
1429sub body_or_subject_has_nonascii {
1430 my $fn = shift;
1431 open(my $fh, '<', $fn)
1432 or die "unable to open $fn: $!\n";
1433 while (my $line = <$fh>) {
1434 last if $line =~ /^$/;
1435 return 1 if $line =~ /^Subject.*[^[:ascii:]]/;
1436 }
1437 while (my $line = <$fh>) {
1438 return 1 if $line =~ /[^[:ascii:]]/;
1439 }
1440 return 0;
1441}