send-email: use built-in time() instead of /bin/date '+%s'
[git/fastimport.git] / git-send-email.perl
blob7c27eed7ba3b93380e0751a9416b83e1abe77212
1 #!/usr/bin/perl -w
3 # Copyright 2002,2005 Greg Kroah-Hartman <greg@kroah.com>
4 # Copyright 2005 Ryan Anderson <ryan@michonline.com>
6 # GPL v2 (See COPYING)
8 # Ported to support git "mbox" format files by Ryan Anderson <ryan@michonline.com>
10 # Sends a collection of emails to the given email addresses, disturbingly fast.
12 # Supports two formats:
13 # 1. mbox format files (ignoring most headers and MIME formatting - this is designed for sending patches)
14 # 2. The original format support by Greg's script:
15 # first line of the message is who to CC,
16 # and second line is the subject of the message.
19 use strict;
20 use warnings;
21 use Term::ReadLine;
22 use Mail::Sendmail qw(sendmail %mailcfg);
23 use Getopt::Long;
24 use Data::Dumper;
25 use Email::Valid;
27 sub unique_email_list(@);
28 sub cleanup_compose_files();
30 # Constants (essentially)
31 my $compose_filename = ".msg.$$";
33 # Variables we fill in automatically, or via prompting:
34 my (@to,@cc,@initial_cc,$initial_reply_to,$initial_subject,@files,$from,$compose);
36 # Behavior modification variables
37 my ($chain_reply_to, $smtp_server, $quiet, $suppress_from, $no_signed_off_cc) = (1, "localhost", 0, 0, 0);
39 # Example reply to:
40 #$initial_reply_to = ''; #<20050203173208.GA23964@foobar.com>';
42 my $term = new Term::ReadLine 'git-send-email';
44 # Begin by accumulating all the variables (defined above), that we will end up
45 # needing, first, from the command line:
47 my $rc = GetOptions("from=s" => \$from,
48 "in-reply-to=s" => \$initial_reply_to,
49 "subject=s" => \$initial_subject,
50 "to=s" => \@to,
51 "cc=s" => \@initial_cc,
52 "chain-reply-to!" => \$chain_reply_to,
53 "smtp-server=s" => \$smtp_server,
54 "compose" => \$compose,
55 "quiet" => \$quiet,
56 "suppress-from" => \$suppress_from,
57 "no-signed-off-cc|no-signed-off-by-cc" => \$no_signed_off_cc,
60 # Now, let's fill any that aren't set in with defaults:
62 sub gitvar {
63 my ($var) = @_;
64 my $fh;
65 my $pid = open($fh, '-|');
66 die "$!" unless defined $pid;
67 if (!$pid) {
68 exec('git-var', $var) or die "$!";
70 my ($val) = <$fh>;
71 close $fh or die "$!";
72 chomp($val);
73 return $val;
76 sub gitvar_ident {
77 my ($name) = @_;
78 my $val = gitvar($name);
79 my @field = split(/\s+/, $val);
80 return join(' ', @field[0...(@field-3)]);
83 my ($author) = gitvar_ident('GIT_AUTHOR_IDENT');
84 my ($committer) = gitvar_ident('GIT_COMMITTER_IDENT');
86 my $prompting = 0;
87 if (!defined $from) {
88 $from = $author || $committer;
89 do {
90 $_ = $term->readline("Who should the emails appear to be from? ",
91 $from);
92 } while (!defined $_);
94 $from = $_;
95 print "Emails will be sent from: ", $from, "\n";
96 $prompting++;
99 if (!@to) {
100 do {
101 $_ = $term->readline("Who should the emails be sent to? ",
102 "");
103 } while (!defined $_);
104 my $to = $_;
105 push @to, split /,/, $to;
106 $prompting++;
109 if (!defined $initial_subject && $compose) {
110 do {
111 $_ = $term->readline("What subject should the emails start with? ",
112 $initial_subject);
113 } while (!defined $_);
114 $initial_subject = $_;
115 $prompting++;
118 if (!defined $initial_reply_to && $prompting) {
119 do {
120 $_= $term->readline("Message-ID to be used as In-Reply-To for the first email? ",
121 $initial_reply_to);
122 } while (!defined $_);
124 $initial_reply_to = $_;
125 $initial_reply_to =~ s/(^\s+|\s+$)//g;
128 if (!defined $smtp_server) {
129 $smtp_server = "localhost";
132 if ($compose) {
133 # Note that this does not need to be secure, but we will make a small
134 # effort to have it be unique
135 open(C,">",$compose_filename)
136 or die "Failed to open for writing $compose_filename: $!";
137 print C "From $from # This line is ignored.\n";
138 printf C "Subject: %s\n\n", $initial_subject;
139 printf C <<EOT;
140 GIT: Please enter your email below.
141 GIT: Lines beginning in "GIT: " will be removed.
142 GIT: Consider including an overall diffstat or table of contents
143 GIT: for the patch you are writing.
146 close(C);
148 my $editor = $ENV{EDITOR};
149 $editor = 'vi' unless defined $editor;
150 system($editor, $compose_filename);
152 open(C2,">",$compose_filename . ".final")
153 or die "Failed to open $compose_filename.final : " . $!;
155 open(C,"<",$compose_filename)
156 or die "Failed to open $compose_filename : " . $!;
158 while(<C>) {
159 next if m/^GIT: /;
160 print C2 $_;
162 close(C);
163 close(C2);
165 do {
166 $_ = $term->readline("Send this email? (y|n) ");
167 } while (!defined $_);
169 if (uc substr($_,0,1) ne 'Y') {
170 cleanup_compose_files();
171 exit(0);
174 @files = ($compose_filename . ".final");
178 # Now that all the defaults are set, process the rest of the command line
179 # arguments and collect up the files that need to be processed.
180 for my $f (@ARGV) {
181 if (-d $f) {
182 opendir(DH,$f)
183 or die "Failed to opendir $f: $!";
185 push @files, grep { -f $_ } map { +$f . "/" . $_ }
186 sort readdir(DH);
188 } elsif (-f $f) {
189 push @files, $f;
191 } else {
192 print STDERR "Skipping $f - not found.\n";
196 if (@files) {
197 unless ($quiet) {
198 print $_,"\n" for (@files);
200 } else {
201 print <<EOT;
202 git-send-email [options] <file | directory> [... file | directory ]
203 Options:
204 --from Specify the "From:" line of the email to be sent.
206 --to Specify the primary "To:" line of the email.
208 --cc Specify an initial "Cc:" list for the entire series
209 of emails.
211 --compose Use \$EDITOR to edit an introductory message for the
212 patch series.
214 --subject Specify the initial "Subject:" line.
215 Only necessary if --compose is also set. If --compose
216 is not set, this will be prompted for.
218 --in-reply-to Specify the first "In-Reply-To:" header line.
219 Only used if --compose is also set. If --compose is not
220 set, this will be prompted for.
222 --chain-reply-to If set, the replies will all be to the previous
223 email sent, rather than to the first email sent.
224 Defaults to on.
226 --no-signed-off-cc Suppress the automatic addition of email addresses
227 that appear in a Signed-off-by: line, to the cc: list.
228 Note: Using this option is not recommended.
230 --smtp-server If set, specifies the outgoing SMTP server to use.
231 Defaults to localhost.
233 --suppress-from Supress sending emails to yourself if your address
234 appears in a From: line.
236 --quiet Make git-send-email less verbose. One line per email should be
237 all that is output.
239 Error: Please specify a file or a directory on the command line.
241 exit(1);
244 # Variables we set as part of the loop over files
245 our ($message_id, $cc, %mail, $subject, $reply_to, $message);
248 # Usually don't need to change anything below here.
250 # we make a "fake" message id by taking the current number
251 # of seconds since the beginning of Unix time and tacking on
252 # a random number to the end, in case we are called quicker than
253 # 1 second since the last time we were called.
255 # We'll setup a template for the message id, using the "from" address:
256 my $message_id_from = Email::Valid->address($from);
257 my $message_id_template = "<%s-git-send-email-$message_id_from>";
259 sub make_message_id
261 my $date = time;
262 my $pseudo_rand = int (rand(4200));
263 $message_id = sprintf $message_id_template, "$date$pseudo_rand";
264 #print "new message id = $message_id\n"; # Was useful for debugging
269 $cc = "";
271 sub send_message
273 my $to = join (", ", unique_email_list(@to));
275 %mail = ( To => $to,
276 From => $from,
277 CC => $cc,
278 Subject => $subject,
279 Message => $message,
280 'Reply-to' => $from,
281 'In-Reply-To' => $reply_to,
282 'Message-ID' => $message_id,
283 'X-Mailer' => "git-send-email",
286 $mail{smtp} = $smtp_server;
287 $mailcfg{mime} = 0;
289 #print Data::Dumper->Dump([\%mail],[qw(*mail)]);
291 sendmail(%mail) or die $Mail::Sendmail::error;
293 if ($quiet) {
294 printf "Sent %s\n", $subject;
295 } else {
296 print "OK. Log says:\n", $Mail::Sendmail::log;
297 print "\n\n"
302 $reply_to = $initial_reply_to;
303 make_message_id();
304 $subject = $initial_subject;
306 foreach my $t (@files) {
307 open(F,"<",$t) or die "can't open file $t";
309 my $author_not_sender = undef;
310 @cc = @initial_cc;
311 my $found_mbox = 0;
312 my $header_done = 0;
313 $message = "";
314 while(<F>) {
315 if (!$header_done) {
316 $found_mbox = 1, next if (/^From /);
317 chomp;
319 if ($found_mbox) {
320 if (/^Subject:\s+(.*)$/) {
321 $subject = $1;
323 } elsif (/^(Cc|From):\s+(.*)$/) {
324 if ($2 eq $from) {
325 next if ($suppress_from);
327 else {
328 $author_not_sender = $2;
330 printf("(mbox) Adding cc: %s from line '%s'\n",
331 $2, $_) unless $quiet;
332 push @cc, $2;
335 } else {
336 # In the traditional
337 # "send lots of email" format,
338 # line 1 = cc
339 # line 2 = subject
340 # So let's support that, too.
341 if (@cc == 0) {
342 printf("(non-mbox) Adding cc: %s from line '%s'\n",
343 $_, $_) unless $quiet;
345 push @cc, $_;
347 } elsif (!defined $subject) {
348 $subject = $_;
352 # A whitespace line will terminate the headers
353 if (m/^\s*$/) {
354 $header_done = 1;
356 } else {
357 $message .= $_;
358 if (/^Signed-off-by: (.*)$/i && !$no_signed_off_cc) {
359 my $c = $1;
360 chomp $c;
361 push @cc, $c;
362 printf("(sob) Adding cc: %s from line '%s'\n",
363 $c, $_) unless $quiet;
367 close F;
368 if (defined $author_not_sender) {
369 $message = "From: $author_not_sender\n\n$message";
372 $cc = join(", ", unique_email_list(@cc));
374 send_message();
376 # set up for the next message
377 if ($chain_reply_to || length($reply_to) == 0) {
378 $reply_to = $message_id;
380 make_message_id();
383 if ($compose) {
384 cleanup_compose_files();
387 sub cleanup_compose_files() {
388 unlink($compose_filename, $compose_filename . ".final");
394 sub unique_email_list(@) {
395 my %seen;
396 my @emails;
398 foreach my $entry (@_) {
399 my $clean = Email::Valid->address($entry);
400 next if $seen{$clean}++;
401 push @emails, $entry;
403 return @emails;