Code

git-send-email: real name with period need to be dq-quoted on From: line
[git.git] / git-send-email.perl
1 #!/usr/bin/perl -w
2 #
3 # Copyright 2002,2005 Greg Kroah-Hartman <greg@kroah.com>
4 # Copyright 2005 Ryan Anderson <ryan@michonline.com>
5 #
6 # GPL v2 (See COPYING)
7 #
8 # Ported to support git "mbox" format files by Ryan Anderson <ryan@michonline.com>
9 #
10 # Sends a collection of emails to the given email addresses, disturbingly fast.
11 #
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.
17 #
19 use strict;
20 use warnings;
21 use Term::ReadLine;
22 use Getopt::Long;
23 use Data::Dumper;
24 use Git;
26 package FakeTerm;
27 sub new {
28         my ($class, $reason) = @_;
29         return bless \$reason, shift;
30 }
31 sub readline {
32         my $self = shift;
33         die "Cannot use readline on FakeTerm: $$self";
34 }
35 package main;
37 # most mail servers generate the Date: header, but not all...
38 sub format_2822_time {
39         my ($time) = @_;
40         my @localtm = localtime($time);
41         my @gmttm = gmtime($time);
42         my $localmin = $localtm[1] + $localtm[2] * 60;
43         my $gmtmin = $gmttm[1] + $gmttm[2] * 60;
44         if ($localtm[0] != $gmttm[0]) {
45                 die "local zone differs from GMT by a non-minute interval\n";
46         }
47         if ((($gmttm[6] + 1) % 7) == $localtm[6]) {
48                 $localmin += 1440;
49         } elsif ((($gmttm[6] - 1) % 7) == $localtm[6]) {
50                 $localmin -= 1440;
51         } elsif ($gmttm[6] != $localtm[6]) {
52                 die "local time offset greater than or equal to 24 hours\n";
53         }
54         my $offset = $localmin - $gmtmin;
55         my $offhour = $offset / 60;
56         my $offmin = abs($offset % 60);
57         if (abs($offhour) >= 24) {
58                 die ("local time offset greater than or equal to 24 hours\n");
59         }
61         return sprintf("%s, %2d %s %d %02d:%02d:%02d %s%02d%02d",
62                        qw(Sun Mon Tue Wed Thu Fri Sat)[$localtm[6]],
63                        $localtm[3],
64                        qw(Jan Feb Mar Apr May Jun
65                           Jul Aug Sep Oct Nov Dec)[$localtm[4]],
66                        $localtm[5]+1900,
67                        $localtm[2],
68                        $localtm[1],
69                        $localtm[0],
70                        ($offset >= 0) ? '+' : '-',
71                        abs($offhour),
72                        $offmin,
73                        );
74 }
76 my $have_email_valid = eval { require Email::Valid; 1 };
77 my $smtp;
79 sub unique_email_list(@);
80 sub cleanup_compose_files();
82 # Constants (essentially)
83 my $compose_filename = ".msg.$$";
85 # Variables we fill in automatically, or via prompting:
86 my (@to,@cc,@initial_cc,@bcclist,@xh,
87         $initial_reply_to,$initial_subject,@files,$from,$compose,$time);
89 # Behavior modification variables
90 my ($chain_reply_to, $quiet, $suppress_from, $no_signed_off_cc) = (1, 0, 0, 0);
91 my $smtp_server;
93 # Example reply to:
94 #$initial_reply_to = ''; #<20050203173208.GA23964@foobar.com>';
96 my $repo = Git->repository();
97 my $term = eval {
98         new Term::ReadLine 'git-send-email';
99 };
100 if ($@) {
101         $term = new FakeTerm "$@: going non-interactive";
104 # Begin by accumulating all the variables (defined above), that we will end up
105 # needing, first, from the command line:
107 my $rc = GetOptions("from=s" => \$from,
108                     "in-reply-to=s" => \$initial_reply_to,
109                     "subject=s" => \$initial_subject,
110                     "to=s" => \@to,
111                     "cc=s" => \@initial_cc,
112                     "bcc=s" => \@bcclist,
113                     "chain-reply-to!" => \$chain_reply_to,
114                     "smtp-server=s" => \$smtp_server,
115                     "compose" => \$compose,
116                     "quiet" => \$quiet,
117                     "suppress-from" => \$suppress_from,
118                     "no-signed-off-cc|no-signed-off-by-cc" => \$no_signed_off_cc,
119          );
121 # Verify the user input
123 foreach my $entry (@to) {
124         die "Comma in --to entry: $entry'\n" unless $entry !~ m/,/;
127 foreach my $entry (@initial_cc) {
128         die "Comma in --cc entry: $entry'\n" unless $entry !~ m/,/;
131 foreach my $entry (@bcclist) {
132         die "Comma in --bcclist entry: $entry'\n" unless $entry !~ m/,/;
135 # Now, let's fill any that aren't set in with defaults:
137 my ($author) = $repo->ident_person('author');
138 my ($committer) = $repo->ident_person('committer');
140 my %aliases;
141 my @alias_files = $repo->config('sendemail.aliasesfile');
142 my $aliasfiletype = $repo->config('sendemail.aliasfiletype');
143 my %parse_alias = (
144         # multiline formats can be supported in the future
145         mutt => sub { my $fh = shift; while (<$fh>) {
146                 if (/^alias\s+(\S+)\s+(.*)$/) {
147                         my ($alias, $addr) = ($1, $2);
148                         $addr =~ s/#.*$//; # mutt allows # comments
149                          # commas delimit multiple addresses
150                         $aliases{$alias} = [ split(/\s*,\s*/, $addr) ];
151                 }}},
152         mailrc => sub { my $fh = shift; while (<$fh>) {
153                 if (/^alias\s+(\S+)\s+(.*)$/) {
154                         # spaces delimit multiple addresses
155                         $aliases{$1} = [ split(/\s+/, $2) ];
156                 }}},
157         pine => sub { my $fh = shift; while (<$fh>) {
158                 if (/^(\S+)\s+(.*)$/) {
159                         $aliases{$1} = [ split(/\s*,\s*/, $2) ];
160                 }}},
161         gnus => sub { my $fh = shift; while (<$fh>) {
162                 if (/\(define-mail-alias\s+"(\S+?)"\s+"(\S+?)"\)/) {
163                         $aliases{$1} = [ $2 ];
164                 }}}
165 );
167 if (@alias_files and $aliasfiletype and defined $parse_alias{$aliasfiletype}) {
168         foreach my $file (@alias_files) {
169                 open my $fh, '<', $file or die "opening $file: $!\n";
170                 $parse_alias{$aliasfiletype}->($fh);
171                 close $fh;
172         }
175 my $prompting = 0;
176 if (!defined $from) {
177         $from = $author || $committer;
178         do {
179                 $_ = $term->readline("Who should the emails appear to be from? ",
180                         $from);
181         } while (!defined $_);
183         $from = $_;
184         print "Emails will be sent from: ", $from, "\n";
185         $prompting++;
188 if (!@to) {
189         do {
190                 $_ = $term->readline("Who should the emails be sent to? ",
191                                 "");
192         } while (!defined $_);
193         my $to = $_;
194         push @to, split /,/, $to;
195         $prompting++;
198 sub expand_aliases {
199         my @cur = @_;
200         my @last;
201         do {
202                 @last = @cur;
203                 @cur = map { $aliases{$_} ? @{$aliases{$_}} : $_ } @last;
204         } while (join(',',@cur) ne join(',',@last));
205         return @cur;
208 @to = expand_aliases(@to);
209 @initial_cc = expand_aliases(@initial_cc);
210 @bcclist = expand_aliases(@bcclist);
212 if (!defined $initial_subject && $compose) {
213         do {
214                 $_ = $term->readline("What subject should the emails start with? ",
215                         $initial_subject);
216         } while (!defined $_);
217         $initial_subject = $_;
218         $prompting++;
221 if (!defined $initial_reply_to && $prompting) {
222         do {
223                 $_= $term->readline("Message-ID to be used as In-Reply-To for the first email? ",
224                         $initial_reply_to);
225         } while (!defined $_);
227         $initial_reply_to = $_;
228         $initial_reply_to =~ s/(^\s+|\s+$)//g;
231 if (!$smtp_server) {
232         foreach (qw( /usr/sbin/sendmail /usr/lib/sendmail )) {
233                 if (-x $_) {
234                         $smtp_server = $_;
235                         last;
236                 }
237         }
238         $smtp_server ||= 'localhost'; # could be 127.0.0.1, too... *shrug*
241 if ($compose) {
242         # Note that this does not need to be secure, but we will make a small
243         # effort to have it be unique
244         open(C,">",$compose_filename)
245                 or die "Failed to open for writing $compose_filename: $!";
246         print C "From $from # This line is ignored.\n";
247         printf C "Subject: %s\n\n", $initial_subject;
248         printf C <<EOT;
249 GIT: Please enter your email below.
250 GIT: Lines beginning in "GIT: " will be removed.
251 GIT: Consider including an overall diffstat or table of contents
252 GIT: for the patch you are writing.
254 EOT
255         close(C);
257         my $editor = $ENV{EDITOR};
258         $editor = 'vi' unless defined $editor;
259         system($editor, $compose_filename);
261         open(C2,">",$compose_filename . ".final")
262                 or die "Failed to open $compose_filename.final : " . $!;
264         open(C,"<",$compose_filename)
265                 or die "Failed to open $compose_filename : " . $!;
267         while(<C>) {
268                 next if m/^GIT: /;
269                 print C2 $_;
270         }
271         close(C);
272         close(C2);
274         do {
275                 $_ = $term->readline("Send this email? (y|n) ");
276         } while (!defined $_);
278         if (uc substr($_,0,1) ne 'Y') {
279                 cleanup_compose_files();
280                 exit(0);
281         }
283         @files = ($compose_filename . ".final");
287 # Now that all the defaults are set, process the rest of the command line
288 # arguments and collect up the files that need to be processed.
289 for my $f (@ARGV) {
290         if (-d $f) {
291                 opendir(DH,$f)
292                         or die "Failed to opendir $f: $!";
294                 push @files, grep { -f $_ } map { +$f . "/" . $_ }
295                                 sort readdir(DH);
297         } elsif (-f $f) {
298                 push @files, $f;
300         } else {
301                 print STDERR "Skipping $f - not found.\n";
302         }
305 if (@files) {
306         unless ($quiet) {
307                 print $_,"\n" for (@files);
308         }
309 } else {
310         print <<EOT;
311 git-send-email [options] <file | directory> [... file | directory ]
312 Options:
313    --from         Specify the "From:" line of the email to be sent.
315    --to           Specify the primary "To:" line of the email.
317    --cc           Specify an initial "Cc:" list for the entire series
318                   of emails.
320    --bcc          Specify a list of email addresses that should be Bcc:
321                   on all the emails.
323    --compose      Use \$EDITOR to edit an introductory message for the
324                   patch series.
326    --subject      Specify the initial "Subject:" line.
327                   Only necessary if --compose is also set.  If --compose
328                   is not set, this will be prompted for.
330    --in-reply-to  Specify the first "In-Reply-To:" header line.
331                   Only used if --compose is also set.  If --compose is not
332                   set, this will be prompted for.
334    --chain-reply-to If set, the replies will all be to the previous
335                   email sent, rather than to the first email sent.
336                   Defaults to on.
338    --no-signed-off-cc Suppress the automatic addition of email addresses
339                  that appear in a Signed-off-by: line, to the cc: list.
340                  Note: Using this option is not recommended.
342    --smtp-server  If set, specifies the outgoing SMTP server to use.
343                   Defaults to localhost.
345   --suppress-from Suppress sending emails to yourself if your address
346                   appears in a From: line.
348    --quiet      Make git-send-email less verbose.  One line per email should be
349                 all that is output.
351 Error: Please specify a file or a directory on the command line.
352 EOT
353         exit(1);
356 # Variables we set as part of the loop over files
357 our ($message_id, $cc, %mail, $subject, $reply_to, $references, $message);
359 sub extract_valid_address {
360         my $address = shift;
361         my $local_part_regexp = '[^<>"\s@]+';
362         my $domain_regexp = '[^.<>"\s@]+(?:\.[^.<>"\s@]+)+';
364         # check for a local address:
365         return $address if ($address =~ /^($local_part_regexp)$/);
367         if ($have_email_valid) {
368                 return scalar Email::Valid->address($address);
369         } else {
370                 # less robust/correct than the monster regexp in Email::Valid,
371                 # but still does a 99% job, and one less dependency
372                 $address =~ /($local_part_regexp\@$domain_regexp)/;
373                 return $1;
374         }
377 # Usually don't need to change anything below here.
379 # we make a "fake" message id by taking the current number
380 # of seconds since the beginning of Unix time and tacking on
381 # a random number to the end, in case we are called quicker than
382 # 1 second since the last time we were called.
384 # We'll setup a template for the message id, using the "from" address:
385 my $message_id_from = extract_valid_address($from);
386 my $message_id_template = "<%s-git-send-email-$message_id_from>";
388 sub make_message_id
390         my $date = time;
391         my $pseudo_rand = int (rand(4200));
392         $message_id = sprintf $message_id_template, "$date$pseudo_rand";
393         #print "new message id = $message_id\n"; # Was useful for debugging
398 $cc = "";
399 $time = time - scalar $#files;
401 sub send_message
403         my @recipients = unique_email_list(@to);
404         my $to = join (",\n\t", @recipients);
405         @recipients = unique_email_list(@recipients,@cc,@bcclist);
406         my $date = format_2822_time($time++);
407         my $gitversion = '@@GIT_VERSION@@';
408         if ($gitversion =~ m/..GIT_VERSION../) {
409             $gitversion = Git::version();
410         }
412         my ($author_name) = ($from =~ /^(.*?)\s+</);
413         if ($author_name =~ /\./ && $author_name !~ /^".*"$/) {
414                 my ($name, $addr) = ($from =~ /^(.*?)(\s+<.*)/);
415                 $from = "\"$name\"$addr";
416         }
417         my $header = "From: $from
418 To: $to
419 Cc: $cc
420 Subject: $subject
421 Date: $date
422 Message-Id: $message_id
423 X-Mailer: git-send-email $gitversion
424 ";
425         if ($reply_to) {
427                 $header .= "In-Reply-To: $reply_to\n";
428                 $header .= "References: $references\n";
429         }
430         if (@xh) {
431                 $header .= join("\n", @xh) . "\n";
432         }
434         if ($smtp_server =~ m#^/#) {
435                 my $pid = open my $sm, '|-';
436                 defined $pid or die $!;
437                 if (!$pid) {
438                         exec($smtp_server,'-i',
439                              map { extract_valid_address($_) }
440                              @recipients) or die $!;
441                 }
442                 print $sm "$header\n$message";
443                 close $sm or die $?;
444         } else {
445                 require Net::SMTP;
446                 $smtp ||= Net::SMTP->new( $smtp_server );
447                 $smtp->mail( $from ) or die $smtp->message;
448                 $smtp->to( @recipients ) or die $smtp->message;
449                 $smtp->data or die $smtp->message;
450                 $smtp->datasend("$header\n$message") or die $smtp->message;
451                 $smtp->dataend() or die $smtp->message;
452                 $smtp->ok or die "Failed to send $subject\n".$smtp->message;
453         }
454         if ($quiet) {
455                 printf "Sent %s\n", $subject;
456         } else {
457                 print "OK. Log says:\nDate: $date\n";
458                 if ($smtp) {
459                         print "Server: $smtp_server\n";
460                 } else {
461                         print "Sendmail: $smtp_server\n";
462                 }
463                 print "From: $from\nSubject: $subject\nCc: $cc\nTo: $to\n\n";
464                 if ($smtp) {
465                         print "Result: ", $smtp->code, ' ',
466                                 ($smtp->message =~ /\n([^\n]+\n)$/s), "\n";
467                 } else {
468                         print "Result: OK\n";
469                 }
470         }
473 $reply_to = $initial_reply_to;
474 $references = $initial_reply_to || '';
475 make_message_id();
476 $subject = $initial_subject;
478 foreach my $t (@files) {
479         open(F,"<",$t) or die "can't open file $t";
481         my $author_not_sender = undef;
482         @cc = @initial_cc;
483         @xh = ();
484         my $found_mbox = 0;
485         my $header_done = 0;
486         $message = "";
487         while(<F>) {
488                 if (!$header_done) {
489                         $found_mbox = 1, next if (/^From /);
490                         chomp;
492                         if ($found_mbox) {
493                                 if (/^Subject:\s+(.*)$/) {
494                                         $subject = $1;
496                                 } elsif (/^(Cc|From):\s+(.*)$/) {
497                                         if ($2 eq $from) {
498                                                 next if ($suppress_from);
499                                         }
500                                         elsif ($1 eq 'From') {
501                                                 $author_not_sender = $2;
502                                         }
503                                         printf("(mbox) Adding cc: %s from line '%s'\n",
504                                                 $2, $_) unless $quiet;
505                                         push @cc, $2;
506                                 }
507                                 elsif (/^[-A-Za-z]+:\s+\S/) {
508                                         push @xh, $_;
509                                 }
511                         } else {
512                                 # In the traditional
513                                 # "send lots of email" format,
514                                 # line 1 = cc
515                                 # line 2 = subject
516                                 # So let's support that, too.
517                                 if (@cc == 0) {
518                                         printf("(non-mbox) Adding cc: %s from line '%s'\n",
519                                                 $_, $_) unless $quiet;
521                                         push @cc, $_;
523                                 } elsif (!defined $subject) {
524                                         $subject = $_;
525                                 }
526                         }
528                         # A whitespace line will terminate the headers
529                         if (m/^\s*$/) {
530                                 $header_done = 1;
531                         }
532                 } else {
533                         $message .=  $_;
534                         if (/^Signed-off-by: (.*)$/i && !$no_signed_off_cc) {
535                                 my $c = $1;
536                                 chomp $c;
537                                 push @cc, $c;
538                                 printf("(sob) Adding cc: %s from line '%s'\n",
539                                         $c, $_) unless $quiet;
540                         }
541                 }
542         }
543         close F;
544         if (defined $author_not_sender) {
545                 $message = "From: $author_not_sender\n\n$message";
546         }
548         $cc = join(", ", unique_email_list(@cc));
550         send_message();
552         # set up for the next message
553         if ($chain_reply_to || !defined $reply_to || length($reply_to) == 0) {
554                 $reply_to = $message_id;
555                 if (length $references > 0) {
556                         $references .= " $message_id";
557                 } else {
558                         $references = "$message_id";
559                 }
560         }
561         make_message_id();
564 if ($compose) {
565         cleanup_compose_files();
568 sub cleanup_compose_files() {
569         unlink($compose_filename, $compose_filename . ".final");
573 $smtp->quit if $smtp;
575 sub unique_email_list(@) {
576         my %seen;
577         my @emails;
579         foreach my $entry (@_) {
580                 if (my $clean = extract_valid_address($entry)) {
581                         $seen{$clean} ||= 0;
582                         next if $seen{$clean}++;
583                         push @emails, $entry;
584                 } else {
585                         print STDERR "W: unable to extract a valid address",
586                                         " from: $entry\n";
587                 }
588         }
589         return @emails;