Ensure clean addresses are always used with Net::SMTP
[git/gitweb.git] / git-send-email.perl
blob35c4722a15baca61b78d04fd74a446ff63200819
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 Getopt::Long;
23 use Data::Dumper;
24 use Git;
26 package FakeTerm;
27 sub new {
28 my ($class, $reason) = @_;
29 return bless \$reason, shift;
31 sub readline {
32 my $self = shift;
33 die "Cannot use readline on FakeTerm: $$self";
35 package main;
38 sub usage {
39 print <<EOT;
40 git-send-email [options] <file | directory>...
41 Options:
42 --from Specify the "From:" line of the email to be sent.
44 --to Specify the primary "To:" line of the email.
46 --cc Specify an initial "Cc:" list for the entire series
47 of emails.
49 --bcc Specify a list of email addresses that should be Bcc:
50 on all the emails.
52 --compose Use \$EDITOR to edit an introductory message for the
53 patch series.
55 --subject Specify the initial "Subject:" line.
56 Only necessary if --compose is also set. If --compose
57 is not set, this will be prompted for.
59 --in-reply-to Specify the first "In-Reply-To:" header line.
60 Only used if --compose is also set. If --compose is not
61 set, this will be prompted for.
63 --chain-reply-to If set, the replies will all be to the previous
64 email sent, rather than to the first email sent.
65 Defaults to on.
67 --no-signed-off-cc Suppress the automatic addition of email addresses
68 that appear in Signed-off-by: or Cc: lines to the cc:
69 list. Note: Using this option is not recommended.
71 --smtp-server If set, specifies the outgoing SMTP server to use.
72 Defaults to localhost.
74 --suppress-from Suppress sending emails to yourself if your address
75 appears in a From: line.
77 --quiet Make git-send-email less verbose. One line per email
78 should be all that is output.
80 --dry-run Do everything except actually send the emails.
82 EOT
83 exit(1);
86 # most mail servers generate the Date: header, but not all...
87 sub format_2822_time {
88 my ($time) = @_;
89 my @localtm = localtime($time);
90 my @gmttm = gmtime($time);
91 my $localmin = $localtm[1] + $localtm[2] * 60;
92 my $gmtmin = $gmttm[1] + $gmttm[2] * 60;
93 if ($localtm[0] != $gmttm[0]) {
94 die "local zone differs from GMT by a non-minute interval\n";
96 if ((($gmttm[6] + 1) % 7) == $localtm[6]) {
97 $localmin += 1440;
98 } elsif ((($gmttm[6] - 1) % 7) == $localtm[6]) {
99 $localmin -= 1440;
100 } elsif ($gmttm[6] != $localtm[6]) {
101 die "local time offset greater than or equal to 24 hours\n";
103 my $offset = $localmin - $gmtmin;
104 my $offhour = $offset / 60;
105 my $offmin = abs($offset % 60);
106 if (abs($offhour) >= 24) {
107 die ("local time offset greater than or equal to 24 hours\n");
110 return sprintf("%s, %2d %s %d %02d:%02d:%02d %s%02d%02d",
111 qw(Sun Mon Tue Wed Thu Fri Sat)[$localtm[6]],
112 $localtm[3],
113 qw(Jan Feb Mar Apr May Jun
114 Jul Aug Sep Oct Nov Dec)[$localtm[4]],
115 $localtm[5]+1900,
116 $localtm[2],
117 $localtm[1],
118 $localtm[0],
119 ($offset >= 0) ? '+' : '-',
120 abs($offhour),
121 $offmin,
125 my $have_email_valid = eval { require Email::Valid; 1 };
126 my $smtp;
128 sub unique_email_list(@);
129 sub cleanup_compose_files();
131 # Constants (essentially)
132 my $compose_filename = ".msg.$$";
134 # Variables we fill in automatically, or via prompting:
135 my (@to,@cc,@initial_cc,@bcclist,@xh,
136 $initial_reply_to,$initial_subject,@files,$from,$compose,$time);
138 # Behavior modification variables
139 my ($chain_reply_to, $quiet, $suppress_from, $no_signed_off_cc,
140 $dry_run) = (1, 0, 0, 0, 0);
141 my $smtp_server;
143 # Example reply to:
144 #$initial_reply_to = ''; #<20050203173208.GA23964@foobar.com>';
146 my $repo = Git->repository();
147 my $term = eval {
148 new Term::ReadLine 'git-send-email';
150 if ($@) {
151 $term = new FakeTerm "$@: going non-interactive";
154 my $def_chain = $repo->config_boolean('sendemail.chainreplyto');
155 if ($def_chain and $def_chain eq 'false') {
156 $chain_reply_to = 0;
159 @bcclist = $repo->config('sendemail.bcc');
160 if (!@bcclist or !$bcclist[0]) {
161 @bcclist = ();
164 # Begin by accumulating all the variables (defined above), that we will end up
165 # needing, first, from the command line:
167 my $rc = GetOptions("from=s" => \$from,
168 "in-reply-to=s" => \$initial_reply_to,
169 "subject=s" => \$initial_subject,
170 "to=s" => \@to,
171 "cc=s" => \@initial_cc,
172 "bcc=s" => \@bcclist,
173 "chain-reply-to!" => \$chain_reply_to,
174 "smtp-server=s" => \$smtp_server,
175 "compose" => \$compose,
176 "quiet" => \$quiet,
177 "suppress-from" => \$suppress_from,
178 "no-signed-off-cc|no-signed-off-by-cc" => \$no_signed_off_cc,
179 "dry-run" => \$dry_run,
182 unless ($rc) {
183 usage();
186 # Verify the user input
188 foreach my $entry (@to) {
189 die "Comma in --to entry: $entry'\n" unless $entry !~ m/,/;
192 foreach my $entry (@initial_cc) {
193 die "Comma in --cc entry: $entry'\n" unless $entry !~ m/,/;
196 foreach my $entry (@bcclist) {
197 die "Comma in --bcclist entry: $entry'\n" unless $entry !~ m/,/;
200 # Now, let's fill any that aren't set in with defaults:
202 my ($author) = $repo->ident_person('author');
203 my ($committer) = $repo->ident_person('committer');
205 my %aliases;
206 my @alias_files = $repo->config('sendemail.aliasesfile');
207 my $aliasfiletype = $repo->config('sendemail.aliasfiletype');
208 my %parse_alias = (
209 # multiline formats can be supported in the future
210 mutt => sub { my $fh = shift; while (<$fh>) {
211 if (/^alias\s+(\S+)\s+(.*)$/) {
212 my ($alias, $addr) = ($1, $2);
213 $addr =~ s/#.*$//; # mutt allows # comments
214 # commas delimit multiple addresses
215 $aliases{$alias} = [ split(/\s*,\s*/, $addr) ];
216 }}},
217 mailrc => sub { my $fh = shift; while (<$fh>) {
218 if (/^alias\s+(\S+)\s+(.*)$/) {
219 # spaces delimit multiple addresses
220 $aliases{$1} = [ split(/\s+/, $2) ];
221 }}},
222 pine => sub { my $fh = shift; while (<$fh>) {
223 if (/^(\S+)\s+(.*)$/) {
224 $aliases{$1} = [ split(/\s*,\s*/, $2) ];
225 }}},
226 gnus => sub { my $fh = shift; while (<$fh>) {
227 if (/\(define-mail-alias\s+"(\S+?)"\s+"(\S+?)"\)/) {
228 $aliases{$1} = [ $2 ];
232 if (@alias_files and $aliasfiletype and defined $parse_alias{$aliasfiletype}) {
233 foreach my $file (@alias_files) {
234 open my $fh, '<', $file or die "opening $file: $!\n";
235 $parse_alias{$aliasfiletype}->($fh);
236 close $fh;
240 my $prompting = 0;
241 if (!defined $from) {
242 $from = $author || $committer;
243 do {
244 $_ = $term->readline("Who should the emails appear to be from? [$from] ");
245 } while (!defined $_);
247 $from = $_ if ($_);
248 print "Emails will be sent from: ", $from, "\n";
249 $prompting++;
252 if (!@to) {
253 do {
254 $_ = $term->readline("Who should the emails be sent to? ",
255 "");
256 } while (!defined $_);
257 my $to = $_;
258 push @to, split /,/, $to;
259 $prompting++;
262 sub expand_aliases {
263 my @cur = @_;
264 my @last;
265 do {
266 @last = @cur;
267 @cur = map { $aliases{$_} ? @{$aliases{$_}} : $_ } @last;
268 } while (join(',',@cur) ne join(',',@last));
269 return @cur;
272 @to = expand_aliases(@to);
273 @initial_cc = expand_aliases(@initial_cc);
274 @bcclist = expand_aliases(@bcclist);
276 if (!defined $initial_subject && $compose) {
277 do {
278 $_ = $term->readline("What subject should the emails start with? ",
279 $initial_subject);
280 } while (!defined $_);
281 $initial_subject = $_;
282 $prompting++;
285 if (!defined $initial_reply_to && $prompting) {
286 do {
287 $_= $term->readline("Message-ID to be used as In-Reply-To for the first email? ",
288 $initial_reply_to);
289 } while (!defined $_);
291 $initial_reply_to = $_;
292 $initial_reply_to =~ s/(^\s+|\s+$)//g;
295 if (!$smtp_server) {
296 $smtp_server = $repo->config('sendemail.smtpserver');
298 if (!$smtp_server) {
299 foreach (qw( /usr/sbin/sendmail /usr/lib/sendmail )) {
300 if (-x $_) {
301 $smtp_server = $_;
302 last;
305 $smtp_server ||= 'localhost'; # could be 127.0.0.1, too... *shrug*
308 if ($compose) {
309 # Note that this does not need to be secure, but we will make a small
310 # effort to have it be unique
311 open(C,">",$compose_filename)
312 or die "Failed to open for writing $compose_filename: $!";
313 print C "From $from # This line is ignored.\n";
314 printf C "Subject: %s\n\n", $initial_subject;
315 printf C <<EOT;
316 GIT: Please enter your email below.
317 GIT: Lines beginning in "GIT: " will be removed.
318 GIT: Consider including an overall diffstat or table of contents
319 GIT: for the patch you are writing.
322 close(C);
324 my $editor = $ENV{EDITOR};
325 $editor = 'vi' unless defined $editor;
326 system($editor, $compose_filename);
328 open(C2,">",$compose_filename . ".final")
329 or die "Failed to open $compose_filename.final : " . $!;
331 open(C,"<",$compose_filename)
332 or die "Failed to open $compose_filename : " . $!;
334 while(<C>) {
335 next if m/^GIT: /;
336 print C2 $_;
338 close(C);
339 close(C2);
341 do {
342 $_ = $term->readline("Send this email? (y|n) ");
343 } while (!defined $_);
345 if (uc substr($_,0,1) ne 'Y') {
346 cleanup_compose_files();
347 exit(0);
350 @files = ($compose_filename . ".final");
354 # Now that all the defaults are set, process the rest of the command line
355 # arguments and collect up the files that need to be processed.
356 for my $f (@ARGV) {
357 if (-d $f) {
358 opendir(DH,$f)
359 or die "Failed to opendir $f: $!";
361 push @files, grep { -f $_ } map { +$f . "/" . $_ }
362 sort readdir(DH);
364 } elsif (-f $f) {
365 push @files, $f;
367 } else {
368 print STDERR "Skipping $f - not found.\n";
372 if (@files) {
373 unless ($quiet) {
374 print $_,"\n" for (@files);
376 } else {
377 print STDERR "\nNo patch files specified!\n\n";
378 usage();
381 # Variables we set as part of the loop over files
382 our ($message_id, %mail, $subject, $reply_to, $references, $message);
384 sub extract_valid_address {
385 my $address = shift;
386 my $local_part_regexp = '[^<>"\s@]+';
387 my $domain_regexp = '[^.<>"\s@]+(?:\.[^.<>"\s@]+)+';
389 # check for a local address:
390 return $address if ($address =~ /^($local_part_regexp)$/);
392 if ($have_email_valid) {
393 return scalar Email::Valid->address($address);
394 } else {
395 # less robust/correct than the monster regexp in Email::Valid,
396 # but still does a 99% job, and one less dependency
397 $address =~ /($local_part_regexp\@$domain_regexp)/;
398 return $1;
402 # Usually don't need to change anything below here.
404 # we make a "fake" message id by taking the current number
405 # of seconds since the beginning of Unix time and tacking on
406 # a random number to the end, in case we are called quicker than
407 # 1 second since the last time we were called.
409 # We'll setup a template for the message id, using the "from" address:
410 my $message_id_from = extract_valid_address($from);
411 my $message_id_template = "<%s-git-send-email-$message_id_from>";
413 sub make_message_id
415 my $date = time;
416 my $pseudo_rand = int (rand(4200));
417 $message_id = sprintf $message_id_template, "$date$pseudo_rand";
418 #print "new message id = $message_id\n"; # Was useful for debugging
423 $time = time - scalar $#files;
425 sub unquote_rfc2047 {
426 local ($_) = @_;
427 if (s/=\?utf-8\?q\?(.*)\?=/$1/g) {
428 s/_/ /g;
429 s/=([0-9A-F]{2})/chr(hex($1))/eg;
431 return "$_";
434 # If an address contains a . in the name portion, the name must be quoted.
435 sub sanitize_address_rfc822
437 my ($recipient) = @_;
438 my ($recipient_name) = ($recipient =~ /^(.*?)\s+</);
439 if ($recipient_name && $recipient_name =~ /\./ && $recipient_name !~ /^".*"$/) {
440 my ($name, $addr) = ($recipient =~ /^(.*?)(\s+<.*)/);
441 $recipient = "\"$name\"$addr";
443 return $recipient;
446 sub send_message
448 my @recipients = unique_email_list(@to);
449 @cc = (map { sanitize_address_rfc822($_) } @cc);
450 my $to = join (",\n\t", @recipients);
451 @recipients = unique_email_list(@recipients,@cc,@bcclist);
452 @recipients = (map { extract_valid_address($_) } @recipients);
453 my $date = format_2822_time($time++);
454 my $gitversion = '@@GIT_VERSION@@';
455 if ($gitversion =~ m/..GIT_VERSION../) {
456 $gitversion = Git::version();
459 my $cc = join(", ", unique_email_list(@cc));
460 $from = sanitize_address_rfc822($from);
461 my $header = "From: $from
462 To: $to
463 Cc: $cc
464 Subject: $subject
465 Date: $date
466 Message-Id: $message_id
467 X-Mailer: git-send-email $gitversion
469 if ($reply_to) {
471 $header .= "In-Reply-To: $reply_to\n";
472 $header .= "References: $references\n";
474 if (@xh) {
475 $header .= join("\n", @xh) . "\n";
478 my @sendmail_parameters = ('-i', @recipients);
479 my $raw_from = extract_valid_address($from);
481 if ($dry_run) {
482 # We don't want to send the email.
483 } elsif ($smtp_server =~ m#^/#) {
484 my $pid = open my $sm, '|-';
485 defined $pid or die $!;
486 if (!$pid) {
487 exec($smtp_server, @sendmail_parameters) or die $!;
489 print $sm "$header\n$message";
490 close $sm or die $?;
491 } else {
492 require Net::SMTP;
493 $smtp ||= Net::SMTP->new( $smtp_server );
494 $smtp->mail( $raw_from ) or die $smtp->message;
495 $smtp->to( @recipients ) or die $smtp->message;
496 $smtp->data or die $smtp->message;
497 $smtp->datasend("$header\n$message") or die $smtp->message;
498 $smtp->dataend() or die $smtp->message;
499 $smtp->ok or die "Failed to send $subject\n".$smtp->message;
501 if ($quiet) {
502 printf (($dry_run ? "Dry-" : "")."Sent %s\n", $subject);
503 } else {
504 print (($dry_run ? "Dry-" : "")."OK. Log says:\nDate: $date\n");
505 if ($smtp_server !~ m#^/#) {
506 print "Server: $smtp_server\n";
507 print "MAIL FROM:<$raw_from>\n";
508 print "RCPT TO:".join(',',(map { "<$_>" } @recipients))."\n";
509 } else {
510 print "Sendmail: $smtp_server ".join(' ',@sendmail_parameters)."\n";
512 print "From: $from\nSubject: $subject\nCc: $cc\nTo: $to\n\n";
513 if ($smtp) {
514 print "Result: ", $smtp->code, ' ',
515 ($smtp->message =~ /\n([^\n]+\n)$/s), "\n";
516 } else {
517 print "Result: OK\n";
522 $reply_to = $initial_reply_to;
523 $references = $initial_reply_to || '';
524 make_message_id();
525 $subject = $initial_subject;
527 foreach my $t (@files) {
528 open(F,"<",$t) or die "can't open file $t";
530 my $author_not_sender = undef;
531 @cc = @initial_cc;
532 @xh = ();
533 my $input_format = undef;
534 my $header_done = 0;
535 $message = "";
536 while(<F>) {
537 if (!$header_done) {
538 if (/^From /) {
539 $input_format = 'mbox';
540 next;
542 chomp;
543 if (!defined $input_format && /^[-A-Za-z]+:\s/) {
544 $input_format = 'mbox';
547 if (defined $input_format && $input_format eq 'mbox') {
548 if (/^Subject:\s+(.*)$/) {
549 $subject = $1;
551 } elsif (/^(Cc|From):\s+(.*)$/) {
552 if ($2 eq $from) {
553 next if ($suppress_from);
555 elsif ($1 eq 'From') {
556 $author_not_sender = $2;
558 printf("(mbox) Adding cc: %s from line '%s'\n",
559 $2, $_) unless $quiet;
560 push @cc, $2;
562 elsif (!/^Date:\s/ && /^[-A-Za-z]+:\s+\S/) {
563 push @xh, $_;
566 } else {
567 # In the traditional
568 # "send lots of email" format,
569 # line 1 = cc
570 # line 2 = subject
571 # So let's support that, too.
572 $input_format = 'lots';
573 if (@cc == 0) {
574 printf("(non-mbox) Adding cc: %s from line '%s'\n",
575 $_, $_) unless $quiet;
577 push @cc, $_;
579 } elsif (!defined $subject) {
580 $subject = $_;
584 # A whitespace line will terminate the headers
585 if (m/^\s*$/) {
586 $header_done = 1;
588 } else {
589 $message .= $_;
590 if (/^(Signed-off-by|Cc): (.*)$/i && !$no_signed_off_cc) {
591 my $c = $2;
592 chomp $c;
593 push @cc, $c;
594 printf("(sob) Adding cc: %s from line '%s'\n",
595 $c, $_) unless $quiet;
599 close F;
600 if (defined $author_not_sender) {
601 $author_not_sender = unquote_rfc2047($author_not_sender);
602 $message = "From: $author_not_sender\n\n$message";
606 send_message();
608 # set up for the next message
609 if ($chain_reply_to || !defined $reply_to || length($reply_to) == 0) {
610 $reply_to = $message_id;
611 if (length $references > 0) {
612 $references .= "\n $message_id";
613 } else {
614 $references = "$message_id";
617 make_message_id();
620 if ($compose) {
621 cleanup_compose_files();
624 sub cleanup_compose_files() {
625 unlink($compose_filename, $compose_filename . ".final");
629 $smtp->quit if $smtp;
631 sub unique_email_list(@) {
632 my %seen;
633 my @emails;
635 foreach my $entry (@_) {
636 if (my $clean = extract_valid_address($entry)) {
637 $seen{$clean} ||= 0;
638 next if $seen{$clean}++;
639 push @emails, $entry;
640 } else {
641 print STDERR "W: unable to extract a valid address",
642 " from: $entry\n";
645 return @emails;