git-send-email.perlon commit Merge branch 'jl/submodule-update-retire-orig-flags' (c83386d)
   1#!/usr/bin/perl
   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#
  18
  19use 5.008;
  20use strict;
  21use warnings;
  22use Term::ReadLine;
  23use Getopt::Long;
  24use Text::ParseWords;
  25use Data::Dumper;
  26use Term::ANSIColor;
  27use File::Temp qw/ tempdir tempfile /;
  28use File::Spec::Functions qw(catfile);
  29use Error qw(:try);
  30use Git;
  31
  32Getopt::Long::Configure qw/ pass_through /;
  33
  34package FakeTerm;
  35sub new {
  36        my ($class, $reason) = @_;
  37        return bless \$reason, shift;
  38}
  39sub readline {
  40        my $self = shift;
  41        die "Cannot use readline on FakeTerm: $$self";
  42}
  43package main;
  44
  45
  46sub usage {
  47        print <<EOT;
  48git send-email [options] <file | directory | rev-list options >
  49
  50  Composing:
  51    --from                  <str>  * Email From:
  52    --[no-]to               <str>  * Email To:
  53    --[no-]cc               <str>  * Email Cc:
  54    --[no-]bcc              <str>  * Email Bcc:
  55    --subject               <str>  * Email "Subject:"
  56    --in-reply-to           <str>  * Email "In-Reply-To:"
  57    --[no-]annotate                * Review each patch that will be sent in an editor.
  58    --compose                      * Open an editor for introduction.
  59    --compose-encoding      <str>  * Encoding to assume for introduction.
  60    --8bit-encoding         <str>  * Encoding to assume 8bit mails if undeclared
  61
  62  Sending:
  63    --envelope-sender       <str>  * Email envelope sender.
  64    --smtp-server       <str:int>  * Outgoing SMTP server to use. The port
  65                                     is optional. Default 'localhost'.
  66    --smtp-server-option    <str>  * Outgoing SMTP server option to use.
  67    --smtp-server-port      <int>  * Outgoing SMTP server port.
  68    --smtp-user             <str>  * Username for SMTP-AUTH.
  69    --smtp-pass             <str>  * Password for SMTP-AUTH; not necessary.
  70    --smtp-encryption       <str>  * tls or ssl; anything else disables.
  71    --smtp-ssl                     * Deprecated. Use '--smtp-encryption ssl'.
  72    --smtp-ssl-cert-path    <str>  * Path to ca-certificates (either directory or file).
  73                                     Pass an empty string to disable certificate
  74                                     verification.
  75    --smtp-domain           <str>  * The domain name sent to HELO/EHLO handshake
  76    --smtp-debug            <0|1>  * Disable, enable Net::SMTP debug.
  77
  78  Automating:
  79    --identity              <str>  * Use the sendemail.<id> options.
  80    --to-cmd                <str>  * Email To: via `<str> \$patch_path`
  81    --cc-cmd                <str>  * Email Cc: via `<str> \$patch_path`
  82    --suppress-cc           <str>  * author, self, sob, cc, cccmd, body, bodycc, all.
  83    --[no-]signed-off-by-cc        * Send to Signed-off-by: addresses. Default on.
  84    --[no-]suppress-from           * Send to self. Default off.
  85    --[no-]chain-reply-to          * Chain In-Reply-To: fields. Default off.
  86    --[no-]thread                  * Use In-Reply-To: field. Default on.
  87
  88  Administering:
  89    --confirm               <str>  * Confirm recipients before sending;
  90                                     auto, cc, compose, always, or never.
  91    --quiet                        * Output one line of info per email.
  92    --dry-run                      * Don't actually send the emails.
  93    --[no-]validate                * Perform patch sanity checks. Default on.
  94    --[no-]format-patch            * understand any non optional arguments as
  95                                     `git format-patch` ones.
  96    --force                        * Send even if safety checks would prevent it.
  97
  98EOT
  99        exit(1);
 100}
 101
 102# most mail servers generate the Date: header, but not all...
 103sub format_2822_time {
 104        my ($time) = @_;
 105        my @localtm = localtime($time);
 106        my @gmttm = gmtime($time);
 107        my $localmin = $localtm[1] + $localtm[2] * 60;
 108        my $gmtmin = $gmttm[1] + $gmttm[2] * 60;
 109        if ($localtm[0] != $gmttm[0]) {
 110                die "local zone differs from GMT by a non-minute interval\n";
 111        }
 112        if ((($gmttm[6] + 1) % 7) == $localtm[6]) {
 113                $localmin += 1440;
 114        } elsif ((($gmttm[6] - 1) % 7) == $localtm[6]) {
 115                $localmin -= 1440;
 116        } elsif ($gmttm[6] != $localtm[6]) {
 117                die "local time offset greater than or equal to 24 hours\n";
 118        }
 119        my $offset = $localmin - $gmtmin;
 120        my $offhour = $offset / 60;
 121        my $offmin = abs($offset % 60);
 122        if (abs($offhour) >= 24) {
 123                die ("local time offset greater than or equal to 24 hours\n");
 124        }
 125
 126        return sprintf("%s, %2d %s %d %02d:%02d:%02d %s%02d%02d",
 127                       qw(Sun Mon Tue Wed Thu Fri Sat)[$localtm[6]],
 128                       $localtm[3],
 129                       qw(Jan Feb Mar Apr May Jun
 130                          Jul Aug Sep Oct Nov Dec)[$localtm[4]],
 131                       $localtm[5]+1900,
 132                       $localtm[2],
 133                       $localtm[1],
 134                       $localtm[0],
 135                       ($offset >= 0) ? '+' : '-',
 136                       abs($offhour),
 137                       $offmin,
 138                       );
 139}
 140
 141my $have_email_valid = eval { require Email::Valid; 1 };
 142my $have_mail_address = eval { require Mail::Address; 1 };
 143my $smtp;
 144my $auth;
 145
 146# Variables we fill in automatically, or via prompting:
 147my (@to,$no_to,@initial_to,@cc,$no_cc,@initial_cc,@bcclist,$no_bcc,@xh,
 148        $initial_reply_to,$initial_subject,@files,
 149        $author,$sender,$smtp_authpass,$annotate,$compose,$time);
 150
 151my $envelope_sender;
 152
 153# Example reply to:
 154#$initial_reply_to = ''; #<20050203173208.GA23964@foobar.com>';
 155
 156my $repo = eval { Git->repository() };
 157my @repo = $repo ? ($repo) : ();
 158my $term = eval {
 159        $ENV{"GIT_SEND_EMAIL_NOTTY"}
 160                ? new Term::ReadLine 'git-send-email', \*STDIN, \*STDOUT
 161                : new Term::ReadLine 'git-send-email';
 162};
 163if ($@) {
 164        $term = new FakeTerm "$@: going non-interactive";
 165}
 166
 167# Behavior modification variables
 168my ($quiet, $dry_run) = (0, 0);
 169my $format_patch;
 170my $compose_filename;
 171my $force = 0;
 172
 173# Handle interactive edition of files.
 174my $multiedit;
 175my $editor;
 176
 177sub do_edit {
 178        if (!defined($editor)) {
 179                $editor = Git::command_oneline('var', 'GIT_EDITOR');
 180        }
 181        if (defined($multiedit) && !$multiedit) {
 182                map {
 183                        system('sh', '-c', $editor.' "$@"', $editor, $_);
 184                        if (($? & 127) || ($? >> 8)) {
 185                                die("the editor exited uncleanly, aborting everything");
 186                        }
 187                } @_;
 188        } else {
 189                system('sh', '-c', $editor.' "$@"', $editor, @_);
 190                if (($? & 127) || ($? >> 8)) {
 191                        die("the editor exited uncleanly, aborting everything");
 192                }
 193        }
 194}
 195
 196# Variables with corresponding config settings
 197my ($thread, $chain_reply_to, $suppress_from, $signed_off_by_cc);
 198my ($to_cmd, $cc_cmd);
 199my ($smtp_server, $smtp_server_port, @smtp_server_options);
 200my ($smtp_authuser, $smtp_encryption, $smtp_ssl_cert_path);
 201my ($identity, $aliasfiletype, @alias_files, $smtp_domain);
 202my ($validate, $confirm);
 203my (@suppress_cc);
 204my ($auto_8bit_encoding);
 205my ($compose_encoding);
 206
 207my ($debug_net_smtp) = 0;               # Net::SMTP, see send_message()
 208
 209my %config_bool_settings = (
 210    "thread" => [\$thread, 1],
 211    "chainreplyto" => [\$chain_reply_to, 0],
 212    "suppressfrom" => [\$suppress_from, undef],
 213    "signedoffbycc" => [\$signed_off_by_cc, undef],
 214    "signedoffcc" => [\$signed_off_by_cc, undef],      # Deprecated
 215    "validate" => [\$validate, 1],
 216    "multiedit" => [\$multiedit, undef],
 217    "annotate" => [\$annotate, undef]
 218);
 219
 220my %config_settings = (
 221    "smtpserver" => \$smtp_server,
 222    "smtpserverport" => \$smtp_server_port,
 223    "smtpserveroption" => \@smtp_server_options,
 224    "smtpuser" => \$smtp_authuser,
 225    "smtppass" => \$smtp_authpass,
 226    "smtpsslcertpath" => \$smtp_ssl_cert_path,
 227    "smtpdomain" => \$smtp_domain,
 228    "to" => \@initial_to,
 229    "tocmd" => \$to_cmd,
 230    "cc" => \@initial_cc,
 231    "cccmd" => \$cc_cmd,
 232    "aliasfiletype" => \$aliasfiletype,
 233    "bcc" => \@bcclist,
 234    "suppresscc" => \@suppress_cc,
 235    "envelopesender" => \$envelope_sender,
 236    "confirm"   => \$confirm,
 237    "from" => \$sender,
 238    "assume8bitencoding" => \$auto_8bit_encoding,
 239    "composeencoding" => \$compose_encoding,
 240);
 241
 242my %config_path_settings = (
 243    "aliasesfile" => \@alias_files,
 244);
 245
 246# Handle Uncouth Termination
 247sub signal_handler {
 248
 249        # Make text normal
 250        print color("reset"), "\n";
 251
 252        # SMTP password masked
 253        system "stty echo";
 254
 255        # tmp files from --compose
 256        if (defined $compose_filename) {
 257                if (-e $compose_filename) {
 258                        print "'$compose_filename' contains an intermediate version of the email you were composing.\n";
 259                }
 260                if (-e ($compose_filename . ".final")) {
 261                        print "'$compose_filename.final' contains the composed email.\n"
 262                }
 263        }
 264
 265        exit;
 266};
 267
 268$SIG{TERM} = \&signal_handler;
 269$SIG{INT}  = \&signal_handler;
 270
 271# Begin by accumulating all the variables (defined above), that we will end up
 272# needing, first, from the command line:
 273
 274my $help;
 275my $rc = GetOptions("h" => \$help,
 276                    "sender|from=s" => \$sender,
 277                    "in-reply-to=s" => \$initial_reply_to,
 278                    "subject=s" => \$initial_subject,
 279                    "to=s" => \@initial_to,
 280                    "to-cmd=s" => \$to_cmd,
 281                    "no-to" => \$no_to,
 282                    "cc=s" => \@initial_cc,
 283                    "no-cc" => \$no_cc,
 284                    "bcc=s" => \@bcclist,
 285                    "no-bcc" => \$no_bcc,
 286                    "chain-reply-to!" => \$chain_reply_to,
 287                    "smtp-server=s" => \$smtp_server,
 288                    "smtp-server-option=s" => \@smtp_server_options,
 289                    "smtp-server-port=s" => \$smtp_server_port,
 290                    "smtp-user=s" => \$smtp_authuser,
 291                    "smtp-pass:s" => \$smtp_authpass,
 292                    "smtp-ssl" => sub { $smtp_encryption = 'ssl' },
 293                    "smtp-encryption=s" => \$smtp_encryption,
 294                    "smtp-ssl-cert-path" => \$smtp_ssl_cert_path,
 295                    "smtp-debug:i" => \$debug_net_smtp,
 296                    "smtp-domain:s" => \$smtp_domain,
 297                    "identity=s" => \$identity,
 298                    "annotate!" => \$annotate,
 299                    "compose" => \$compose,
 300                    "quiet" => \$quiet,
 301                    "cc-cmd=s" => \$cc_cmd,
 302                    "suppress-from!" => \$suppress_from,
 303                    "suppress-cc=s" => \@suppress_cc,
 304                    "signed-off-cc|signed-off-by-cc!" => \$signed_off_by_cc,
 305                    "confirm=s" => \$confirm,
 306                    "dry-run" => \$dry_run,
 307                    "envelope-sender=s" => \$envelope_sender,
 308                    "thread!" => \$thread,
 309                    "validate!" => \$validate,
 310                    "format-patch!" => \$format_patch,
 311                    "8bit-encoding=s" => \$auto_8bit_encoding,
 312                    "compose-encoding=s" => \$compose_encoding,
 313                    "force" => \$force,
 314         );
 315
 316usage() if $help;
 317unless ($rc) {
 318    usage();
 319}
 320
 321die "Cannot run git format-patch from outside a repository\n"
 322        if $format_patch and not $repo;
 323
 324# Now, let's fill any that aren't set in with defaults:
 325
 326sub read_config {
 327        my ($prefix) = @_;
 328
 329        foreach my $setting (keys %config_bool_settings) {
 330                my $target = $config_bool_settings{$setting}->[0];
 331                $$target = Git::config_bool(@repo, "$prefix.$setting") unless (defined $$target);
 332        }
 333
 334        foreach my $setting (keys %config_path_settings) {
 335                my $target = $config_path_settings{$setting};
 336                if (ref($target) eq "ARRAY") {
 337                        unless (@$target) {
 338                                my @values = Git::config_path(@repo, "$prefix.$setting");
 339                                @$target = @values if (@values && defined $values[0]);
 340                        }
 341                }
 342                else {
 343                        $$target = Git::config_path(@repo, "$prefix.$setting") unless (defined $$target);
 344                }
 345        }
 346
 347        foreach my $setting (keys %config_settings) {
 348                my $target = $config_settings{$setting};
 349                next if $setting eq "to" and defined $no_to;
 350                next if $setting eq "cc" and defined $no_cc;
 351                next if $setting eq "bcc" and defined $no_bcc;
 352                if (ref($target) eq "ARRAY") {
 353                        unless (@$target) {
 354                                my @values = Git::config(@repo, "$prefix.$setting");
 355                                @$target = @values if (@values && defined $values[0]);
 356                        }
 357                }
 358                else {
 359                        $$target = Git::config(@repo, "$prefix.$setting") unless (defined $$target);
 360                }
 361        }
 362
 363        if (!defined $smtp_encryption) {
 364                my $enc = Git::config(@repo, "$prefix.smtpencryption");
 365                if (defined $enc) {
 366                        $smtp_encryption = $enc;
 367                } elsif (Git::config_bool(@repo, "$prefix.smtpssl")) {
 368                        $smtp_encryption = 'ssl';
 369                }
 370        }
 371}
 372
 373# read configuration from [sendemail "$identity"], fall back on [sendemail]
 374$identity = Git::config(@repo, "sendemail.identity") unless (defined $identity);
 375read_config("sendemail.$identity") if (defined $identity);
 376read_config("sendemail");
 377
 378# fall back on builtin bool defaults
 379foreach my $setting (values %config_bool_settings) {
 380        ${$setting->[0]} = $setting->[1] unless (defined (${$setting->[0]}));
 381}
 382
 383# 'default' encryption is none -- this only prevents a warning
 384$smtp_encryption = '' unless (defined $smtp_encryption);
 385
 386# Set CC suppressions
 387my(%suppress_cc);
 388if (@suppress_cc) {
 389        foreach my $entry (@suppress_cc) {
 390                die "Unknown --suppress-cc field: '$entry'\n"
 391                        unless $entry =~ /^(?:all|cccmd|cc|author|self|sob|body|bodycc)$/;
 392                $suppress_cc{$entry} = 1;
 393        }
 394}
 395
 396if ($suppress_cc{'all'}) {
 397        foreach my $entry (qw (cccmd cc author self sob body bodycc)) {
 398                $suppress_cc{$entry} = 1;
 399        }
 400        delete $suppress_cc{'all'};
 401}
 402
 403# If explicit old-style ones are specified, they trump --suppress-cc.
 404$suppress_cc{'self'} = $suppress_from if defined $suppress_from;
 405$suppress_cc{'sob'} = !$signed_off_by_cc if defined $signed_off_by_cc;
 406
 407if ($suppress_cc{'body'}) {
 408        foreach my $entry (qw (sob bodycc)) {
 409                $suppress_cc{$entry} = 1;
 410        }
 411        delete $suppress_cc{'body'};
 412}
 413
 414# Set confirm's default value
 415my $confirm_unconfigured = !defined $confirm;
 416if ($confirm_unconfigured) {
 417        $confirm = scalar %suppress_cc ? 'compose' : 'auto';
 418};
 419die "Unknown --confirm setting: '$confirm'\n"
 420        unless $confirm =~ /^(?:auto|cc|compose|always|never)/;
 421
 422# Debugging, print out the suppressions.
 423if (0) {
 424        print "suppressions:\n";
 425        foreach my $entry (keys %suppress_cc) {
 426                printf "  %-5s -> $suppress_cc{$entry}\n", $entry;
 427        }
 428}
 429
 430my ($repoauthor, $repocommitter);
 431($repoauthor) = Git::ident_person(@repo, 'author');
 432($repocommitter) = Git::ident_person(@repo, 'committer');
 433
 434# Verify the user input
 435
 436foreach my $entry (@initial_to) {
 437        die "Comma in --to entry: $entry'\n" unless $entry !~ m/,/;
 438}
 439
 440foreach my $entry (@initial_cc) {
 441        die "Comma in --cc entry: $entry'\n" unless $entry !~ m/,/;
 442}
 443
 444foreach my $entry (@bcclist) {
 445        die "Comma in --bcclist entry: $entry'\n" unless $entry !~ m/,/;
 446}
 447
 448sub parse_address_line {
 449        if ($have_mail_address) {
 450                return map { $_->format } Mail::Address->parse($_[0]);
 451        } else {
 452                return split_addrs($_[0]);
 453        }
 454}
 455
 456sub split_addrs {
 457        return quotewords('\s*,\s*', 1, @_);
 458}
 459
 460my %aliases;
 461my %parse_alias = (
 462        # multiline formats can be supported in the future
 463        mutt => sub { my $fh = shift; while (<$fh>) {
 464                if (/^\s*alias\s+(?:-group\s+\S+\s+)*(\S+)\s+(.*)$/) {
 465                        my ($alias, $addr) = ($1, $2);
 466                        $addr =~ s/#.*$//; # mutt allows # comments
 467                         # commas delimit multiple addresses
 468                        $aliases{$alias} = [ split_addrs($addr) ];
 469                }}},
 470        mailrc => sub { my $fh = shift; while (<$fh>) {
 471                if (/^alias\s+(\S+)\s+(.*)$/) {
 472                        # spaces delimit multiple addresses
 473                        $aliases{$1} = [ quotewords('\s+', 0, $2) ];
 474                }}},
 475        pine => sub { my $fh = shift; my $f='\t[^\t]*';
 476                for (my $x = ''; defined($x); $x = $_) {
 477                        chomp $x;
 478                        $x .= $1 while(defined($_ = <$fh>) && /^ +(.*)$/);
 479                        $x =~ /^(\S+)$f\t\(?([^\t]+?)\)?(:?$f){0,2}$/ or next;
 480                        $aliases{$1} = [ split_addrs($2) ];
 481                }},
 482        elm => sub  { my $fh = shift;
 483                      while (<$fh>) {
 484                          if (/^(\S+)\s+=\s+[^=]+=\s(\S+)/) {
 485                              my ($alias, $addr) = ($1, $2);
 486                               $aliases{$alias} = [ split_addrs($addr) ];
 487                          }
 488                      } },
 489
 490        gnus => sub { my $fh = shift; while (<$fh>) {
 491                if (/\(define-mail-alias\s+"(\S+?)"\s+"(\S+?)"\)/) {
 492                        $aliases{$1} = [ $2 ];
 493                }}}
 494);
 495
 496if (@alias_files and $aliasfiletype and defined $parse_alias{$aliasfiletype}) {
 497        foreach my $file (@alias_files) {
 498                open my $fh, '<', $file or die "opening $file: $!\n";
 499                $parse_alias{$aliasfiletype}->($fh);
 500                close $fh;
 501        }
 502}
 503
 504($sender) = expand_aliases($sender) if defined $sender;
 505
 506# is_format_patch_arg($f) returns 0 if $f names a patch, or 1 if
 507# $f is a revision list specification to be passed to format-patch.
 508sub is_format_patch_arg {
 509        return unless $repo;
 510        my $f = shift;
 511        try {
 512                $repo->command('rev-parse', '--verify', '--quiet', $f);
 513                if (defined($format_patch)) {
 514                        return $format_patch;
 515                }
 516                die(<<EOF);
 517File '$f' exists but it could also be the range of commits
 518to produce patches for.  Please disambiguate by...
 519
 520    * Saying "./$f" if you mean a file; or
 521    * Giving --format-patch option if you mean a range.
 522EOF
 523        } catch Git::Error::Command with {
 524                # Not a valid revision.  Treat it as a filename.
 525                return 0;
 526        }
 527}
 528
 529# Now that all the defaults are set, process the rest of the command line
 530# arguments and collect up the files that need to be processed.
 531my @rev_list_opts;
 532while (defined(my $f = shift @ARGV)) {
 533        if ($f eq "--") {
 534                push @rev_list_opts, "--", @ARGV;
 535                @ARGV = ();
 536        } elsif (-d $f and !is_format_patch_arg($f)) {
 537                opendir my $dh, $f
 538                        or die "Failed to opendir $f: $!";
 539
 540                push @files, grep { -f $_ } map { catfile($f, $_) }
 541                                sort readdir $dh;
 542                closedir $dh;
 543        } elsif ((-f $f or -p $f) and !is_format_patch_arg($f)) {
 544                push @files, $f;
 545        } else {
 546                push @rev_list_opts, $f;
 547        }
 548}
 549
 550if (@rev_list_opts) {
 551        die "Cannot run git format-patch from outside a repository\n"
 552                unless $repo;
 553        push @files, $repo->command('format-patch', '-o', tempdir(CLEANUP => 1), @rev_list_opts);
 554}
 555
 556if ($validate) {
 557        foreach my $f (@files) {
 558                unless (-p $f) {
 559                        my $error = validate_patch($f);
 560                        $error and die "fatal: $f: $error\nwarning: no patches were sent\n";
 561                }
 562        }
 563}
 564
 565if (@files) {
 566        unless ($quiet) {
 567                print $_,"\n" for (@files);
 568        }
 569} else {
 570        print STDERR "\nNo patch files specified!\n\n";
 571        usage();
 572}
 573
 574sub get_patch_subject {
 575        my $fn = shift;
 576        open (my $fh, '<', $fn);
 577        while (my $line = <$fh>) {
 578                next unless ($line =~ /^Subject: (.*)$/);
 579                close $fh;
 580                return "GIT: $1\n";
 581        }
 582        close $fh;
 583        die "No subject line in $fn ?";
 584}
 585
 586if ($compose) {
 587        # Note that this does not need to be secure, but we will make a small
 588        # effort to have it be unique
 589        $compose_filename = ($repo ?
 590                tempfile(".gitsendemail.msg.XXXXXX", DIR => $repo->repo_path()) :
 591                tempfile(".gitsendemail.msg.XXXXXX", DIR => "."))[1];
 592        open my $c, ">", $compose_filename
 593                or die "Failed to open for writing $compose_filename: $!";
 594
 595
 596        my $tpl_sender = $sender || $repoauthor || $repocommitter || '';
 597        my $tpl_subject = $initial_subject || '';
 598        my $tpl_reply_to = $initial_reply_to || '';
 599
 600        print $c <<EOT;
 601From $tpl_sender # This line is ignored.
 602GIT: Lines beginning in "GIT:" will be removed.
 603GIT: Consider including an overall diffstat or table of contents
 604GIT: for the patch you are writing.
 605GIT:
 606GIT: Clear the body content if you don't wish to send a summary.
 607From: $tpl_sender
 608Subject: $tpl_subject
 609In-Reply-To: $tpl_reply_to
 610
 611EOT
 612        for my $f (@files) {
 613                print $c get_patch_subject($f);
 614        }
 615        close $c;
 616
 617        if ($annotate) {
 618                do_edit($compose_filename, @files);
 619        } else {
 620                do_edit($compose_filename);
 621        }
 622
 623        open my $c2, ">", $compose_filename . ".final"
 624                or die "Failed to open $compose_filename.final : " . $!;
 625
 626        open $c, "<", $compose_filename
 627                or die "Failed to open $compose_filename : " . $!;
 628
 629        my $need_8bit_cte = file_has_nonascii($compose_filename);
 630        my $in_body = 0;
 631        my $summary_empty = 1;
 632        if (!defined $compose_encoding) {
 633                $compose_encoding = "UTF-8";
 634        }
 635        while(<$c>) {
 636                next if m/^GIT:/;
 637                if ($in_body) {
 638                        $summary_empty = 0 unless (/^\n$/);
 639                } elsif (/^\n$/) {
 640                        $in_body = 1;
 641                        if ($need_8bit_cte) {
 642                                print $c2 "MIME-Version: 1.0\n",
 643                                         "Content-Type: text/plain; ",
 644                                           "charset=$compose_encoding\n",
 645                                         "Content-Transfer-Encoding: 8bit\n";
 646                        }
 647                } elsif (/^MIME-Version:/i) {
 648                        $need_8bit_cte = 0;
 649                } elsif (/^Subject:\s*(.+)\s*$/i) {
 650                        $initial_subject = $1;
 651                        my $subject = $initial_subject;
 652                        $_ = "Subject: " .
 653                                quote_subject($subject, $compose_encoding) .
 654                                "\n";
 655                } elsif (/^In-Reply-To:\s*(.+)\s*$/i) {
 656                        $initial_reply_to = $1;
 657                        next;
 658                } elsif (/^From:\s*(.+)\s*$/i) {
 659                        $sender = $1;
 660                        next;
 661                } elsif (/^(?:To|Cc|Bcc):/i) {
 662                        print "To/Cc/Bcc fields are not interpreted yet, they have been ignored\n";
 663                        next;
 664                }
 665                print $c2 $_;
 666        }
 667        close $c;
 668        close $c2;
 669
 670        if ($summary_empty) {
 671                print "Summary email is empty, skipping it\n";
 672                $compose = -1;
 673        }
 674} elsif ($annotate) {
 675        do_edit(@files);
 676}
 677
 678sub ask {
 679        my ($prompt, %arg) = @_;
 680        my $valid_re = $arg{valid_re};
 681        my $default = $arg{default};
 682        my $confirm_only = $arg{confirm_only};
 683        my $resp;
 684        my $i = 0;
 685        return defined $default ? $default : undef
 686                unless defined $term->IN and defined fileno($term->IN) and
 687                       defined $term->OUT and defined fileno($term->OUT);
 688        while ($i++ < 10) {
 689                $resp = $term->readline($prompt);
 690                if (!defined $resp) { # EOF
 691                        print "\n";
 692                        return defined $default ? $default : undef;
 693                }
 694                if ($resp eq '' and defined $default) {
 695                        return $default;
 696                }
 697                if (!defined $valid_re or $resp =~ /$valid_re/) {
 698                        return $resp;
 699                }
 700                if ($confirm_only) {
 701                        my $yesno = $term->readline("Are you sure you want to use <$resp> [y/N]? ");
 702                        if (defined $yesno && $yesno =~ /y/i) {
 703                                return $resp;
 704                        }
 705                }
 706        }
 707        return;
 708}
 709
 710my %broken_encoding;
 711
 712sub file_declares_8bit_cte {
 713        my $fn = shift;
 714        open (my $fh, '<', $fn);
 715        while (my $line = <$fh>) {
 716                last if ($line =~ /^$/);
 717                return 1 if ($line =~ /^Content-Transfer-Encoding: .*8bit.*$/);
 718        }
 719        close $fh;
 720        return 0;
 721}
 722
 723foreach my $f (@files) {
 724        next unless (body_or_subject_has_nonascii($f)
 725                     && !file_declares_8bit_cte($f));
 726        $broken_encoding{$f} = 1;
 727}
 728
 729if (!defined $auto_8bit_encoding && scalar %broken_encoding) {
 730        print "The following files are 8bit, but do not declare " .
 731                "a Content-Transfer-Encoding.\n";
 732        foreach my $f (sort keys %broken_encoding) {
 733                print "    $f\n";
 734        }
 735        $auto_8bit_encoding = ask("Which 8bit encoding should I declare [UTF-8]? ",
 736                                  default => "UTF-8");
 737}
 738
 739if (!$force) {
 740        for my $f (@files) {
 741                if (get_patch_subject($f) =~ /\Q*** SUBJECT HERE ***\E/) {
 742                        die "Refusing to send because the patch\n\t$f\n"
 743                                . "has the template subject '*** SUBJECT HERE ***'. "
 744                                . "Pass --force if you really want to send.\n";
 745                }
 746        }
 747}
 748
 749if (!defined $sender) {
 750        $sender = $repoauthor || $repocommitter || '';
 751}
 752
 753# $sender could be an already sanitized address
 754# (e.g. sendemail.from could be manually sanitized by user).
 755# But it's a no-op to run sanitize_address on an already sanitized address.
 756$sender = sanitize_address($sender);
 757
 758my $prompting = 0;
 759if (!@initial_to && !defined $to_cmd) {
 760        my $to = ask("Who should the emails be sent to (if any)? ",
 761                     default => "",
 762                     valid_re => qr/\@.*\./, confirm_only => 1);
 763        push @initial_to, parse_address_line($to) if defined $to; # sanitized/validated later
 764        $prompting++;
 765}
 766
 767sub expand_aliases {
 768        return map { expand_one_alias($_) } @_;
 769}
 770
 771my %EXPANDED_ALIASES;
 772sub expand_one_alias {
 773        my $alias = shift;
 774        if ($EXPANDED_ALIASES{$alias}) {
 775                die "fatal: alias '$alias' expands to itself\n";
 776        }
 777        local $EXPANDED_ALIASES{$alias} = 1;
 778        return $aliases{$alias} ? expand_aliases(@{$aliases{$alias}}) : $alias;
 779}
 780
 781@initial_to = expand_aliases(@initial_to);
 782@initial_to = validate_address_list(sanitize_address_list(@initial_to));
 783@initial_cc = expand_aliases(@initial_cc);
 784@initial_cc = validate_address_list(sanitize_address_list(@initial_cc));
 785@bcclist = expand_aliases(@bcclist);
 786@bcclist = validate_address_list(sanitize_address_list(@bcclist));
 787
 788if ($thread && !defined $initial_reply_to && $prompting) {
 789        $initial_reply_to = ask(
 790                "Message-ID to be used as In-Reply-To for the first email (if any)? ",
 791                default => "",
 792                valid_re => qr/\@.*\./, confirm_only => 1);
 793}
 794if (defined $initial_reply_to) {
 795        $initial_reply_to =~ s/^\s*<?//;
 796        $initial_reply_to =~ s/>?\s*$//;
 797        $initial_reply_to = "<$initial_reply_to>" if $initial_reply_to ne '';
 798}
 799
 800if (!defined $smtp_server) {
 801        foreach (qw( /usr/sbin/sendmail /usr/lib/sendmail )) {
 802                if (-x $_) {
 803                        $smtp_server = $_;
 804                        last;
 805                }
 806        }
 807        $smtp_server ||= 'localhost'; # could be 127.0.0.1, too... *shrug*
 808}
 809
 810if ($compose && $compose > 0) {
 811        @files = ($compose_filename . ".final", @files);
 812}
 813
 814# Variables we set as part of the loop over files
 815our ($message_id, %mail, $subject, $reply_to, $references, $message,
 816        $needs_confirm, $message_num, $ask_default);
 817
 818sub extract_valid_address {
 819        my $address = shift;
 820        my $local_part_regexp = qr/[^<>"\s@]+/;
 821        my $domain_regexp = qr/[^.<>"\s@]+(?:\.[^.<>"\s@]+)+/;
 822
 823        # check for a local address:
 824        return $address if ($address =~ /^($local_part_regexp)$/);
 825
 826        $address =~ s/^\s*<(.*)>\s*$/$1/;
 827        if ($have_email_valid) {
 828                return scalar Email::Valid->address($address);
 829        }
 830
 831        # less robust/correct than the monster regexp in Email::Valid,
 832        # but still does a 99% job, and one less dependency
 833        return $1 if $address =~ /($local_part_regexp\@$domain_regexp)/;
 834        return;
 835}
 836
 837sub extract_valid_address_or_die {
 838        my $address = shift;
 839        $address = extract_valid_address($address);
 840        die "error: unable to extract a valid address from: $address\n"
 841                if !$address;
 842        return $address;
 843}
 844
 845sub validate_address {
 846        my $address = shift;
 847        while (!extract_valid_address($address)) {
 848                print STDERR "error: unable to extract a valid address from: $address\n";
 849                $_ = ask("What to do with this address? ([q]uit|[d]rop|[e]dit): ",
 850                        valid_re => qr/^(?:quit|q|drop|d|edit|e)/i,
 851                        default => 'q');
 852                if (/^d/i) {
 853                        return undef;
 854                } elsif (/^q/i) {
 855                        cleanup_compose_files();
 856                        exit(0);
 857                }
 858                $address = ask("Who should the email be sent to (if any)? ",
 859                        default => "",
 860                        valid_re => qr/\@.*\./, confirm_only => 1);
 861        }
 862        return $address;
 863}
 864
 865sub validate_address_list {
 866        return (grep { defined $_ }
 867                map { validate_address($_) } @_);
 868}
 869
 870# Usually don't need to change anything below here.
 871
 872# we make a "fake" message id by taking the current number
 873# of seconds since the beginning of Unix time and tacking on
 874# a random number to the end, in case we are called quicker than
 875# 1 second since the last time we were called.
 876
 877# We'll setup a template for the message id, using the "from" address:
 878
 879my ($message_id_stamp, $message_id_serial);
 880sub make_message_id {
 881        my $uniq;
 882        if (!defined $message_id_stamp) {
 883                $message_id_stamp = sprintf("%s-%s", time, $$);
 884                $message_id_serial = 0;
 885        }
 886        $message_id_serial++;
 887        $uniq = "$message_id_stamp-$message_id_serial";
 888
 889        my $du_part;
 890        for ($sender, $repocommitter, $repoauthor) {
 891                $du_part = extract_valid_address(sanitize_address($_));
 892                last if (defined $du_part and $du_part ne '');
 893        }
 894        if (not defined $du_part or $du_part eq '') {
 895                require Sys::Hostname;
 896                $du_part = 'user@' . Sys::Hostname::hostname();
 897        }
 898        my $message_id_template = "<%s-git-send-email-%s>";
 899        $message_id = sprintf($message_id_template, $uniq, $du_part);
 900        #print "new message id = $message_id\n"; # Was useful for debugging
 901}
 902
 903
 904
 905$time = time - scalar $#files;
 906
 907sub unquote_rfc2047 {
 908        local ($_) = @_;
 909        my $encoding;
 910        s{=\?([^?]+)\?q\?(.*?)\?=}{
 911                $encoding = $1;
 912                my $e = $2;
 913                $e =~ s/_/ /g;
 914                $e =~ s/=([0-9A-F]{2})/chr(hex($1))/eg;
 915                $e;
 916        }eg;
 917        return wantarray ? ($_, $encoding) : $_;
 918}
 919
 920sub quote_rfc2047 {
 921        local $_ = shift;
 922        my $encoding = shift || 'UTF-8';
 923        s/([^-a-zA-Z0-9!*+\/])/sprintf("=%02X", ord($1))/eg;
 924        s/(.*)/=\?$encoding\?q\?$1\?=/;
 925        return $_;
 926}
 927
 928sub is_rfc2047_quoted {
 929        my $s = shift;
 930        my $token = qr/[^][()<>@,;:"\/?.= \000-\037\177-\377]+/;
 931        my $encoded_text = qr/[!->@-~]+/;
 932        length($s) <= 75 &&
 933        $s =~ m/^(?:"[[:ascii:]]*"|=\?$token\?$token\?$encoded_text\?=)$/o;
 934}
 935
 936sub subject_needs_rfc2047_quoting {
 937        my $s = shift;
 938
 939        return ($s =~ /[^[:ascii:]]/) || ($s =~ /=\?/);
 940}
 941
 942sub quote_subject {
 943        local $subject = shift;
 944        my $encoding = shift || 'UTF-8';
 945
 946        if (subject_needs_rfc2047_quoting($subject)) {
 947                return quote_rfc2047($subject, $encoding);
 948        }
 949        return $subject;
 950}
 951
 952# use the simplest quoting being able to handle the recipient
 953sub sanitize_address {
 954        my ($recipient) = @_;
 955
 956        # remove garbage after email address
 957        $recipient =~ s/(.*>).*$/$1/;
 958
 959        my ($recipient_name, $recipient_addr) = ($recipient =~ /^(.*?)\s*(<.*)/);
 960
 961        if (not $recipient_name) {
 962                return $recipient;
 963        }
 964
 965        # if recipient_name is already quoted, do nothing
 966        if (is_rfc2047_quoted($recipient_name)) {
 967                return $recipient;
 968        }
 969
 970        # rfc2047 is needed if a non-ascii char is included
 971        if ($recipient_name =~ /[^[:ascii:]]/) {
 972                $recipient_name =~ s/^"(.*)"$/$1/;
 973                $recipient_name = quote_rfc2047($recipient_name);
 974        }
 975
 976        # double quotes are needed if specials or CTLs are included
 977        elsif ($recipient_name =~ /[][()<>@,;:\\".\000-\037\177]/) {
 978                $recipient_name =~ s/(["\\\r])/\\$1/g;
 979                $recipient_name = qq["$recipient_name"];
 980        }
 981
 982        return "$recipient_name $recipient_addr";
 983
 984}
 985
 986sub sanitize_address_list {
 987        return (map { sanitize_address($_) } @_);
 988}
 989
 990# Returns the local Fully Qualified Domain Name (FQDN) if available.
 991#
 992# Tightly configured MTAa require that a caller sends a real DNS
 993# domain name that corresponds the IP address in the HELO/EHLO
 994# handshake. This is used to verify the connection and prevent
 995# spammers from trying to hide their identity. If the DNS and IP don't
 996# match, the receiveing MTA may deny the connection.
 997#
 998# Here is a deny example of Net::SMTP with the default "localhost.localdomain"
 999#
1000# Net::SMTP=GLOB(0x267ec28)>>> EHLO localhost.localdomain
1001# Net::SMTP=GLOB(0x267ec28)<<< 550 EHLO argument does not match calling host
1002#
1003# This maildomain*() code is based on ideas in Perl library Test::Reporter
1004# /usr/share/perl5/Test/Reporter/Mail/Util.pm ==> sub _maildomain ()
1005
1006sub valid_fqdn {
1007        my $domain = shift;
1008        return defined $domain && !($^O eq 'darwin' && $domain =~ /\.local$/) && $domain =~ /\./;
1009}
1010
1011sub maildomain_net {
1012        my $maildomain;
1013
1014        if (eval { require Net::Domain; 1 }) {
1015                my $domain = Net::Domain::domainname();
1016                $maildomain = $domain if valid_fqdn($domain);
1017        }
1018
1019        return $maildomain;
1020}
1021
1022sub maildomain_mta {
1023        my $maildomain;
1024
1025        if (eval { require Net::SMTP; 1 }) {
1026                for my $host (qw(mailhost localhost)) {
1027                        my $smtp = Net::SMTP->new($host);
1028                        if (defined $smtp) {
1029                                my $domain = $smtp->domain;
1030                                $smtp->quit;
1031
1032                                $maildomain = $domain if valid_fqdn($domain);
1033
1034                                last if $maildomain;
1035                        }
1036                }
1037        }
1038
1039        return $maildomain;
1040}
1041
1042sub maildomain {
1043        return maildomain_net() || maildomain_mta() || 'localhost.localdomain';
1044}
1045
1046sub smtp_host_string {
1047        if (defined $smtp_server_port) {
1048                return "$smtp_server:$smtp_server_port";
1049        } else {
1050                return $smtp_server;
1051        }
1052}
1053
1054# Returns 1 if authentication succeeded or was not necessary
1055# (smtp_user was not specified), and 0 otherwise.
1056
1057sub smtp_auth_maybe {
1058        if (!defined $smtp_authuser || $auth) {
1059                return 1;
1060        }
1061
1062        # Workaround AUTH PLAIN/LOGIN interaction defect
1063        # with Authen::SASL::Cyrus
1064        eval {
1065                require Authen::SASL;
1066                Authen::SASL->import(qw(Perl));
1067        };
1068
1069        # TODO: Authentication may fail not because credentials were
1070        # invalid but due to other reasons, in which we should not
1071        # reject credentials.
1072        $auth = Git::credential({
1073                'protocol' => 'smtp',
1074                'host' => smtp_host_string(),
1075                'username' => $smtp_authuser,
1076                # if there's no password, "git credential fill" will
1077                # give us one, otherwise it'll just pass this one.
1078                'password' => $smtp_authpass
1079        }, sub {
1080                my $cred = shift;
1081                return !!$smtp->auth($cred->{'username'}, $cred->{'password'});
1082        });
1083
1084        return $auth;
1085}
1086
1087sub ssl_verify_params {
1088        eval {
1089                require IO::Socket::SSL;
1090                IO::Socket::SSL->import(qw/SSL_VERIFY_PEER SSL_VERIFY_NONE/);
1091        };
1092        if ($@) {
1093                print STDERR "Not using SSL_VERIFY_PEER due to out-of-date IO::Socket::SSL.\n";
1094                return;
1095        }
1096
1097        if (!defined $smtp_ssl_cert_path) {
1098                $smtp_ssl_cert_path = "/etc/ssl/certs";
1099        }
1100
1101        if ($smtp_ssl_cert_path eq "") {
1102                return (SSL_verify_mode => SSL_VERIFY_NONE());
1103        } elsif (-d $smtp_ssl_cert_path) {
1104                return (SSL_verify_mode => SSL_VERIFY_PEER(),
1105                        SSL_ca_path => $smtp_ssl_cert_path);
1106        } elsif (-f $smtp_ssl_cert_path) {
1107                return (SSL_verify_mode => SSL_VERIFY_PEER(),
1108                        SSL_ca_file => $smtp_ssl_cert_path);
1109        } else {
1110                print STDERR "Not using SSL_VERIFY_PEER because the CA path does not exist.\n";
1111                return (SSL_verify_mode => SSL_VERIFY_NONE());
1112        }
1113}
1114
1115# Returns 1 if the message was sent, and 0 otherwise.
1116# In actuality, the whole program dies when there
1117# is an error sending a message.
1118
1119sub send_message {
1120        my @recipients = unique_email_list(@to);
1121        @cc = (grep { my $cc = extract_valid_address_or_die($_);
1122                      not grep { $cc eq $_ || $_ =~ /<\Q${cc}\E>$/ } @recipients
1123                    }
1124               @cc);
1125        my $to = join (",\n\t", @recipients);
1126        @recipients = unique_email_list(@recipients,@cc,@bcclist);
1127        @recipients = (map { extract_valid_address_or_die($_) } @recipients);
1128        my $date = format_2822_time($time++);
1129        my $gitversion = '@@GIT_VERSION@@';
1130        if ($gitversion =~ m/..GIT_VERSION../) {
1131            $gitversion = Git::version();
1132        }
1133
1134        my $cc = join(",\n\t", unique_email_list(@cc));
1135        my $ccline = "";
1136        if ($cc ne '') {
1137                $ccline = "\nCc: $cc";
1138        }
1139        make_message_id() unless defined($message_id);
1140
1141        my $header = "From: $sender
1142To: $to${ccline}
1143Subject: $subject
1144Date: $date
1145Message-Id: $message_id
1146X-Mailer: git-send-email $gitversion
1147";
1148        if ($reply_to) {
1149
1150                $header .= "In-Reply-To: $reply_to\n";
1151                $header .= "References: $references\n";
1152        }
1153        if (@xh) {
1154                $header .= join("\n", @xh) . "\n";
1155        }
1156
1157        my @sendmail_parameters = ('-i', @recipients);
1158        my $raw_from = $sender;
1159        if (defined $envelope_sender && $envelope_sender ne "auto") {
1160                $raw_from = $envelope_sender;
1161        }
1162        $raw_from = extract_valid_address($raw_from);
1163        unshift (@sendmail_parameters,
1164                        '-f', $raw_from) if(defined $envelope_sender);
1165
1166        if ($needs_confirm && !$dry_run) {
1167                print "\n$header\n";
1168                if ($needs_confirm eq "inform") {
1169                        $confirm_unconfigured = 0; # squelch this message for the rest of this run
1170                        $ask_default = "y"; # assume yes on EOF since user hasn't explicitly asked for confirmation
1171                        print "    The Cc list above has been expanded by additional\n";
1172                        print "    addresses found in the patch commit message. By default\n";
1173                        print "    send-email prompts before sending whenever this occurs.\n";
1174                        print "    This behavior is controlled by the sendemail.confirm\n";
1175                        print "    configuration setting.\n";
1176                        print "\n";
1177                        print "    For additional information, run 'git send-email --help'.\n";
1178                        print "    To retain the current behavior, but squelch this message,\n";
1179                        print "    run 'git config --global sendemail.confirm auto'.\n\n";
1180                }
1181                $_ = ask("Send this email? ([y]es|[n]o|[q]uit|[a]ll): ",
1182                         valid_re => qr/^(?:yes|y|no|n|quit|q|all|a)/i,
1183                         default => $ask_default);
1184                die "Send this email reply required" unless defined $_;
1185                if (/^n/i) {
1186                        return 0;
1187                } elsif (/^q/i) {
1188                        cleanup_compose_files();
1189                        exit(0);
1190                } elsif (/^a/i) {
1191                        $confirm = 'never';
1192                }
1193        }
1194
1195        unshift (@sendmail_parameters, @smtp_server_options);
1196
1197        if ($dry_run) {
1198                # We don't want to send the email.
1199        } elsif ($smtp_server =~ m#^/#) {
1200                my $pid = open my $sm, '|-';
1201                defined $pid or die $!;
1202                if (!$pid) {
1203                        exec($smtp_server, @sendmail_parameters) or die $!;
1204                }
1205                print $sm "$header\n$message";
1206                close $sm or die $!;
1207        } else {
1208
1209                if (!defined $smtp_server) {
1210                        die "The required SMTP server is not properly defined."
1211                }
1212
1213                if ($smtp_encryption eq 'ssl') {
1214                        $smtp_server_port ||= 465; # ssmtp
1215                        require Net::SMTP::SSL;
1216                        $smtp_domain ||= maildomain();
1217                        $smtp ||= Net::SMTP::SSL->new($smtp_server,
1218                                                      Hello => $smtp_domain,
1219                                                      Port => $smtp_server_port,
1220                                                      ssl_verify_params());
1221                }
1222                else {
1223                        require Net::SMTP;
1224                        $smtp_domain ||= maildomain();
1225                        $smtp_server_port ||= 25;
1226                        $smtp ||= Net::SMTP->new($smtp_server,
1227                                                 Hello => $smtp_domain,
1228                                                 Debug => $debug_net_smtp,
1229                                                 Port => $smtp_server_port);
1230                        if ($smtp_encryption eq 'tls' && $smtp) {
1231                                require Net::SMTP::SSL;
1232                                $smtp->command('STARTTLS');
1233                                $smtp->response();
1234                                if ($smtp->code == 220) {
1235                                        $smtp = Net::SMTP::SSL->start_SSL($smtp,
1236                                                                          ssl_verify_params())
1237                                                or die "STARTTLS failed! ".IO::Socket::SSL::errstr();
1238                                        $smtp_encryption = '';
1239                                        # Send EHLO again to receive fresh
1240                                        # supported commands
1241                                        $smtp->hello($smtp_domain);
1242                                } else {
1243                                        die "Server does not support STARTTLS! ".$smtp->message;
1244                                }
1245                        }
1246                }
1247
1248                if (!$smtp) {
1249                        die "Unable to initialize SMTP properly. Check config and use --smtp-debug. ",
1250                            "VALUES: server=$smtp_server ",
1251                            "encryption=$smtp_encryption ",
1252                            "hello=$smtp_domain",
1253                            defined $smtp_server_port ? " port=$smtp_server_port" : "";
1254                }
1255
1256                smtp_auth_maybe or die $smtp->message;
1257
1258                $smtp->mail( $raw_from ) or die $smtp->message;
1259                $smtp->to( @recipients ) or die $smtp->message;
1260                $smtp->data or die $smtp->message;
1261                $smtp->datasend("$header\n$message") or die $smtp->message;
1262                $smtp->dataend() or die $smtp->message;
1263                $smtp->code =~ /250|200/ or die "Failed to send $subject\n".$smtp->message;
1264        }
1265        if ($quiet) {
1266                printf (($dry_run ? "Dry-" : "")."Sent %s\n", $subject);
1267        } else {
1268                print (($dry_run ? "Dry-" : "")."OK. Log says:\n");
1269                if ($smtp_server !~ m#^/#) {
1270                        print "Server: $smtp_server\n";
1271                        print "MAIL FROM:<$raw_from>\n";
1272                        foreach my $entry (@recipients) {
1273                            print "RCPT TO:<$entry>\n";
1274                        }
1275                } else {
1276                        print "Sendmail: $smtp_server ".join(' ',@sendmail_parameters)."\n";
1277                }
1278                print $header, "\n";
1279                if ($smtp) {
1280                        print "Result: ", $smtp->code, ' ',
1281                                ($smtp->message =~ /\n([^\n]+\n)$/s), "\n";
1282                } else {
1283                        print "Result: OK\n";
1284                }
1285        }
1286
1287        return 1;
1288}
1289
1290$reply_to = $initial_reply_to;
1291$references = $initial_reply_to || '';
1292$subject = $initial_subject;
1293$message_num = 0;
1294
1295foreach my $t (@files) {
1296        open my $fh, "<", $t or die "can't open file $t";
1297
1298        my $author = undef;
1299        my $sauthor = undef;
1300        my $author_encoding;
1301        my $has_content_type;
1302        my $body_encoding;
1303        @to = ();
1304        @cc = ();
1305        @xh = ();
1306        my $input_format = undef;
1307        my @header = ();
1308        $message = "";
1309        $message_num++;
1310        # First unfold multiline header fields
1311        while(<$fh>) {
1312                last if /^\s*$/;
1313                if (/^\s+\S/ and @header) {
1314                        chomp($header[$#header]);
1315                        s/^\s+/ /;
1316                        $header[$#header] .= $_;
1317            } else {
1318                        push(@header, $_);
1319                }
1320        }
1321        # Now parse the header
1322        foreach(@header) {
1323                if (/^From /) {
1324                        $input_format = 'mbox';
1325                        next;
1326                }
1327                chomp;
1328                if (!defined $input_format && /^[-A-Za-z]+:\s/) {
1329                        $input_format = 'mbox';
1330                }
1331
1332                if (defined $input_format && $input_format eq 'mbox') {
1333                        if (/^Subject:\s+(.*)$/i) {
1334                                $subject = $1;
1335                        }
1336                        elsif (/^From:\s+(.*)$/i) {
1337                                ($author, $author_encoding) = unquote_rfc2047($1);
1338                                $sauthor = sanitize_address($author);
1339                                next if $suppress_cc{'author'};
1340                                next if $suppress_cc{'self'} and $sauthor eq $sender;
1341                                printf("(mbox) Adding cc: %s from line '%s'\n",
1342                                        $1, $_) unless $quiet;
1343                                push @cc, $1;
1344                        }
1345                        elsif (/^To:\s+(.*)$/i) {
1346                                foreach my $addr (parse_address_line($1)) {
1347                                        printf("(mbox) Adding to: %s from line '%s'\n",
1348                                                $addr, $_) unless $quiet;
1349                                        push @to, $addr;
1350                                }
1351                        }
1352                        elsif (/^Cc:\s+(.*)$/i) {
1353                                foreach my $addr (parse_address_line($1)) {
1354                                        my $qaddr = unquote_rfc2047($addr);
1355                                        my $saddr = sanitize_address($qaddr);
1356                                        if ($saddr eq $sender) {
1357                                                next if ($suppress_cc{'self'});
1358                                        } else {
1359                                                next if ($suppress_cc{'cc'});
1360                                        }
1361                                        printf("(mbox) Adding cc: %s from line '%s'\n",
1362                                                $addr, $_) unless $quiet;
1363                                        push @cc, $addr;
1364                                }
1365                        }
1366                        elsif (/^Content-type:/i) {
1367                                $has_content_type = 1;
1368                                if (/charset="?([^ "]+)/) {
1369                                        $body_encoding = $1;
1370                                }
1371                                push @xh, $_;
1372                        }
1373                        elsif (/^Message-Id: (.*)/i) {
1374                                $message_id = $1;
1375                        }
1376                        elsif (!/^Date:\s/i && /^[-A-Za-z]+:\s+\S/) {
1377                                push @xh, $_;
1378                        }
1379
1380                } else {
1381                        # In the traditional
1382                        # "send lots of email" format,
1383                        # line 1 = cc
1384                        # line 2 = subject
1385                        # So let's support that, too.
1386                        $input_format = 'lots';
1387                        if (@cc == 0 && !$suppress_cc{'cc'}) {
1388                                printf("(non-mbox) Adding cc: %s from line '%s'\n",
1389                                        $_, $_) unless $quiet;
1390                                push @cc, $_;
1391                        } elsif (!defined $subject) {
1392                                $subject = $_;
1393                        }
1394                }
1395        }
1396        # Now parse the message body
1397        while(<$fh>) {
1398                $message .=  $_;
1399                if (/^(Signed-off-by|Cc): (.*)$/i) {
1400                        chomp;
1401                        my ($what, $c) = ($1, $2);
1402                        chomp $c;
1403                        my $sc = sanitize_address($c);
1404                        if ($sc eq $sender) {
1405                                next if ($suppress_cc{'self'});
1406                        } else {
1407                                next if $suppress_cc{'sob'} and $what =~ /Signed-off-by/i;
1408                                next if $suppress_cc{'bodycc'} and $what =~ /Cc/i;
1409                        }
1410                        push @cc, $c;
1411                        printf("(body) Adding cc: %s from line '%s'\n",
1412                                $c, $_) unless $quiet;
1413                }
1414        }
1415        close $fh;
1416
1417        push @to, recipients_cmd("to-cmd", "to", $to_cmd, $t)
1418                if defined $to_cmd;
1419        push @cc, recipients_cmd("cc-cmd", "cc", $cc_cmd, $t)
1420                if defined $cc_cmd && !$suppress_cc{'cccmd'};
1421
1422        if ($broken_encoding{$t} && !$has_content_type) {
1423                $has_content_type = 1;
1424                push @xh, "MIME-Version: 1.0",
1425                        "Content-Type: text/plain; charset=$auto_8bit_encoding",
1426                        "Content-Transfer-Encoding: 8bit";
1427                $body_encoding = $auto_8bit_encoding;
1428        }
1429
1430        if ($broken_encoding{$t} && !is_rfc2047_quoted($subject)) {
1431                $subject = quote_subject($subject, $auto_8bit_encoding);
1432        }
1433
1434        if (defined $sauthor and $sauthor ne $sender) {
1435                $message = "From: $author\n\n$message";
1436                if (defined $author_encoding) {
1437                        if ($has_content_type) {
1438                                if ($body_encoding eq $author_encoding) {
1439                                        # ok, we already have the right encoding
1440                                }
1441                                else {
1442                                        # uh oh, we should re-encode
1443                                }
1444                        }
1445                        else {
1446                                $has_content_type = 1;
1447                                push @xh,
1448                                  'MIME-Version: 1.0',
1449                                  "Content-Type: text/plain; charset=$author_encoding",
1450                                  'Content-Transfer-Encoding: 8bit';
1451                        }
1452                }
1453        }
1454
1455        $needs_confirm = (
1456                $confirm eq "always" or
1457                ($confirm =~ /^(?:auto|cc)$/ && @cc) or
1458                ($confirm =~ /^(?:auto|compose)$/ && $compose && $message_num == 1));
1459        $needs_confirm = "inform" if ($needs_confirm && $confirm_unconfigured && @cc);
1460
1461        @to = validate_address_list(sanitize_address_list(@to));
1462        @cc = validate_address_list(sanitize_address_list(@cc));
1463
1464        @to = (@initial_to, @to);
1465        @cc = (@initial_cc, @cc);
1466
1467        my $message_was_sent = send_message();
1468
1469        # set up for the next message
1470        if ($thread && $message_was_sent &&
1471                ($chain_reply_to || !defined $reply_to || length($reply_to) == 0 ||
1472                $message_num == 1)) {
1473                $reply_to = $message_id;
1474                if (length $references > 0) {
1475                        $references .= "\n $message_id";
1476                } else {
1477                        $references = "$message_id";
1478                }
1479        }
1480        $message_id = undef;
1481}
1482
1483# Execute a command (e.g. $to_cmd) to get a list of email addresses
1484# and return a results array
1485sub recipients_cmd {
1486        my ($prefix, $what, $cmd, $file) = @_;
1487
1488        my @addresses = ();
1489        open my $fh, "-|", "$cmd \Q$file\E"
1490            or die "($prefix) Could not execute '$cmd'";
1491        while (my $address = <$fh>) {
1492                $address =~ s/^\s*//g;
1493                $address =~ s/\s*$//g;
1494                $address = sanitize_address($address);
1495                next if ($address eq $sender and $suppress_cc{'self'});
1496                push @addresses, $address;
1497                printf("($prefix) Adding %s: %s from: '%s'\n",
1498                       $what, $address, $cmd) unless $quiet;
1499                }
1500        close $fh
1501            or die "($prefix) failed to close pipe to '$cmd'";
1502        return @addresses;
1503}
1504
1505cleanup_compose_files();
1506
1507sub cleanup_compose_files {
1508        unlink($compose_filename, $compose_filename . ".final") if $compose;
1509}
1510
1511$smtp->quit if $smtp;
1512
1513sub unique_email_list {
1514        my %seen;
1515        my @emails;
1516
1517        foreach my $entry (@_) {
1518                my $clean = extract_valid_address_or_die($entry);
1519                $seen{$clean} ||= 0;
1520                next if $seen{$clean}++;
1521                push @emails, $entry;
1522        }
1523        return @emails;
1524}
1525
1526sub validate_patch {
1527        my $fn = shift;
1528        open(my $fh, '<', $fn)
1529                or die "unable to open $fn: $!\n";
1530        while (my $line = <$fh>) {
1531                if (length($line) > 998) {
1532                        return "$.: patch contains a line longer than 998 characters";
1533                }
1534        }
1535        return;
1536}
1537
1538sub file_has_nonascii {
1539        my $fn = shift;
1540        open(my $fh, '<', $fn)
1541                or die "unable to open $fn: $!\n";
1542        while (my $line = <$fh>) {
1543                return 1 if $line =~ /[^[:ascii:]]/;
1544        }
1545        return 0;
1546}
1547
1548sub body_or_subject_has_nonascii {
1549        my $fn = shift;
1550        open(my $fh, '<', $fn)
1551                or die "unable to open $fn: $!\n";
1552        while (my $line = <$fh>) {
1553                last if $line =~ /^$/;
1554                return 1 if $line =~ /^Subject.*[^[:ascii:]]/;
1555        }
1556        while (my $line = <$fh>) {
1557                return 1 if $line =~ /[^[:ascii:]]/;
1558        }
1559        return 0;
1560}