3 # Copyright 2002,2005 Greg Kroah-Hartman <greg@kroah.com>
4 # Copyright 2005 Ryan Anderson <ryan@michonline.com>
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.
27 $SIG{INT
} = sub { print color
("reset"), "\n"; exit };
31 my ($class, $reason) = @_;
32 return bless \
$reason, shift;
36 die "Cannot use readline on FakeTerm: $$self";
43 git-send-email [options] <file | directory>...
45 --from Specify the "From:" line of the email to be sent.
47 --to Specify the primary "To:" line of the email.
49 --cc Specify an initial "Cc:" list for the entire series
52 --cc-cmd Specify a command to execute per file which adds
53 per file specific cc address entries
55 --bcc Specify a list of email addresses that should be Bcc:
58 --compose Use \$GIT_EDITOR, core.editor, \$EDITOR, or \$VISUAL to edit
59 an introductory message for the patch series.
61 --subject Specify the initial "Subject:" line.
62 Only necessary if --compose is also set. If --compose
63 is not set, this will be prompted for.
65 --in-reply-to Specify the first "In-Reply-To:" header line.
66 Only used if --compose is also set. If --compose is not
67 set, this will be prompted for.
69 --chain-reply-to If set, the replies will all be to the previous
70 email sent, rather than to the first email sent.
73 --signed-off-cc Automatically add email addresses that appear in
74 Signed-off-by: or Cc: lines to the cc: list. Defaults to on.
76 --smtp-server If set, specifies the outgoing SMTP server to use.
77 Defaults to localhost.
79 --suppress-from Suppress sending emails to yourself if your address
80 appears in a From: line. Defaults to off.
82 --thread Specify that the "In-Reply-To:" header should be set on all
83 emails. Defaults to on.
85 --quiet Make git-send-email less verbose. One line per email
86 should be all that is output.
88 --dry-run Do everything except actually send the emails.
90 --envelope-sender Specify the envelope sender used to send the emails.
96 # most mail servers generate the Date: header, but not all...
97 sub format_2822_time
{
99 my @localtm = localtime($time);
100 my @gmttm = gmtime($time);
101 my $localmin = $localtm[1] + $localtm[2] * 60;
102 my $gmtmin = $gmttm[1] + $gmttm[2] * 60;
103 if ($localtm[0] != $gmttm[0]) {
104 die "local zone differs from GMT by a non-minute interval\n";
106 if ((($gmttm[6] + 1) % 7) == $localtm[6]) {
108 } elsif ((($gmttm[6] - 1) % 7) == $localtm[6]) {
110 } elsif ($gmttm[6] != $localtm[6]) {
111 die "local time offset greater than or equal to 24 hours\n";
113 my $offset = $localmin - $gmtmin;
114 my $offhour = $offset / 60;
115 my $offmin = abs($offset % 60);
116 if (abs($offhour) >= 24) {
117 die ("local time offset greater than or equal to 24 hours\n");
120 return sprintf("%s, %2d %s %d %02d:%02d:%02d %s%02d%02d",
121 qw(Sun Mon Tue Wed Thu Fri Sat)[$localtm[6]],
123 qw(Jan Feb Mar Apr May Jun
124 Jul Aug Sep Oct Nov Dec)[$localtm[4]],
129 ($offset >= 0) ?
'+' : '-',
135 my $have_email_valid = eval { require Email
::Valid
; 1 };
138 sub unique_email_list
(@
);
139 sub cleanup_compose_files
();
141 # Constants (essentially)
142 my $compose_filename = ".msg.$$";
144 # Variables we fill in automatically, or via prompting:
145 my (@to,@cc,@initial_cc,@bcclist,@xh,
146 $initial_reply_to,$initial_subject,@files,$author,$sender,$compose,$time);
152 #$initial_reply_to = ''; #<20050203173208.GA23964@foobar.com>';
154 my $repo = Git
->repository();
156 new Term
::ReadLine
'git-send-email';
159 $term = new FakeTerm
"$@: going non-interactive";
162 # Behavior modification variables
163 my ($quiet, $dry_run) = (0, 0);
165 # Variables with corresponding config settings
166 my ($thread, $chain_reply_to, $suppress_from, $signed_off_cc, $cc_cmd);
168 my %config_settings = (
169 "thread" => [\
$thread, 1],
170 "chainreplyto" => [\
$chain_reply_to, 1],
171 "suppressfrom" => [\
$suppress_from, 0],
172 "signedoffcc" => [\
$signed_off_cc, 1],
173 "cccmd" => [\
$cc_cmd, ""],
176 foreach my $setting (keys %config_settings) {
177 my $config = $repo->config_bool("sendemail.$setting");
178 ${$config_settings{$setting}->[0]} = (defined $config) ?
$config : $config_settings{$setting}->[1];
181 @bcclist = $repo->config('sendemail.bcc');
182 if (!@bcclist or !$bcclist[0]) {
186 # Begin by accumulating all the variables (defined above), that we will end up
187 # needing, first, from the command line:
189 my $rc = GetOptions
("sender|from=s" => \
$sender,
190 "in-reply-to=s" => \
$initial_reply_to,
191 "subject=s" => \
$initial_subject,
193 "cc=s" => \
@initial_cc,
194 "bcc=s" => \
@bcclist,
195 "chain-reply-to!" => \
$chain_reply_to,
196 "smtp-server=s" => \
$smtp_server,
197 "compose" => \
$compose,
199 "cc-cmd=s" => \
$cc_cmd,
200 "suppress-from!" => \
$suppress_from,
201 "signed-off-cc|signed-off-by-cc!" => \
$signed_off_cc,
202 "dry-run" => \
$dry_run,
203 "envelope-sender=s" => \
$envelope_sender,
204 "thread!" => \
$thread,
211 # Verify the user input
213 foreach my $entry (@to) {
214 die "Comma in --to entry: $entry'\n" unless $entry !~ m/,/;
217 foreach my $entry (@initial_cc) {
218 die "Comma in --cc entry: $entry'\n" unless $entry !~ m/,/;
221 foreach my $entry (@bcclist) {
222 die "Comma in --bcclist entry: $entry'\n" unless $entry !~ m/,/;
225 # Now, let's fill any that aren't set in with defaults:
227 my ($repoauthor) = $repo->ident_person('author');
228 my ($repocommitter) = $repo->ident_person('committer');
231 my @alias_files = $repo->config('sendemail.aliasesfile');
232 my $aliasfiletype = $repo->config('sendemail.aliasfiletype');
234 # multiline formats can be supported in the future
235 mutt
=> sub { my $fh = shift; while (<$fh>) {
236 if (/^\s*alias\s+(\S+)\s+(.*)$/) {
237 my ($alias, $addr) = ($1, $2);
238 $addr =~ s/#.*$//; # mutt allows # comments
239 # commas delimit multiple addresses
240 $aliases{$alias} = [ split(/\s*,\s*/, $addr) ];
242 mailrc
=> sub { my $fh = shift; while (<$fh>) {
243 if (/^alias\s+(\S+)\s+(.*)$/) {
244 # spaces delimit multiple addresses
245 $aliases{$1} = [ split(/\s+/, $2) ];
247 pine
=> sub { my $fh = shift; while (<$fh>) {
248 if (/^(\S+)\t.*\t(.*)$/) {
249 $aliases{$1} = [ split(/\s*,\s*/, $2) ];
251 gnus
=> sub { my $fh = shift; while (<$fh>) {
252 if (/\(define-mail-alias\s+"(\S+?)"\s+"(\S+?)"\)/) {
253 $aliases{$1} = [ $2 ];
257 if (@alias_files and $aliasfiletype and defined $parse_alias{$aliasfiletype}) {
258 foreach my $file (@alias_files) {
259 open my $fh, '<', $file or die "opening $file: $!\n";
260 $parse_alias{$aliasfiletype}->($fh);
265 ($sender) = expand_aliases
($sender) if defined $sender;
268 if (!defined $sender) {
269 $sender = $repoauthor || $repocommitter;
271 $_ = $term->readline("Who should the emails appear to be from? [$sender] ");
272 } while (!defined $_);
274 $sender = $_ if ($_);
275 print "Emails will be sent from: ", $sender, "\n";
281 $_ = $term->readline("Who should the emails be sent to? ",
283 } while (!defined $_);
285 push @to, split /,/, $to;
294 @cur = map { $aliases{$_} ? @
{$aliases{$_}} : $_ } @last;
295 } while (join(',',@cur) ne join(',',@last));
299 @to = expand_aliases
(@to);
300 @to = (map { sanitize_address
($_) } @to);
301 @initial_cc = expand_aliases
(@initial_cc);
302 @bcclist = expand_aliases
(@bcclist);
304 if (!defined $initial_subject && $compose) {
306 $_ = $term->readline("What subject should the emails start with? ",
308 } while (!defined $_);
309 $initial_subject = $_;
313 if ($thread && !defined $initial_reply_to && $prompting) {
315 $_= $term->readline("Message-ID to be used as In-Reply-To for the first email? ",
317 } while (!defined $_);
319 $initial_reply_to = $_;
320 $initial_reply_to =~ s/^\s+<?/</;
321 $initial_reply_to =~ s/>?\s+$/>/;
325 $smtp_server = $repo->config('sendemail.smtpserver');
328 foreach (qw( /usr/sbin/sendmail /usr/lib/sendmail )) {
334 $smtp_server ||= 'localhost'; # could be 127.0.0.1, too... *shrug*
338 # Note that this does not need to be secure, but we will make a small
339 # effort to have it be unique
340 open(C
,">",$compose_filename)
341 or die "Failed to open for writing $compose_filename: $!";
342 print C
"From $sender # This line is ignored.\n";
343 printf C
"Subject: %s\n\n", $initial_subject;
345 GIT: Please enter your email below.
346 GIT: Lines beginning in "GIT: " will be removed.
347 GIT: Consider including an overall diffstat or table of contents
348 GIT: for the patch you are writing.
353 my $editor = $ENV{GIT_EDITOR
} || $repo->config("core.editor") || $ENV{VISUAL
} || $ENV{EDITOR
} || "vi";
354 system($editor, $compose_filename);
356 open(C2
,">",$compose_filename . ".final")
357 or die "Failed to open $compose_filename.final : " . $!;
359 open(C
,"<",$compose_filename)
360 or die "Failed to open $compose_filename : " . $!;
370 $_ = $term->readline("Send this email? (y|n) ");
371 } while (!defined $_);
373 if (uc substr($_,0,1) ne 'Y') {
374 cleanup_compose_files
();
378 @files = ($compose_filename . ".final");
382 # Now that all the defaults are set, process the rest of the command line
383 # arguments and collect up the files that need to be processed.
387 or die "Failed to opendir $f: $!";
389 push @files, grep { -f
$_ } map { +$f . "/" . $_ }
396 print STDERR
"Skipping $f - not found.\n";
402 print $_,"\n" for (@files);
405 print STDERR
"\nNo patch files specified!\n\n";
409 # Variables we set as part of the loop over files
410 our ($message_id, %mail, $subject, $reply_to, $references, $message);
412 sub extract_valid_address
{
414 my $local_part_regexp = '[^<>"\s@]+';
415 my $domain_regexp = '[^.<>"\s@]+(?:\.[^.<>"\s@]+)+';
417 # check for a local address:
418 return $address if ($address =~ /^($local_part_regexp)$/);
420 $address =~ s/^\s*<(.*)>\s*$/$1/;
421 if ($have_email_valid) {
422 return scalar Email
::Valid
->address($address);
424 # less robust/correct than the monster regexp in Email::Valid,
425 # but still does a 99% job, and one less dependency
426 $address =~ /($local_part_regexp\@$domain_regexp)/;
431 # Usually don't need to change anything below here.
433 # we make a "fake" message id by taking the current number
434 # of seconds since the beginning of Unix time and tacking on
435 # a random number to the end, in case we are called quicker than
436 # 1 second since the last time we were called.
438 # We'll setup a template for the message id, using the "from" address:
443 my $pseudo_rand = int (rand(4200));
445 for ($sender, $repocommitter, $repoauthor) {
446 $du_part = extract_valid_address
(sanitize_address
($_));
447 last if (defined $du_part and $du_part ne '');
449 if (not defined $du_part or $du_part eq '') {
450 use Sys
::Hostname
qw();
451 $du_part = 'user@' . Sys
::Hostname
::hostname
();
453 my $message_id_template = "<%s-git-send-email-$du_part>";
454 $message_id = sprintf $message_id_template, "$date$pseudo_rand";
455 #print "new message id = $message_id\n"; # Was useful for debugging
460 $time = time - scalar $#files;
462 sub unquote_rfc2047
{
464 if (s/=\?utf-8\?q\?(.*)\?=/$1/g) {
466 s/=([0-9A-F]{2})/chr(hex($1))/eg;
471 # use the simplest quoting being able to handle the recipient
474 my ($recipient) = @_;
475 my ($recipient_name, $recipient_addr) = ($recipient =~ /^(.*?)\s*(<.*)/);
477 if (not $recipient_name) {
481 # if recipient_name is already quoted, do nothing
482 if ($recipient_name =~ /^(".*"|=\?utf-8\?q\?.*\?=)$/) {
486 # rfc2047 is needed if a non-ascii char is included
487 if ($recipient_name =~ /[^[:ascii:]]/) {
488 $recipient_name =~ s/([^-a-zA-Z0-9!*+\/])/sprintf
("=%02X", ord($1))/eg
;
489 $recipient_name =~ s/(.*)/=\?utf-8\?q\?$1\?=/;
492 # double quotes are needed if specials or CTLs are included
493 elsif ($recipient_name =~ /[][()<>@,;:\\".\000-\037\177]/) {
494 $recipient_name =~ s/(["\\\r])/\\$1/;
495 $recipient_name = "\"$recipient_name\"";
498 return "$recipient_name $recipient_addr";
504 my @recipients = unique_email_list
(@to);
505 @cc = (map { sanitize_address
($_) } @cc);
506 my $to = join (",\n\t", @recipients);
507 @recipients = unique_email_list
(@recipients,@cc,@bcclist);
508 @recipients = (map { extract_valid_address
($_) } @recipients);
509 my $date = format_2822_time
($time++);
510 my $gitversion = '@@GIT_VERSION@@';
511 if ($gitversion =~ m/..GIT_VERSION../) {
512 $gitversion = Git
::version
();
515 my $cc = join(", ", unique_email_list
(@cc));
518 $ccline = "\nCc: $cc";
520 my $sanitized_sender = sanitize_address
($sender);
523 my $header = "From: $sanitized_sender
527 Message-Id: $message_id
528 X-Mailer: git-send-email $gitversion
530 if ($thread && $reply_to) {
532 $header .= "In-Reply-To: $reply_to\n";
533 $header .= "References: $references\n";
536 $header .= join("\n", @xh) . "\n";
539 my @sendmail_parameters = ('-i', @recipients);
540 my $raw_from = $sanitized_sender;
541 $raw_from = $envelope_sender if (defined $envelope_sender);
542 $raw_from = extract_valid_address
($raw_from);
543 unshift (@sendmail_parameters,
544 '-f', $raw_from) if(defined $envelope_sender);
547 # We don't want to send the email.
548 } elsif ($smtp_server =~ m
#^/#) {
549 my $pid = open my $sm, '|-';
550 defined $pid or die $!;
552 exec($smtp_server, @sendmail_parameters) or die $!;
554 print $sm "$header\n$message";
558 $smtp ||= Net
::SMTP
->new( $smtp_server );
559 $smtp->mail( $raw_from ) or die $smtp->message;
560 $smtp->to( @recipients ) or die $smtp->message;
561 $smtp->data or die $smtp->message;
562 $smtp->datasend("$header\n$message") or die $smtp->message;
563 $smtp->dataend() or die $smtp->message;
564 $smtp->ok or die "Failed to send $subject\n".$smtp->message;
567 printf (($dry_run ?
"Dry-" : "")."Sent %s\n", $subject);
569 print (($dry_run ?
"Dry-" : "")."OK. Log says:\nDate: $date\n");
570 if ($smtp_server !~ m
#^/#) {
571 print "Server: $smtp_server\n";
572 print "MAIL FROM:<$raw_from>\n";
573 print "RCPT TO:".join(',',(map { "<$_>" } @recipients))."\n";
575 print "Sendmail: $smtp_server ".join(' ',@sendmail_parameters)."\n";
577 print "From: $sanitized_sender\nSubject: $subject\nCc: $cc\nTo: $to\n\n";
579 print "Result: ", $smtp->code, ' ',
580 ($smtp->message =~ /\n([^\n]+\n)$/s), "\n";
582 print "Result: OK\n";
587 $reply_to = $initial_reply_to;
588 $references = $initial_reply_to || '';
589 $subject = $initial_subject;
591 foreach my $t (@files) {
592 open(F
,"<",$t) or die "can't open file $t";
597 my $input_format = undef;
603 $input_format = 'mbox';
607 if (!defined $input_format && /^[-A-Za-z]+:\s/) {
608 $input_format = 'mbox';
611 if (defined $input_format && $input_format eq 'mbox') {
612 if (/^Subject:\s+(.*)$/) {
615 } elsif (/^(Cc|From):\s+(.*)$/) {
616 if (unquote_rfc2047
($2) eq $sender) {
617 next if ($suppress_from);
619 elsif ($1 eq 'From') {
620 $author = unquote_rfc2047
($2);
622 printf("(mbox) Adding cc: %s from line '%s'\n",
623 $2, $_) unless $quiet;
626 elsif (!/^Date:\s/ && /^[-A-Za-z]+:\s+\S/) {
632 # "send lots of email" format,
635 # So let's support that, too.
636 $input_format = 'lots';
638 printf("(non-mbox) Adding cc: %s from line '%s'\n",
639 $_, $_) unless $quiet;
643 } elsif (!defined $subject) {
648 # A whitespace line will terminate the headers
654 if (/^(Signed-off-by|Cc): (.*)$/i && $signed_off_cc) {
658 printf("(sob) Adding cc: %s from line '%s'\n",
659 $c, $_) unless $quiet;
666 open(F
, "$cc_cmd $t |")
667 or die "(cc-cmd) Could not execute '$cc_cmd'";
673 printf("(cc-cmd) Adding cc: %s from: '%s'\n",
674 $c, $cc_cmd) unless $quiet;
677 or die "(cc-cmd) failed to close pipe to '$cc_cmd'";
680 if (defined $author) {
681 $message = "From: $author\n\n$message";
686 # set up for the next message
687 if ($chain_reply_to || !defined $reply_to || length($reply_to) == 0) {
688 $reply_to = $message_id;
689 if (length $references > 0) {
690 $references .= "\n $message_id";
692 $references = "$message_id";
698 cleanup_compose_files
();
701 sub cleanup_compose_files
() {
702 unlink($compose_filename, $compose_filename . ".final");
706 $smtp->quit if $smtp;
708 sub unique_email_list
(@
) {
712 foreach my $entry (@_) {
713 if (my $clean = extract_valid_address
($entry)) {
715 next if $seen{$clean}++;
716 push @emails, $entry;
718 print STDERR
"W: unable to extract a valid address",