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 --identity The configuration identity, a subsection to prioritise over
79 --smtp-server If set, specifies the outgoing SMTP server to use.
80 Defaults to localhost. Port number can be specified here with
81 hostname:port format or by using --smtp-server-port option.
83 --smtp-server-port Specify a port on the outgoing SMTP server to connect to.
85 --smtp-user The username for SMTP-AUTH.
87 --smtp-pass The password for SMTP-AUTH.
89 --smtp-ssl If set, connects to the SMTP server using SSL.
91 --suppress-from Suppress sending emails to yourself if your address
92 appears in a From: line. Defaults to off.
94 --thread Specify that the "In-Reply-To:" header should be set on all
95 emails. Defaults to on.
97 --quiet Make git-send-email less verbose. One line per email
98 should be all that is output.
100 --dry-run Do everything except actually send the emails.
102 --envelope-sender Specify the envelope sender used to send the emails.
108 # most mail servers generate the Date: header, but not all...
109 sub format_2822_time
{
111 my @localtm = localtime($time);
112 my @gmttm = gmtime($time);
113 my $localmin = $localtm[1] + $localtm[2] * 60;
114 my $gmtmin = $gmttm[1] + $gmttm[2] * 60;
115 if ($localtm[0] != $gmttm[0]) {
116 die "local zone differs from GMT by a non-minute interval\n";
118 if ((($gmttm[6] + 1) % 7) == $localtm[6]) {
120 } elsif ((($gmttm[6] - 1) % 7) == $localtm[6]) {
122 } elsif ($gmttm[6] != $localtm[6]) {
123 die "local time offset greater than or equal to 24 hours\n";
125 my $offset = $localmin - $gmtmin;
126 my $offhour = $offset / 60;
127 my $offmin = abs($offset % 60);
128 if (abs($offhour) >= 24) {
129 die ("local time offset greater than or equal to 24 hours\n");
132 return sprintf("%s, %2d %s %d %02d:%02d:%02d %s%02d%02d",
133 qw(Sun Mon Tue Wed Thu Fri Sat)[$localtm[6]],
135 qw(Jan Feb Mar Apr May Jun
136 Jul Aug Sep Oct Nov Dec)[$localtm[4]],
141 ($offset >= 0) ?
'+' : '-',
147 my $have_email_valid = eval { require Email
::Valid
; 1 };
150 sub unique_email_list
(@
);
151 sub cleanup_compose_files
();
153 # Constants (essentially)
154 my $compose_filename = ".msg.$$";
156 # Variables we fill in automatically, or via prompting:
157 my (@to,@cc,@initial_cc,@bcclist,@xh,
158 $initial_reply_to,$initial_subject,@files,$author,$sender,$compose,$time);
163 #$initial_reply_to = ''; #<20050203173208.GA23964@foobar.com>';
165 my $repo = Git
->repository();
167 new Term
::ReadLine
'git-send-email';
170 $term = new FakeTerm
"$@: going non-interactive";
173 # Behavior modification variables
174 my ($quiet, $dry_run) = (0, 0);
176 # Variables with corresponding config settings
177 my ($thread, $chain_reply_to, $suppress_from, $signed_off_cc, $cc_cmd);
178 my ($smtp_server, $smtp_server_port, $smtp_authuser, $smtp_authpass, $smtp_ssl);
179 my ($identity, $aliasfiletype, @alias_files, @smtp_host_parts);
181 my %config_bool_settings = (
182 "thread" => [\
$thread, 1],
183 "chainreplyto" => [\
$chain_reply_to, 1],
184 "suppressfrom" => [\
$suppress_from, 0],
185 "signedoffcc" => [\
$signed_off_cc, 1],
186 "smtpssl" => [\
$smtp_ssl, 0],
189 my %config_settings = (
190 "smtpserver" => \
$smtp_server,
191 "smtpserverport" => \
$smtp_server_port,
192 "smtpuser" => \
$smtp_authuser,
193 "smtppass" => \
$smtp_authpass,
195 "aliasfiletype" => \
$aliasfiletype,
197 "aliasesfile" => \
@alias_files,
200 # Begin by accumulating all the variables (defined above), that we will end up
201 # needing, first, from the command line:
203 my $rc = GetOptions
("sender|from=s" => \
$sender,
204 "in-reply-to=s" => \
$initial_reply_to,
205 "subject=s" => \
$initial_subject,
207 "cc=s" => \
@initial_cc,
208 "bcc=s" => \
@bcclist,
209 "chain-reply-to!" => \
$chain_reply_to,
210 "smtp-server=s" => \
$smtp_server,
211 "smtp-server-port=s" => \
$smtp_server_port,
212 "smtp-user=s" => \
$smtp_authuser,
213 "smtp-pass=s" => \
$smtp_authpass,
214 "smtp-ssl!" => \
$smtp_ssl,
215 "identity=s" => \
$identity,
216 "compose" => \
$compose,
218 "cc-cmd=s" => \
$cc_cmd,
219 "suppress-from!" => \
$suppress_from,
220 "signed-off-cc|signed-off-by-cc!" => \
$signed_off_cc,
221 "dry-run" => \
$dry_run,
222 "envelope-sender=s" => \
$envelope_sender,
223 "thread!" => \
$thread,
230 # Now, let's fill any that aren't set in with defaults:
235 foreach my $setting (keys %config_bool_settings) {
236 my $target = $config_bool_settings{$setting}->[0];
237 $$target = $repo->config_bool("$prefix.$setting") unless (defined $$target);
240 foreach my $setting (keys %config_settings) {
241 my $target = $config_settings{$setting};
242 if (ref($target) eq "ARRAY") {
244 my @values = $repo->config("$prefix.$setting");
245 @
$target = @values if (@values && defined $values[0]);
249 $$target = $repo->config("$prefix.$setting") unless (defined $$target);
254 # read configuration from [sendemail "$identity"], fall back on [sendemail]
255 $identity = $repo->config("sendemail.identity") unless (defined $identity);
256 read_config
("sendemail.$identity") if (defined $identity);
257 read_config
("sendemail");
259 # fall back on builtin bool defaults
260 foreach my $setting (values %config_bool_settings) {
261 ${$setting->[0]} = $setting->[1] unless (defined (${$setting->[0]}));
264 my ($repoauthor) = $repo->ident_person('author');
265 my ($repocommitter) = $repo->ident_person('committer');
267 # Verify the user input
269 foreach my $entry (@to) {
270 die "Comma in --to entry: $entry'\n" unless $entry !~ m/,/;
273 foreach my $entry (@initial_cc) {
274 die "Comma in --cc entry: $entry'\n" unless $entry !~ m/,/;
277 foreach my $entry (@bcclist) {
278 die "Comma in --bcclist entry: $entry'\n" unless $entry !~ m/,/;
283 # multiline formats can be supported in the future
284 mutt
=> sub { my $fh = shift; while (<$fh>) {
285 if (/^\s*alias\s+(\S+)\s+(.*)$/) {
286 my ($alias, $addr) = ($1, $2);
287 $addr =~ s/#.*$//; # mutt allows # comments
288 # commas delimit multiple addresses
289 $aliases{$alias} = [ split(/\s*,\s*/, $addr) ];
291 mailrc
=> sub { my $fh = shift; while (<$fh>) {
292 if (/^alias\s+(\S+)\s+(.*)$/) {
293 # spaces delimit multiple addresses
294 $aliases{$1} = [ split(/\s+/, $2) ];
296 pine
=> sub { my $fh = shift; while (<$fh>) {
297 if (/^(\S+)\t.*\t(.*)$/) {
298 $aliases{$1} = [ split(/\s*,\s*/, $2) ];
300 gnus
=> sub { my $fh = shift; while (<$fh>) {
301 if (/\(define-mail-alias\s+"(\S+?)"\s+"(\S+?)"\)/) {
302 $aliases{$1} = [ $2 ];
306 if (@alias_files and $aliasfiletype and defined $parse_alias{$aliasfiletype}) {
307 foreach my $file (@alias_files) {
308 open my $fh, '<', $file or die "opening $file: $!\n";
309 $parse_alias{$aliasfiletype}->($fh);
314 ($sender) = expand_aliases
($sender) if defined $sender;
317 if (!defined $sender) {
318 $sender = $repoauthor || $repocommitter;
320 $_ = $term->readline("Who should the emails appear to be from? [$sender] ");
321 } while (!defined $_);
323 $sender = $_ if ($_);
324 print "Emails will be sent from: ", $sender, "\n";
330 $_ = $term->readline("Who should the emails be sent to? ",
332 } while (!defined $_);
334 push @to, split /,/, $to;
343 @cur = map { $aliases{$_} ? @
{$aliases{$_}} : $_ } @last;
344 } while (join(',',@cur) ne join(',',@last));
348 @to = expand_aliases
(@to);
349 @to = (map { sanitize_address
($_) } @to);
350 @initial_cc = expand_aliases
(@initial_cc);
351 @bcclist = expand_aliases
(@bcclist);
353 if (!defined $initial_subject && $compose) {
355 $_ = $term->readline("What subject should the emails start with? ",
357 } while (!defined $_);
358 $initial_subject = $_;
362 if ($thread && !defined $initial_reply_to && $prompting) {
364 $_= $term->readline("Message-ID to be used as In-Reply-To for the first email? ",
366 } while (!defined $_);
368 $initial_reply_to = $_;
369 $initial_reply_to =~ s/^\s+<?/</;
370 $initial_reply_to =~ s/>?\s+$/>/;
373 if (!defined $smtp_server) {
374 foreach (qw( /usr/sbin/sendmail /usr/lib/sendmail )) {
380 $smtp_server ||= 'localhost'; # could be 127.0.0.1, too... *shrug*
384 # Note that this does not need to be secure, but we will make a small
385 # effort to have it be unique
386 open(C
,">",$compose_filename)
387 or die "Failed to open for writing $compose_filename: $!";
388 print C
"From $sender # This line is ignored.\n";
389 printf C
"Subject: %s\n\n", $initial_subject;
391 GIT: Please enter your email below.
392 GIT: Lines beginning in "GIT: " will be removed.
393 GIT: Consider including an overall diffstat or table of contents
394 GIT: for the patch you are writing.
399 my $editor = $ENV{GIT_EDITOR
} || $repo->config("core.editor") || $ENV{VISUAL
} || $ENV{EDITOR
} || "vi";
400 system($editor, $compose_filename);
402 open(C2
,">",$compose_filename . ".final")
403 or die "Failed to open $compose_filename.final : " . $!;
405 open(C
,"<",$compose_filename)
406 or die "Failed to open $compose_filename : " . $!;
416 $_ = $term->readline("Send this email? (y|n) ");
417 } while (!defined $_);
419 if (uc substr($_,0,1) ne 'Y') {
420 cleanup_compose_files
();
424 @files = ($compose_filename . ".final");
428 # Now that all the defaults are set, process the rest of the command line
429 # arguments and collect up the files that need to be processed.
433 or die "Failed to opendir $f: $!";
435 push @files, grep { -f
$_ } map { +$f . "/" . $_ }
442 print STDERR
"Skipping $f - not found.\n";
448 print $_,"\n" for (@files);
451 print STDERR
"\nNo patch files specified!\n\n";
455 # Variables we set as part of the loop over files
456 our ($message_id, %mail, $subject, $reply_to, $references, $message);
458 sub extract_valid_address
{
460 my $local_part_regexp = '[^<>"\s@]+';
461 my $domain_regexp = '[^.<>"\s@]+(?:\.[^.<>"\s@]+)+';
463 # check for a local address:
464 return $address if ($address =~ /^($local_part_regexp)$/);
466 $address =~ s/^\s*<(.*)>\s*$/$1/;
467 if ($have_email_valid) {
468 return scalar Email
::Valid
->address($address);
470 # less robust/correct than the monster regexp in Email::Valid,
471 # but still does a 99% job, and one less dependency
472 $address =~ /($local_part_regexp\@$domain_regexp)/;
477 # Usually don't need to change anything below here.
479 # we make a "fake" message id by taking the current number
480 # of seconds since the beginning of Unix time and tacking on
481 # a random number to the end, in case we are called quicker than
482 # 1 second since the last time we were called.
484 # We'll setup a template for the message id, using the "from" address:
486 my ($message_id_stamp, $message_id_serial);
490 if (!defined $message_id_stamp) {
491 $message_id_stamp = sprintf("%s-%s", time, $$);
492 $message_id_serial = 0;
494 $message_id_serial++;
495 $uniq = "$message_id_stamp-$message_id_serial";
498 for ($sender, $repocommitter, $repoauthor) {
499 $du_part = extract_valid_address
(sanitize_address
($_));
500 last if (defined $du_part and $du_part ne '');
502 if (not defined $du_part or $du_part eq '') {
503 use Sys
::Hostname
qw();
504 $du_part = 'user@' . Sys
::Hostname
::hostname
();
506 my $message_id_template = "<%s-git-send-email-%s>";
507 $message_id = sprintf($message_id_template, $uniq, $du_part);
508 #print "new message id = $message_id\n"; # Was useful for debugging
513 $time = time - scalar $#files;
515 sub unquote_rfc2047
{
517 if (s/=\?utf-8\?q\?(.*)\?=/$1/g) {
519 s/=([0-9A-F]{2})/chr(hex($1))/eg;
524 # use the simplest quoting being able to handle the recipient
527 my ($recipient) = @_;
528 my ($recipient_name, $recipient_addr) = ($recipient =~ /^(.*?)\s*(<.*)/);
530 if (not $recipient_name) {
534 # if recipient_name is already quoted, do nothing
535 if ($recipient_name =~ /^(".*"|=\?utf-8\?q\?.*\?=)$/) {
539 # rfc2047 is needed if a non-ascii char is included
540 if ($recipient_name =~ /[^[:ascii:]]/) {
541 $recipient_name =~ s/([^-a-zA-Z0-9!*+\/])/sprintf
("=%02X", ord($1))/eg
;
542 $recipient_name =~ s/(.*)/=\?utf-8\?q\?$1\?=/;
545 # double quotes are needed if specials or CTLs are included
546 elsif ($recipient_name =~ /[][()<>@,;:\\".\000-\037\177]/) {
547 $recipient_name =~ s/(["\\\r])/\\$1/;
548 $recipient_name = "\"$recipient_name\"";
551 return "$recipient_name $recipient_addr";
557 my @recipients = unique_email_list
(@to);
558 @cc = (map { sanitize_address
($_) } @cc);
559 my $to = join (",\n\t", @recipients);
560 @recipients = unique_email_list
(@recipients,@cc,@bcclist);
561 @recipients = (map { extract_valid_address
($_) } @recipients);
562 my $date = format_2822_time
($time++);
563 my $gitversion = '@@GIT_VERSION@@';
564 if ($gitversion =~ m/..GIT_VERSION../) {
565 $gitversion = Git
::version
();
568 my $cc = join(", ", unique_email_list
(@cc));
571 $ccline = "\nCc: $cc";
573 my $sanitized_sender = sanitize_address
($sender);
576 my $header = "From: $sanitized_sender
580 Message-Id: $message_id
581 X-Mailer: git-send-email $gitversion
583 if ($thread && $reply_to) {
585 $header .= "In-Reply-To: $reply_to\n";
586 $header .= "References: $references\n";
589 $header .= join("\n", @xh) . "\n";
592 my @sendmail_parameters = ('-i', @recipients);
593 my $raw_from = $sanitized_sender;
594 $raw_from = $envelope_sender if (defined $envelope_sender);
595 $raw_from = extract_valid_address
($raw_from);
596 unshift (@sendmail_parameters,
597 '-f', $raw_from) if(defined $envelope_sender);
600 # We don't want to send the email.
601 } elsif ($smtp_server =~ m
#^/#) {
602 my $pid = open my $sm, '|-';
603 defined $pid or die $!;
605 exec($smtp_server, @sendmail_parameters) or die $!;
607 print $sm "$header\n$message";
611 if (!defined $smtp_server) {
612 die "The required SMTP server is not properly defined."
616 $smtp_server_port ||= 465; # ssmtp
617 require Net
::SMTP
::SSL
;
618 $smtp ||= Net
::SMTP
::SSL
->new($smtp_server, Port
=> $smtp_server_port);
622 $smtp ||= Net
::SMTP
->new((defined $smtp_server_port)
623 ?
"$smtp_server:$smtp_server_port"
628 die "Unable to initialize SMTP properly. Is there something wrong with your config?";
631 if ((defined $smtp_authuser) && (defined $smtp_authpass)) {
632 $smtp->auth( $smtp_authuser, $smtp_authpass ) or die $smtp->message;
634 $smtp->mail( $raw_from ) or die $smtp->message;
635 $smtp->to( @recipients ) or die $smtp->message;
636 $smtp->data or die $smtp->message;
637 $smtp->datasend("$header\n$message") or die $smtp->message;
638 $smtp->dataend() or die $smtp->message;
639 $smtp->ok or die "Failed to send $subject\n".$smtp->message;
642 printf (($dry_run ?
"Dry-" : "")."Sent %s\n", $subject);
644 print (($dry_run ?
"Dry-" : "")."OK. Log says:\nDate: $date\n");
645 if ($smtp_server !~ m
#^/#) {
646 print "Server: $smtp_server\n";
647 print "MAIL FROM:<$raw_from>\n";
648 print "RCPT TO:".join(',',(map { "<$_>" } @recipients))."\n";
650 print "Sendmail: $smtp_server ".join(' ',@sendmail_parameters)."\n";
652 print "From: $sanitized_sender\nSubject: $subject\nCc: $cc\nTo: $to\n\n";
654 print "Result: ", $smtp->code, ' ',
655 ($smtp->message =~ /\n([^\n]+\n)$/s), "\n";
657 print "Result: OK\n";
662 $reply_to = $initial_reply_to;
663 $references = $initial_reply_to || '';
664 $subject = $initial_subject;
666 foreach my $t (@files) {
667 open(F
,"<",$t) or die "can't open file $t";
672 my $input_format = undef;
678 $input_format = 'mbox';
682 if (!defined $input_format && /^[-A-Za-z]+:\s/) {
683 $input_format = 'mbox';
686 if (defined $input_format && $input_format eq 'mbox') {
687 if (/^Subject:\s+(.*)$/) {
690 } elsif (/^(Cc|From):\s+(.*)$/) {
691 if (unquote_rfc2047
($2) eq $sender) {
692 next if ($suppress_from);
694 elsif ($1 eq 'From') {
695 $author = unquote_rfc2047
($2);
697 printf("(mbox) Adding cc: %s from line '%s'\n",
698 $2, $_) unless $quiet;
701 elsif (!/^Date:\s/ && /^[-A-Za-z]+:\s+\S/) {
707 # "send lots of email" format,
710 # So let's support that, too.
711 $input_format = 'lots';
713 printf("(non-mbox) Adding cc: %s from line '%s'\n",
714 $_, $_) unless $quiet;
718 } elsif (!defined $subject) {
723 # A whitespace line will terminate the headers
729 if (/^(Signed-off-by|Cc): (.*)$/i && $signed_off_cc) {
733 printf("(sob) Adding cc: %s from line '%s'\n",
734 $c, $_) unless $quiet;
740 if (defined $cc_cmd) {
741 open(F
, "$cc_cmd $t |")
742 or die "(cc-cmd) Could not execute '$cc_cmd'";
748 printf("(cc-cmd) Adding cc: %s from: '%s'\n",
749 $c, $cc_cmd) unless $quiet;
752 or die "(cc-cmd) failed to close pipe to '$cc_cmd'";
755 if (defined $author) {
756 $message = "From: $author\n\n$message";
761 # set up for the next message
762 if ($chain_reply_to || !defined $reply_to || length($reply_to) == 0) {
763 $reply_to = $message_id;
764 if (length $references > 0) {
765 $references .= "\n $message_id";
767 $references = "$message_id";
773 cleanup_compose_files
();
776 sub cleanup_compose_files
() {
777 unlink($compose_filename, $compose_filename . ".final");
781 $smtp->quit if $smtp;
783 sub unique_email_list
(@
) {
787 foreach my $entry (@_) {
788 if (my $clean = extract_valid_address
($entry)) {
790 next if $seen{$clean}++;
791 push @emails, $entry;
793 print STDERR
"W: unable to extract a valid address",