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.
26 use File
::Temp qw
/ tempdir tempfile /;
30 Getopt
::Long
::Configure qw
/ pass_through /;
34 my ($class, $reason) = @_;
35 return bless \
$reason, shift;
39 die "Cannot use readline on FakeTerm: $$self";
46 git send-email [options] <file | directory | rev-list options >
49 --from <str> * Email From:
50 --to <str> * Email To:
51 --cc <str> * Email Cc:
52 --bcc <str> * Email Bcc:
53 --subject <str> * Email "Subject:"
54 --in-reply-to <str> * Email "In-Reply-To:"
55 --annotate * Review each patch that will be sent in an editor.
56 --compose * Open an editor for introduction.
59 --envelope-sender <str> * Email envelope sender.
60 --smtp-server <str:int> * Outgoing SMTP server to use. The port
61 is optional. Default 'localhost'.
62 --smtp-server-port <int> * Outgoing SMTP server port.
63 --smtp-user <str> * Username for SMTP-AUTH.
64 --smtp-pass <str> * Password for SMTP-AUTH; not necessary.
65 --smtp-encryption <str> * tls or ssl; anything else disables.
66 --smtp-ssl * Deprecated. Use '--smtp-encryption ssl'.
69 --identity <str> * Use the sendemail.<id> options.
70 --cc-cmd <str> * Email Cc: via `<str> \$patch_path`
71 --suppress-cc <str> * author, self, sob, cc, cccmd, body, bodycc, all.
72 --[no-]signed-off-by-cc * Send to Signed-off-by: addresses. Default on.
73 --[no-]suppress-from * Send to self. Default off.
74 --[no-]chain-reply-to * Chain In-Reply-To: fields. Default on.
75 --[no-]thread * Use In-Reply-To: field. Default on.
78 --confirm <str> * Confirm recipients before sending;
79 auto, cc, compose, always, or never.
80 --quiet * Output one line of info per email.
81 --dry-run * Don't actually send the emails.
82 --[no-]validate * Perform patch sanity checks. Default on.
83 --[no-]format-patch * understand any non optional arguments as
84 `git format-patch` ones.
90 # most mail servers generate the Date: header, but not all...
91 sub format_2822_time
{
93 my @localtm = localtime($time);
94 my @gmttm = gmtime($time);
95 my $localmin = $localtm[1] + $localtm[2] * 60;
96 my $gmtmin = $gmttm[1] + $gmttm[2] * 60;
97 if ($localtm[0] != $gmttm[0]) {
98 die "local zone differs from GMT by a non-minute interval\n";
100 if ((($gmttm[6] + 1) % 7) == $localtm[6]) {
102 } elsif ((($gmttm[6] - 1) % 7) == $localtm[6]) {
104 } elsif ($gmttm[6] != $localtm[6]) {
105 die "local time offset greater than or equal to 24 hours\n";
107 my $offset = $localmin - $gmtmin;
108 my $offhour = $offset / 60;
109 my $offmin = abs($offset % 60);
110 if (abs($offhour) >= 24) {
111 die ("local time offset greater than or equal to 24 hours\n");
114 return sprintf("%s, %2d %s %d %02d:%02d:%02d %s%02d%02d",
115 qw(Sun Mon Tue Wed Thu Fri Sat)[$localtm[6]],
117 qw(Jan Feb Mar Apr May Jun
118 Jul Aug Sep Oct Nov Dec)[$localtm[4]],
123 ($offset >= 0) ?
'+' : '-',
129 my $have_email_valid = eval { require Email
::Valid
; 1 };
130 my $have_mail_address = eval { require Mail
::Address
; 1 };
134 sub unique_email_list
(@
);
135 sub cleanup_compose_files
();
137 # Variables we fill in automatically, or via prompting:
138 my (@to,@cc,@initial_cc,@bcclist,@xh,
139 $initial_reply_to,$initial_subject,@files,
140 $author,$sender,$smtp_authpass,$annotate,$compose,$time);
145 #$initial_reply_to = ''; #<20050203173208.GA23964@foobar.com>';
147 my $repo = eval { Git
->repository() };
148 my @repo = $repo ?
($repo) : ();
150 $ENV{"GIT_SEND_EMAIL_NOTTY"}
151 ? new Term
::ReadLine
'git-send-email', \
*STDIN
, \
*STDOUT
152 : new Term
::ReadLine
'git-send-email';
155 $term = new FakeTerm
"$@: going non-interactive";
158 # Behavior modification variables
159 my ($quiet, $dry_run) = (0, 0);
161 my $compose_filename;
163 # Handle interactive edition of files.
165 my $editor = $ENV{GIT_EDITOR
} || Git
::config
(@repo, "core.editor") || $ENV{VISUAL
} || $ENV{EDITOR
} || "vi";
167 if (defined($multiedit) && !$multiedit) {
169 system('sh', '-c', $editor.' "$@"', $editor, $_);
170 if (($?
& 127) || ($?
>> 8)) {
171 die("the editor exited uncleanly, aborting everything");
175 system('sh', '-c', $editor.' "$@"', $editor, @_);
176 if (($?
& 127) || ($?
>> 8)) {
177 die("the editor exited uncleanly, aborting everything");
182 # Variables with corresponding config settings
183 my ($thread, $chain_reply_to, $suppress_from, $signed_off_by_cc, $cc_cmd);
184 my ($smtp_server, $smtp_server_port, $smtp_authuser, $smtp_encryption);
185 my ($identity, $aliasfiletype, @alias_files, @smtp_host_parts);
186 my ($validate, $confirm);
189 my %config_bool_settings = (
190 "thread" => [\
$thread, 1],
191 "chainreplyto" => [\
$chain_reply_to, 1],
192 "suppressfrom" => [\
$suppress_from, undef],
193 "signedoffbycc" => [\
$signed_off_by_cc, undef],
194 "signedoffcc" => [\
$signed_off_by_cc, undef], # Deprecated
195 "validate" => [\
$validate, 1],
198 my %config_settings = (
199 "smtpserver" => \
$smtp_server,
200 "smtpserverport" => \
$smtp_server_port,
201 "smtpuser" => \
$smtp_authuser,
202 "smtppass" => \
$smtp_authpass,
204 "cc" => \
@initial_cc,
206 "aliasfiletype" => \
$aliasfiletype,
208 "aliasesfile" => \
@alias_files,
209 "suppresscc" => \
@suppress_cc,
210 "envelopesender" => \
$envelope_sender,
211 "multiedit" => \
$multiedit,
212 "confirm" => \
$confirm,
215 # Handle Uncouth Termination
219 print color
("reset"), "\n";
221 # SMTP password masked
224 # tmp files from --compose
225 if (defined $compose_filename) {
226 if (-e
$compose_filename) {
227 print "'$compose_filename' contains an intermediate version of the email you were composing.\n";
229 if (-e
($compose_filename . ".final")) {
230 print "'$compose_filename.final' contains the composed email.\n"
237 $SIG{TERM
} = \
&signal_handler
;
238 $SIG{INT
} = \
&signal_handler
;
240 # Begin by accumulating all the variables (defined above), that we will end up
241 # needing, first, from the command line:
243 my $rc = GetOptions
("sender|from=s" => \
$sender,
244 "in-reply-to=s" => \
$initial_reply_to,
245 "subject=s" => \
$initial_subject,
247 "cc=s" => \
@initial_cc,
248 "bcc=s" => \
@bcclist,
249 "chain-reply-to!" => \
$chain_reply_to,
250 "smtp-server=s" => \
$smtp_server,
251 "smtp-server-port=s" => \
$smtp_server_port,
252 "smtp-user=s" => \
$smtp_authuser,
253 "smtp-pass:s" => \
$smtp_authpass,
254 "smtp-ssl" => sub { $smtp_encryption = 'ssl' },
255 "smtp-encryption=s" => \
$smtp_encryption,
256 "identity=s" => \
$identity,
257 "annotate" => \
$annotate,
258 "compose" => \
$compose,
260 "cc-cmd=s" => \
$cc_cmd,
261 "suppress-from!" => \
$suppress_from,
262 "suppress-cc=s" => \
@suppress_cc,
263 "signed-off-cc|signed-off-by-cc!" => \
$signed_off_by_cc,
264 "confirm=s" => \
$confirm,
265 "dry-run" => \
$dry_run,
266 "envelope-sender=s" => \
$envelope_sender,
267 "thread!" => \
$thread,
268 "validate!" => \
$validate,
269 "format-patch!" => \
$format_patch,
276 die "Cannot run git format-patch from outside a repository\n"
277 if $format_patch and not $repo;
279 # Now, let's fill any that aren't set in with defaults:
284 foreach my $setting (keys %config_bool_settings) {
285 my $target = $config_bool_settings{$setting}->[0];
286 $$target = Git
::config_bool
(@repo, "$prefix.$setting") unless (defined $$target);
289 foreach my $setting (keys %config_settings) {
290 my $target = $config_settings{$setting};
291 if (ref($target) eq "ARRAY") {
293 my @values = Git
::config
(@repo, "$prefix.$setting");
294 @
$target = @values if (@values && defined $values[0]);
298 $$target = Git
::config
(@repo, "$prefix.$setting") unless (defined $$target);
302 if (!defined $smtp_encryption) {
303 my $enc = Git
::config
(@repo, "$prefix.smtpencryption");
305 $smtp_encryption = $enc;
306 } elsif (Git
::config_bool
(@repo, "$prefix.smtpssl")) {
307 $smtp_encryption = 'ssl';
312 # read configuration from [sendemail "$identity"], fall back on [sendemail]
313 $identity = Git
::config
(@repo, "sendemail.identity") unless (defined $identity);
314 read_config
("sendemail.$identity") if (defined $identity);
315 read_config
("sendemail");
317 # fall back on builtin bool defaults
318 foreach my $setting (values %config_bool_settings) {
319 ${$setting->[0]} = $setting->[1] unless (defined (${$setting->[0]}));
322 # 'default' encryption is none -- this only prevents a warning
323 $smtp_encryption = '' unless (defined $smtp_encryption);
325 # Set CC suppressions
328 foreach my $entry (@suppress_cc) {
329 die "Unknown --suppress-cc field: '$entry'\n"
330 unless $entry =~ /^(all|cccmd|cc|author|self|sob|body|bodycc)$/;
331 $suppress_cc{$entry} = 1;
335 if ($suppress_cc{'all'}) {
336 foreach my $entry (qw
(ccmd cc author self sob body bodycc
)) {
337 $suppress_cc{$entry} = 1;
339 delete $suppress_cc{'all'};
342 # If explicit old-style ones are specified, they trump --suppress-cc.
343 $suppress_cc{'self'} = $suppress_from if defined $suppress_from;
344 $suppress_cc{'sob'} = !$signed_off_by_cc if defined $signed_off_by_cc;
346 if ($suppress_cc{'body'}) {
347 foreach my $entry (qw
(sob bodycc
)) {
348 $suppress_cc{$entry} = 1;
350 delete $suppress_cc{'body'};
353 # Set confirm's default value
354 my $confirm_unconfigured = !defined $confirm;
355 if ($confirm_unconfigured) {
356 $confirm = scalar %suppress_cc ?
'compose' : 'auto';
358 die "Unknown --confirm setting: '$confirm'\n"
359 unless $confirm =~ /^(?:auto|cc|compose|always|never)/;
361 # Debugging, print out the suppressions.
363 print "suppressions:\n";
364 foreach my $entry (keys %suppress_cc) {
365 printf " %-5s -> $suppress_cc{$entry}\n", $entry;
369 my ($repoauthor, $repocommitter);
370 ($repoauthor) = Git
::ident_person
(@repo, 'author');
371 ($repocommitter) = Git
::ident_person
(@repo, 'committer');
373 # Verify the user input
375 foreach my $entry (@to) {
376 die "Comma in --to entry: $entry'\n" unless $entry !~ m/,/;
379 foreach my $entry (@initial_cc) {
380 die "Comma in --cc entry: $entry'\n" unless $entry !~ m/,/;
383 foreach my $entry (@bcclist) {
384 die "Comma in --bcclist entry: $entry'\n" unless $entry !~ m/,/;
387 sub parse_address_line
{
388 if ($have_mail_address) {
389 return map { $_->format } Mail
::Address
->parse($_[0]);
391 return split_addrs
($_[0]);
396 return quotewords
('\s*,\s*', 1, @_);
401 # multiline formats can be supported in the future
402 mutt
=> sub { my $fh = shift; while (<$fh>) {
403 if (/^\s*alias\s+(\S+)\s+(.*)$/) {
404 my ($alias, $addr) = ($1, $2);
405 $addr =~ s/#.*$//; # mutt allows # comments
406 # commas delimit multiple addresses
407 $aliases{$alias} = [ split_addrs
($addr) ];
409 mailrc
=> sub { my $fh = shift; while (<$fh>) {
410 if (/^alias\s+(\S+)\s+(.*)$/) {
411 # spaces delimit multiple addresses
412 $aliases{$1} = [ split(/\s+/, $2) ];
414 pine
=> sub { my $fh = shift; my $f='\t[^\t]*';
415 for (my $x = ''; defined($x); $x = $_) {
417 $x .= $1 while(defined($_ = <$fh>) && /^ +(.*)$/);
418 $x =~ /^(\S+)$f\t\(?([^\t]+?)\)?(:?$f){0,2}$/ or next;
419 $aliases{$1} = [ split_addrs
($2) ];
421 gnus
=> sub { my $fh = shift; while (<$fh>) {
422 if (/\(define-mail-alias\s+"(\S+?)"\s+"(\S+?)"\)/) {
423 $aliases{$1} = [ $2 ];
427 if (@alias_files and $aliasfiletype and defined $parse_alias{$aliasfiletype}) {
428 foreach my $file (@alias_files) {
429 open my $fh, '<', $file or die "opening $file: $!\n";
430 $parse_alias{$aliasfiletype}->($fh);
435 ($sender) = expand_aliases
($sender) if defined $sender;
437 # returns 1 if the conflict must be solved using it as a format-patch argument
438 sub check_file_rev_conflict
($) {
442 $repo->command('rev-parse', '--verify', '--quiet', $f);
443 if (defined($format_patch)) {
445 return $format_patch;
448 File '$f' exists but it could also be the range of commits
449 to produce patches for. Please disambiguate by...
451 * Saying "./$f" if you mean a file; or
452 * Giving --format-patch option if you mean a range.
454 } catch Git
::Error
::Command with
{
459 # Now that all the defaults are set, process the rest of the command line
460 # arguments and collect up the files that need to be processed.
462 while (defined(my $f = shift @ARGV)) {
464 push @rev_list_opts, "--", @ARGV;
466 } elsif (-d
$f and !check_file_rev_conflict
($f)) {
468 or die "Failed to opendir $f: $!";
470 push @files, grep { -f
$_ } map { +$f . "/" . $_ }
473 } elsif ((-f
$f or -p
$f) and !check_file_rev_conflict
($f)) {
476 push @rev_list_opts, $f;
480 if (@rev_list_opts) {
481 die "Cannot run git format-patch from outside a repository\n"
483 push @files, $repo->command('format-patch', '-o', tempdir
(CLEANUP
=> 1), @rev_list_opts);
487 foreach my $f (@files) {
489 my $error = validate_patch
($f);
490 $error and die "fatal: $f: $error\nwarning: no patches were sent\n";
497 print $_,"\n" for (@files);
500 print STDERR
"\nNo patch files specified!\n\n";
504 sub get_patch_subject
($) {
506 open (my $fh, '<', $fn);
507 while (my $line = <$fh>) {
508 next unless ($line =~ /^Subject: (.*)$/);
513 die "No subject line in $fn ?";
517 # Note that this does not need to be secure, but we will make a small
518 # effort to have it be unique
519 $compose_filename = ($repo ?
520 tempfile
(".gitsendemail.msg.XXXXXX", DIR
=> $repo->repo_path()) :
521 tempfile
(".gitsendemail.msg.XXXXXX", DIR
=> "."))[1];
522 open(C
,">",$compose_filename)
523 or die "Failed to open for writing $compose_filename: $!";
526 my $tpl_sender = $sender || $repoauthor || $repocommitter || '';
527 my $tpl_subject = $initial_subject || '';
528 my $tpl_reply_to = $initial_reply_to || '';
531 From $tpl_sender # This line is ignored.
532 GIT: Lines beginning in "GIT: " will be removed.
533 GIT: Consider including an overall diffstat or table of contents
534 GIT: for the patch you are writing.
536 GIT: Clear the body content if you don't wish to send a summary.
538 Subject: $tpl_subject
539 In-Reply-To: $tpl_reply_to
543 print C get_patch_subject
($f);
547 my $editor = $ENV{GIT_EDITOR
} || Git
::config
(@repo, "core.editor") || $ENV{VISUAL
} || $ENV{EDITOR
} || "vi";
550 do_edit
($compose_filename, @files);
552 do_edit
($compose_filename);
555 open(C2
,">",$compose_filename . ".final")
556 or die "Failed to open $compose_filename.final : " . $!;
558 open(C
,"<",$compose_filename)
559 or die "Failed to open $compose_filename : " . $!;
561 my $need_8bit_cte = file_has_nonascii
($compose_filename);
563 my $summary_empty = 1;
567 $summary_empty = 0 unless (/^\n$/);
570 if ($need_8bit_cte) {
571 print C2
"MIME-Version: 1.0\n",
572 "Content-Type: text/plain; ",
574 "Content-Transfer-Encoding: 8bit\n";
576 } elsif (/^MIME-Version:/i) {
578 } elsif (/^Subject:\s*(.+)\s*$/i) {
579 $initial_subject = $1;
580 my $subject = $initial_subject;
582 ($subject =~ /[^[:ascii:]]/ ?
583 quote_rfc2047
($subject) :
586 } elsif (/^In-Reply-To:\s*(.+)\s*$/i) {
587 $initial_reply_to = $1;
589 } elsif (/^From:\s*(.+)\s*$/i) {
592 } elsif (/^(?:To|Cc|Bcc):/i) {
593 print "To/Cc/Bcc fields are not interpreted yet, they have been ignored\n";
601 if ($summary_empty) {
602 print "Summary email is empty, skipping it\n";
605 } elsif ($annotate) {
610 if (!defined $sender) {
611 $sender = $repoauthor || $repocommitter || '';
614 $_ = $term->readline("Who should the emails appear to be from? [$sender] ");
619 $sender = $_ if ($_);
620 print "Emails will be sent from: ", $sender, "\n";
628 $_ = $term->readline("Who should the emails be sent to? ", "");
634 push @to, parse_address_line
($to);
643 @cur = map { $aliases{$_} ? @
{$aliases{$_}} : $_ } @last;
644 } while (join(',',@cur) ne join(',',@last));
648 @to = expand_aliases
(@to);
649 @to = (map { sanitize_address
($_) } @to);
650 @initial_cc = expand_aliases
(@initial_cc);
651 @bcclist = expand_aliases
(@bcclist);
653 if ($thread && !defined $initial_reply_to && $prompting) {
655 $_= $term->readline("Message-ID to be used as In-Reply-To for the first email? ", $initial_reply_to);
660 $initial_reply_to = $_;
662 if (defined $initial_reply_to) {
663 $initial_reply_to =~ s/^\s*<?//;
664 $initial_reply_to =~ s/>?\s*$//;
665 $initial_reply_to = "<$initial_reply_to>" if $initial_reply_to ne '';
668 if (!defined $smtp_server) {
669 foreach (qw( /usr/sbin/sendmail /usr/lib/sendmail )) {
675 $smtp_server ||= 'localhost'; # could be 127.0.0.1, too... *shrug*
678 if ($compose && $compose > 0) {
679 @files = ($compose_filename . ".final", @files);
682 # Variables we set as part of the loop over files
683 our ($message_id, %mail, $subject, $reply_to, $references, $message,
684 $needs_confirm, $message_num);
686 sub extract_valid_address
{
688 my $local_part_regexp = '[^<>"\s@]+';
689 my $domain_regexp = '[^.<>"\s@]+(?:\.[^.<>"\s@]+)+';
691 # check for a local address:
692 return $address if ($address =~ /^($local_part_regexp)$/);
694 $address =~ s/^\s*<(.*)>\s*$/$1/;
695 if ($have_email_valid) {
696 return scalar Email
::Valid
->address($address);
698 # less robust/correct than the monster regexp in Email::Valid,
699 # but still does a 99% job, and one less dependency
700 $address =~ /($local_part_regexp\@$domain_regexp)/;
705 # Usually don't need to change anything below here.
707 # we make a "fake" message id by taking the current number
708 # of seconds since the beginning of Unix time and tacking on
709 # a random number to the end, in case we are called quicker than
710 # 1 second since the last time we were called.
712 # We'll setup a template for the message id, using the "from" address:
714 my ($message_id_stamp, $message_id_serial);
718 if (!defined $message_id_stamp) {
719 $message_id_stamp = sprintf("%s-%s", time, $$);
720 $message_id_serial = 0;
722 $message_id_serial++;
723 $uniq = "$message_id_stamp-$message_id_serial";
726 for ($sender, $repocommitter, $repoauthor) {
727 $du_part = extract_valid_address
(sanitize_address
($_));
728 last if (defined $du_part and $du_part ne '');
730 if (not defined $du_part or $du_part eq '') {
731 use Sys
::Hostname
qw();
732 $du_part = 'user@' . Sys
::Hostname
::hostname
();
734 my $message_id_template = "<%s-git-send-email-%s>";
735 $message_id = sprintf($message_id_template, $uniq, $du_part);
736 #print "new message id = $message_id\n"; # Was useful for debugging
741 $time = time - scalar $#files;
743 sub unquote_rfc2047
{
746 if (s/=\?([^?]+)\?q\?(.*)\?=/$2/g) {
749 s/=([0-9A-F]{2})/chr(hex($1))/eg;
751 return wantarray ?
($_, $encoding) : $_;
756 my $encoding = shift || 'utf-8';
757 s/([^-a-zA-Z0-9!*+\/])/sprintf
("=%02X", ord($1))/eg
;
758 s/(.*)/=\?$encoding\?q\?$1\?=/;
762 # use the simplest quoting being able to handle the recipient
765 my ($recipient) = @_;
766 my ($recipient_name, $recipient_addr) = ($recipient =~ /^(.*?)\s*(<.*)/);
768 if (not $recipient_name) {
772 # if recipient_name is already quoted, do nothing
773 if ($recipient_name =~ /^(".*"|=\?utf-8\?q\?.*\?=)$/) {
777 # rfc2047 is needed if a non-ascii char is included
778 if ($recipient_name =~ /[^[:ascii:]]/) {
779 $recipient_name = quote_rfc2047
($recipient_name);
782 # double quotes are needed if specials or CTLs are included
783 elsif ($recipient_name =~ /[][()<>@,;:\\".\000-\037\177]/) {
784 $recipient_name =~ s/(["\\\r])/\\$1/g;
785 $recipient_name = "\"$recipient_name\"";
788 return "$recipient_name $recipient_addr";
794 my @recipients = unique_email_list
(@to);
795 @cc = (grep { my $cc = extract_valid_address
($_);
796 not grep { $cc eq $_ } @recipients
798 map { sanitize_address
($_) }
800 my $to = join (",\n\t", @recipients);
801 @recipients = unique_email_list
(@recipients,@cc,@bcclist);
802 @recipients = (map { extract_valid_address
($_) } @recipients);
803 my $date = format_2822_time
($time++);
804 my $gitversion = '@@GIT_VERSION@@';
805 if ($gitversion =~ m/..GIT_VERSION../) {
806 $gitversion = Git
::version
();
809 my $cc = join(", ", unique_email_list
(@cc));
812 $ccline = "\nCc: $cc";
814 my $sanitized_sender = sanitize_address
($sender);
815 make_message_id
() unless defined($message_id);
817 my $header = "From: $sanitized_sender
821 Message-Id: $message_id
822 X-Mailer: git-send-email $gitversion
826 $header .= "In-Reply-To: $reply_to\n";
827 $header .= "References: $references\n";
830 $header .= join("\n", @xh) . "\n";
833 my @sendmail_parameters = ('-i', @recipients);
834 my $raw_from = $sanitized_sender;
835 $raw_from = $envelope_sender if (defined $envelope_sender);
836 $raw_from = extract_valid_address
($raw_from);
837 unshift (@sendmail_parameters,
838 '-f', $raw_from) if(defined $envelope_sender);
840 if ($needs_confirm && !$dry_run) {
842 if ($needs_confirm eq "inform") {
843 $confirm_unconfigured = 0; # squelch this message for the rest of this run
844 print " The Cc list above has been expanded by additional\n";
845 print " addresses found in the patch commit message. By default\n";
846 print " send-email prompts before sending whenever this occurs.\n";
847 print " This behavior is controlled by the sendemail.confirm\n";
848 print " configuration setting.\n";
850 print " For additional information, run 'git send-email --help'.\n";
851 print " To retain the current behavior, but squelch this message,\n";
852 print " run 'git config --global sendemail.confirm auto'.\n\n";
855 chomp ($_ = $term->readline(
856 "Send this email? ([y]es|[n]o|[q]uit|[a]ll): "
858 last if /^(?:yes|y|no|n|quit|q|all|a)/i;
864 cleanup_compose_files
();
872 # We don't want to send the email.
873 } elsif ($smtp_server =~ m
#^/#) {
874 my $pid = open my $sm, '|-';
875 defined $pid or die $!;
877 exec($smtp_server, @sendmail_parameters) or die $!;
879 print $sm "$header\n$message";
883 if (!defined $smtp_server) {
884 die "The required SMTP server is not properly defined."
887 if ($smtp_encryption eq 'ssl') {
888 $smtp_server_port ||= 465; # ssmtp
889 require Net
::SMTP
::SSL
;
890 $smtp ||= Net
::SMTP
::SSL
->new($smtp_server, Port
=> $smtp_server_port);
894 $smtp ||= Net
::SMTP
->new((defined $smtp_server_port)
895 ?
"$smtp_server:$smtp_server_port"
897 if ($smtp_encryption eq 'tls') {
898 require Net
::SMTP
::SSL
;
899 $smtp->command('STARTTLS');
901 if ($smtp->code == 220) {
902 $smtp = Net
::SMTP
::SSL
->start_SSL($smtp)
903 or die "STARTTLS failed! ".$smtp->message;
904 $smtp_encryption = '';
905 # Send EHLO again to receive fresh
909 die "Server does not support STARTTLS! ".$smtp->message;
915 die "Unable to initialize SMTP properly. Is there something wrong with your config?";
918 if (defined $smtp_authuser) {
920 if (!defined $smtp_authpass) {
928 } while (!defined $_);
930 chomp($smtp_authpass = $_);
935 $auth ||= $smtp->auth( $smtp_authuser, $smtp_authpass ) or die $smtp->message;
938 $smtp->mail( $raw_from ) or die $smtp->message;
939 $smtp->to( @recipients ) or die $smtp->message;
940 $smtp->data or die $smtp->message;
941 $smtp->datasend("$header\n$message") or die $smtp->message;
942 $smtp->dataend() or die $smtp->message;
943 $smtp->ok or die "Failed to send $subject\n".$smtp->message;
946 printf (($dry_run ?
"Dry-" : "")."Sent %s\n", $subject);
948 print (($dry_run ?
"Dry-" : "")."OK. Log says:\n");
949 if ($smtp_server !~ m
#^/#) {
950 print "Server: $smtp_server\n";
951 print "MAIL FROM:<$raw_from>\n";
952 print "RCPT TO:".join(',',(map { "<$_>" } @recipients))."\n";
954 print "Sendmail: $smtp_server ".join(' ',@sendmail_parameters)."\n";
958 print "Result: ", $smtp->code, ' ',
959 ($smtp->message =~ /\n([^\n]+\n)$/s), "\n";
961 print "Result: OK\n";
966 $reply_to = $initial_reply_to;
967 $references = $initial_reply_to || '';
968 $subject = $initial_subject;
971 foreach my $t (@files) {
972 open(F
,"<",$t) or die "can't open file $t";
976 my $has_content_type;
980 my $input_format = undef;
984 # First unfold multiline header fields
987 if (/^\s+\S/ and @header) {
988 chomp($header[$#header]);
990 $header[$#header] .= $_;
995 # Now parse the header
998 $input_format = 'mbox';
1002 if (!defined $input_format && /^[-A-Za-z]+:\s/) {
1003 $input_format = 'mbox';
1006 if (defined $input_format && $input_format eq 'mbox') {
1007 if (/^Subject:\s+(.*)$/) {
1010 elsif (/^From:\s+(.*)$/) {
1011 ($author, $author_encoding) = unquote_rfc2047
($1);
1012 next if $suppress_cc{'author'};
1013 next if $suppress_cc{'self'} and $author eq $sender;
1014 printf("(mbox) Adding cc: %s from line '%s'\n",
1015 $1, $_) unless $quiet;
1018 elsif (/^Cc:\s+(.*)$/) {
1019 foreach my $addr (parse_address_line
($1)) {
1020 if (unquote_rfc2047
($addr) eq $sender) {
1021 next if ($suppress_cc{'self'});
1023 next if ($suppress_cc{'cc'});
1025 printf("(mbox) Adding cc: %s from line '%s'\n",
1026 $addr, $_) unless $quiet;
1030 elsif (/^Content-type:/i) {
1031 $has_content_type = 1;
1032 if (/charset="?([^ "]+)/) {
1033 $body_encoding = $1;
1037 elsif (/^Message-Id: (.*)/i) {
1040 elsif (!/^Date:\s/ && /^[-A-Za-z]+:\s+\S/) {
1045 # In the traditional
1046 # "send lots of email" format,
1049 # So let's support that, too.
1050 $input_format = 'lots';
1051 if (@cc == 0 && !$suppress_cc{'cc'}) {
1052 printf("(non-mbox) Adding cc: %s from line '%s'\n",
1053 $_, $_) unless $quiet;
1055 } elsif (!defined $subject) {
1060 # Now parse the message body
1063 if (/^(Signed-off-by|Cc): (.*)$/i) {
1065 my ($what, $c) = ($1, $2);
1067 if ($c eq $sender) {
1068 next if ($suppress_cc{'self'});
1070 next if $suppress_cc{'sob'} and $what =~ /Signed-off-by/i;
1071 next if $suppress_cc{'bodycc'} and $what =~ /Cc/i;
1074 printf("(body) Adding cc: %s from line '%s'\n",
1075 $c, $_) unless $quiet;
1080 if (defined $cc_cmd && !$suppress_cc{'cccmd'}) {
1081 open(F
, "$cc_cmd $t |")
1082 or die "(cc-cmd) Could not execute '$cc_cmd'";
1087 next if ($c eq $sender and $suppress_from);
1089 printf("(cc-cmd) Adding cc: %s from: '%s'\n",
1090 $c, $cc_cmd) unless $quiet;
1093 or die "(cc-cmd) failed to close pipe to '$cc_cmd'";
1096 if (defined $author and $author ne $sender) {
1097 $message = "From: $author\n\n$message";
1098 if (defined $author_encoding) {
1099 if ($has_content_type) {
1100 if ($body_encoding eq $author_encoding) {
1101 # ok, we already have the right encoding
1104 # uh oh, we should re-encode
1109 'MIME-Version: 1.0',
1110 "Content-Type: text/plain; charset=$author_encoding",
1111 'Content-Transfer-Encoding: 8bit';
1117 $confirm eq "always" or
1118 ($confirm =~ /^(?:auto|cc)$/ && @cc) or
1119 ($confirm =~ /^(?:auto|compose)$/ && $compose && $message_num == 1));
1120 $needs_confirm = "inform" if ($needs_confirm && $confirm_unconfigured && @cc);
1122 @cc = (@initial_cc, @cc);
1126 # set up for the next message
1127 if ($chain_reply_to || !defined $reply_to || length($reply_to) == 0) {
1128 $reply_to = $message_id;
1129 if (length $references > 0) {
1130 $references .= "\n $message_id";
1132 $references = "$message_id";
1135 $message_id = undef;
1138 cleanup_compose_files
();
1140 sub cleanup_compose_files
() {
1141 unlink($compose_filename, $compose_filename . ".final") if $compose;
1144 $smtp->quit if $smtp;
1146 sub unique_email_list
(@
) {
1150 foreach my $entry (@_) {
1151 if (my $clean = extract_valid_address
($entry)) {
1152 $seen{$clean} ||= 0;
1153 next if $seen{$clean}++;
1154 push @emails, $entry;
1156 print STDERR
"W: unable to extract a valid address",
1163 sub validate_patch
{
1165 open(my $fh, '<', $fn)
1166 or die "unable to open $fn: $!\n";
1167 while (my $line = <$fh>) {
1168 if (length($line) > 998) {
1169 return "$.: patch contains a line longer than 998 characters";
1175 sub file_has_nonascii
{
1177 open(my $fh, '<', $fn)
1178 or die "unable to open $fn: $!\n";
1179 while (my $line = <$fh>) {
1180 return 1 if $line =~ /[^[:ascii:]]/;