Merge branch 'jc/http-socks5h' into maint
[git.git] / git-send-email.perl
blobbc74ec979eb58754c47a5645f35f02c465d0ec54
1 #!/usr/bin/perl
3 # Copyright 2002,2005 Greg Kroah-Hartman <greg@kroah.com>
4 # Copyright 2005 Ryan Anderson <ryan@michonline.com>
6 # GPL v2 (See COPYING)
8 # Ported to support git "mbox" format files by Ryan Anderson <ryan@michonline.com>
10 # Sends a collection of emails to the given email addresses, disturbingly fast.
12 # Supports two formats:
13 # 1. mbox format files (ignoring most headers and MIME formatting - this is designed for sending patches)
14 # 2. The original format support by Greg's script:
15 # first line of the message is who to CC,
16 # and second line is the subject of the message.
19 use 5.008;
20 use strict;
21 use warnings;
22 use POSIX qw/strftime/;
23 use Term::ReadLine;
24 use Getopt::Long;
25 use Text::ParseWords;
26 use Data::Dumper;
27 use Term::ANSIColor;
28 use File::Temp qw/ tempdir tempfile /;
29 use File::Spec::Functions qw(catfile);
30 use Error qw(:try);
31 use Git;
33 Getopt::Long::Configure qw/ pass_through /;
35 package FakeTerm;
36 sub new {
37 my ($class, $reason) = @_;
38 return bless \$reason, shift;
40 sub readline {
41 my $self = shift;
42 die "Cannot use readline on FakeTerm: $$self";
44 package main;
47 sub usage {
48 print <<EOT;
49 git send-email [options] <file | directory | rev-list options >
50 git send-email --dump-aliases
52 Composing:
53 --from <str> * Email From:
54 --[no-]to <str> * Email To:
55 --[no-]cc <str> * Email Cc:
56 --[no-]bcc <str> * Email Bcc:
57 --subject <str> * Email "Subject:"
58 --in-reply-to <str> * Email "In-Reply-To:"
59 --[no-]xmailer * Add "X-Mailer:" header (default).
60 --[no-]annotate * Review each patch that will be sent in an editor.
61 --compose * Open an editor for introduction.
62 --compose-encoding <str> * Encoding to assume for introduction.
63 --8bit-encoding <str> * Encoding to assume 8bit mails if undeclared
64 --transfer-encoding <str> * Transfer encoding to use (quoted-printable, 8bit, base64)
66 Sending:
67 --envelope-sender <str> * Email envelope sender.
68 --smtp-server <str:int> * Outgoing SMTP server to use. The port
69 is optional. Default 'localhost'.
70 --smtp-server-option <str> * Outgoing SMTP server option to use.
71 --smtp-server-port <int> * Outgoing SMTP server port.
72 --smtp-user <str> * Username for SMTP-AUTH.
73 --smtp-pass <str> * Password for SMTP-AUTH; not necessary.
74 --smtp-encryption <str> * tls or ssl; anything else disables.
75 --smtp-ssl * Deprecated. Use '--smtp-encryption ssl'.
76 --smtp-ssl-cert-path <str> * Path to ca-certificates (either directory or file).
77 Pass an empty string to disable certificate
78 verification.
79 --smtp-domain <str> * The domain name sent to HELO/EHLO handshake
80 --smtp-auth <str> * Space-separated list of allowed AUTH mechanisms.
81 This setting forces to use one of the listed mechanisms.
82 --smtp-debug <0|1> * Disable, enable Net::SMTP debug.
84 Automating:
85 --identity <str> * Use the sendemail.<id> options.
86 --to-cmd <str> * Email To: via `<str> \$patch_path`
87 --cc-cmd <str> * Email Cc: via `<str> \$patch_path`
88 --suppress-cc <str> * author, self, sob, cc, cccmd, body, bodycc, all.
89 --[no-]cc-cover * Email Cc: addresses in the cover letter.
90 --[no-]to-cover * Email To: addresses in the cover letter.
91 --[no-]signed-off-by-cc * Send to Signed-off-by: addresses. Default on.
92 --[no-]suppress-from * Send to self. Default off.
93 --[no-]chain-reply-to * Chain In-Reply-To: fields. Default off.
94 --[no-]thread * Use In-Reply-To: field. Default on.
96 Administering:
97 --confirm <str> * Confirm recipients before sending;
98 auto, cc, compose, always, or never.
99 --quiet * Output one line of info per email.
100 --dry-run * Don't actually send the emails.
101 --[no-]validate * Perform patch sanity checks. Default on.
102 --[no-]format-patch * understand any non optional arguments as
103 `git format-patch` ones.
104 --force * Send even if safety checks would prevent it.
106 Information:
107 --dump-aliases * Dump configured aliases and exit.
110 exit(1);
113 # most mail servers generate the Date: header, but not all...
114 sub format_2822_time {
115 my ($time) = @_;
116 my @localtm = localtime($time);
117 my @gmttm = gmtime($time);
118 my $localmin = $localtm[1] + $localtm[2] * 60;
119 my $gmtmin = $gmttm[1] + $gmttm[2] * 60;
120 if ($localtm[0] != $gmttm[0]) {
121 die "local zone differs from GMT by a non-minute interval\n";
123 if ((($gmttm[6] + 1) % 7) == $localtm[6]) {
124 $localmin += 1440;
125 } elsif ((($gmttm[6] - 1) % 7) == $localtm[6]) {
126 $localmin -= 1440;
127 } elsif ($gmttm[6] != $localtm[6]) {
128 die "local time offset greater than or equal to 24 hours\n";
130 my $offset = $localmin - $gmtmin;
131 my $offhour = $offset / 60;
132 my $offmin = abs($offset % 60);
133 if (abs($offhour) >= 24) {
134 die ("local time offset greater than or equal to 24 hours\n");
137 return sprintf("%s, %2d %s %d %02d:%02d:%02d %s%02d%02d",
138 qw(Sun Mon Tue Wed Thu Fri Sat)[$localtm[6]],
139 $localtm[3],
140 qw(Jan Feb Mar Apr May Jun
141 Jul Aug Sep Oct Nov Dec)[$localtm[4]],
142 $localtm[5]+1900,
143 $localtm[2],
144 $localtm[1],
145 $localtm[0],
146 ($offset >= 0) ? '+' : '-',
147 abs($offhour),
148 $offmin,
152 my $have_email_valid = eval { require Email::Valid; 1 };
153 my $have_mail_address = eval { require Mail::Address; 1 };
154 my $smtp;
155 my $auth;
157 # Regexes for RFC 2047 productions.
158 my $re_token = qr/[^][()<>@,;:\\"\/?.= \000-\037\177-\377]+/;
159 my $re_encoded_text = qr/[^? \000-\037\177-\377]+/;
160 my $re_encoded_word = qr/=\?($re_token)\?($re_token)\?($re_encoded_text)\?=/;
162 # Variables we fill in automatically, or via prompting:
163 my (@to,$no_to,@initial_to,@cc,$no_cc,@initial_cc,@bcclist,$no_bcc,@xh,
164 $initial_reply_to,$initial_subject,@files,
165 $author,$sender,$smtp_authpass,$annotate,$use_xmailer,$compose,$time);
167 my $envelope_sender;
169 # Example reply to:
170 #$initial_reply_to = ''; #<20050203173208.GA23964@foobar.com>';
172 my $repo = eval { Git->repository() };
173 my @repo = $repo ? ($repo) : ();
174 my $term = eval {
175 $ENV{"GIT_SEND_EMAIL_NOTTY"}
176 ? new Term::ReadLine 'git-send-email', \*STDIN, \*STDOUT
177 : new Term::ReadLine 'git-send-email';
179 if ($@) {
180 $term = new FakeTerm "$@: going non-interactive";
183 # Behavior modification variables
184 my ($quiet, $dry_run) = (0, 0);
185 my $format_patch;
186 my $compose_filename;
187 my $force = 0;
188 my $dump_aliases = 0;
190 # Handle interactive edition of files.
191 my $multiedit;
192 my $editor;
194 sub do_edit {
195 if (!defined($editor)) {
196 $editor = Git::command_oneline('var', 'GIT_EDITOR');
198 if (defined($multiedit) && !$multiedit) {
199 map {
200 system('sh', '-c', $editor.' "$@"', $editor, $_);
201 if (($? & 127) || ($? >> 8)) {
202 die("the editor exited uncleanly, aborting everything");
204 } @_;
205 } else {
206 system('sh', '-c', $editor.' "$@"', $editor, @_);
207 if (($? & 127) || ($? >> 8)) {
208 die("the editor exited uncleanly, aborting everything");
213 # Variables with corresponding config settings
214 my ($thread, $chain_reply_to, $suppress_from, $signed_off_by_cc);
215 my ($cover_cc, $cover_to);
216 my ($to_cmd, $cc_cmd);
217 my ($smtp_server, $smtp_server_port, @smtp_server_options);
218 my ($smtp_authuser, $smtp_encryption, $smtp_ssl_cert_path);
219 my ($identity, $aliasfiletype, @alias_files, $smtp_domain, $smtp_auth);
220 my ($validate, $confirm);
221 my (@suppress_cc);
222 my ($auto_8bit_encoding);
223 my ($compose_encoding);
224 my ($target_xfer_encoding);
226 my ($debug_net_smtp) = 0; # Net::SMTP, see send_message()
228 my %config_bool_settings = (
229 "thread" => [\$thread, 1],
230 "chainreplyto" => [\$chain_reply_to, 0],
231 "suppressfrom" => [\$suppress_from, undef],
232 "signedoffbycc" => [\$signed_off_by_cc, undef],
233 "cccover" => [\$cover_cc, undef],
234 "tocover" => [\$cover_to, undef],
235 "signedoffcc" => [\$signed_off_by_cc, undef], # Deprecated
236 "validate" => [\$validate, 1],
237 "multiedit" => [\$multiedit, undef],
238 "annotate" => [\$annotate, undef],
239 "xmailer" => [\$use_xmailer, 1]
242 my %config_settings = (
243 "smtpserver" => \$smtp_server,
244 "smtpserverport" => \$smtp_server_port,
245 "smtpserveroption" => \@smtp_server_options,
246 "smtpuser" => \$smtp_authuser,
247 "smtppass" => \$smtp_authpass,
248 "smtpdomain" => \$smtp_domain,
249 "smtpauth" => \$smtp_auth,
250 "to" => \@initial_to,
251 "tocmd" => \$to_cmd,
252 "cc" => \@initial_cc,
253 "cccmd" => \$cc_cmd,
254 "aliasfiletype" => \$aliasfiletype,
255 "bcc" => \@bcclist,
256 "suppresscc" => \@suppress_cc,
257 "envelopesender" => \$envelope_sender,
258 "confirm" => \$confirm,
259 "from" => \$sender,
260 "assume8bitencoding" => \$auto_8bit_encoding,
261 "composeencoding" => \$compose_encoding,
262 "transferencoding" => \$target_xfer_encoding,
265 my %config_path_settings = (
266 "aliasesfile" => \@alias_files,
267 "smtpsslcertpath" => \$smtp_ssl_cert_path,
270 # Handle Uncouth Termination
271 sub signal_handler {
273 # Make text normal
274 print color("reset"), "\n";
276 # SMTP password masked
277 system "stty echo";
279 # tmp files from --compose
280 if (defined $compose_filename) {
281 if (-e $compose_filename) {
282 print "'$compose_filename' contains an intermediate version of the email you were composing.\n";
284 if (-e ($compose_filename . ".final")) {
285 print "'$compose_filename.final' contains the composed email.\n"
289 exit;
292 $SIG{TERM} = \&signal_handler;
293 $SIG{INT} = \&signal_handler;
295 # Begin by accumulating all the variables (defined above), that we will end up
296 # needing, first, from the command line:
298 my $help;
299 my $rc = GetOptions("h" => \$help,
300 "dump-aliases" => \$dump_aliases);
301 usage() unless $rc;
302 die "--dump-aliases incompatible with other options\n"
303 if !$help and $dump_aliases and @ARGV;
304 $rc = GetOptions(
305 "sender|from=s" => \$sender,
306 "in-reply-to=s" => \$initial_reply_to,
307 "subject=s" => \$initial_subject,
308 "to=s" => \@initial_to,
309 "to-cmd=s" => \$to_cmd,
310 "no-to" => \$no_to,
311 "cc=s" => \@initial_cc,
312 "no-cc" => \$no_cc,
313 "bcc=s" => \@bcclist,
314 "no-bcc" => \$no_bcc,
315 "chain-reply-to!" => \$chain_reply_to,
316 "no-chain-reply-to" => sub {$chain_reply_to = 0},
317 "smtp-server=s" => \$smtp_server,
318 "smtp-server-option=s" => \@smtp_server_options,
319 "smtp-server-port=s" => \$smtp_server_port,
320 "smtp-user=s" => \$smtp_authuser,
321 "smtp-pass:s" => \$smtp_authpass,
322 "smtp-ssl" => sub { $smtp_encryption = 'ssl' },
323 "smtp-encryption=s" => \$smtp_encryption,
324 "smtp-ssl-cert-path=s" => \$smtp_ssl_cert_path,
325 "smtp-debug:i" => \$debug_net_smtp,
326 "smtp-domain:s" => \$smtp_domain,
327 "smtp-auth=s" => \$smtp_auth,
328 "identity=s" => \$identity,
329 "annotate!" => \$annotate,
330 "no-annotate" => sub {$annotate = 0},
331 "compose" => \$compose,
332 "quiet" => \$quiet,
333 "cc-cmd=s" => \$cc_cmd,
334 "suppress-from!" => \$suppress_from,
335 "no-suppress-from" => sub {$suppress_from = 0},
336 "suppress-cc=s" => \@suppress_cc,
337 "signed-off-cc|signed-off-by-cc!" => \$signed_off_by_cc,
338 "no-signed-off-cc|no-signed-off-by-cc" => sub {$signed_off_by_cc = 0},
339 "cc-cover|cc-cover!" => \$cover_cc,
340 "no-cc-cover" => sub {$cover_cc = 0},
341 "to-cover|to-cover!" => \$cover_to,
342 "no-to-cover" => sub {$cover_to = 0},
343 "confirm=s" => \$confirm,
344 "dry-run" => \$dry_run,
345 "envelope-sender=s" => \$envelope_sender,
346 "thread!" => \$thread,
347 "no-thread" => sub {$thread = 0},
348 "validate!" => \$validate,
349 "no-validate" => sub {$validate = 0},
350 "transfer-encoding=s" => \$target_xfer_encoding,
351 "format-patch!" => \$format_patch,
352 "no-format-patch" => sub {$format_patch = 0},
353 "8bit-encoding=s" => \$auto_8bit_encoding,
354 "compose-encoding=s" => \$compose_encoding,
355 "force" => \$force,
356 "xmailer!" => \$use_xmailer,
357 "no-xmailer" => sub {$use_xmailer = 0},
360 usage() if $help;
361 unless ($rc) {
362 usage();
365 die "Cannot run git format-patch from outside a repository\n"
366 if $format_patch and not $repo;
368 # Now, let's fill any that aren't set in with defaults:
370 sub read_config {
371 my ($prefix) = @_;
373 foreach my $setting (keys %config_bool_settings) {
374 my $target = $config_bool_settings{$setting}->[0];
375 $$target = Git::config_bool(@repo, "$prefix.$setting") unless (defined $$target);
378 foreach my $setting (keys %config_path_settings) {
379 my $target = $config_path_settings{$setting};
380 if (ref($target) eq "ARRAY") {
381 unless (@$target) {
382 my @values = Git::config_path(@repo, "$prefix.$setting");
383 @$target = @values if (@values && defined $values[0]);
386 else {
387 $$target = Git::config_path(@repo, "$prefix.$setting") unless (defined $$target);
391 foreach my $setting (keys %config_settings) {
392 my $target = $config_settings{$setting};
393 next if $setting eq "to" and defined $no_to;
394 next if $setting eq "cc" and defined $no_cc;
395 next if $setting eq "bcc" and defined $no_bcc;
396 if (ref($target) eq "ARRAY") {
397 unless (@$target) {
398 my @values = Git::config(@repo, "$prefix.$setting");
399 @$target = @values if (@values && defined $values[0]);
402 else {
403 $$target = Git::config(@repo, "$prefix.$setting") unless (defined $$target);
407 if (!defined $smtp_encryption) {
408 my $enc = Git::config(@repo, "$prefix.smtpencryption");
409 if (defined $enc) {
410 $smtp_encryption = $enc;
411 } elsif (Git::config_bool(@repo, "$prefix.smtpssl")) {
412 $smtp_encryption = 'ssl';
417 # read configuration from [sendemail "$identity"], fall back on [sendemail]
418 $identity = Git::config(@repo, "sendemail.identity") unless (defined $identity);
419 read_config("sendemail.$identity") if (defined $identity);
420 read_config("sendemail");
422 # fall back on builtin bool defaults
423 foreach my $setting (values %config_bool_settings) {
424 ${$setting->[0]} = $setting->[1] unless (defined (${$setting->[0]}));
427 # 'default' encryption is none -- this only prevents a warning
428 $smtp_encryption = '' unless (defined $smtp_encryption);
430 # Set CC suppressions
431 my(%suppress_cc);
432 if (@suppress_cc) {
433 foreach my $entry (@suppress_cc) {
434 die "Unknown --suppress-cc field: '$entry'\n"
435 unless $entry =~ /^(?:all|cccmd|cc|author|self|sob|body|bodycc)$/;
436 $suppress_cc{$entry} = 1;
440 if ($suppress_cc{'all'}) {
441 foreach my $entry (qw (cccmd cc author self sob body bodycc)) {
442 $suppress_cc{$entry} = 1;
444 delete $suppress_cc{'all'};
447 # If explicit old-style ones are specified, they trump --suppress-cc.
448 $suppress_cc{'self'} = $suppress_from if defined $suppress_from;
449 $suppress_cc{'sob'} = !$signed_off_by_cc if defined $signed_off_by_cc;
451 if ($suppress_cc{'body'}) {
452 foreach my $entry (qw (sob bodycc)) {
453 $suppress_cc{$entry} = 1;
455 delete $suppress_cc{'body'};
458 # Set confirm's default value
459 my $confirm_unconfigured = !defined $confirm;
460 if ($confirm_unconfigured) {
461 $confirm = scalar %suppress_cc ? 'compose' : 'auto';
463 die "Unknown --confirm setting: '$confirm'\n"
464 unless $confirm =~ /^(?:auto|cc|compose|always|never)/;
466 # Debugging, print out the suppressions.
467 if (0) {
468 print "suppressions:\n";
469 foreach my $entry (keys %suppress_cc) {
470 printf " %-5s -> $suppress_cc{$entry}\n", $entry;
474 my ($repoauthor, $repocommitter);
475 ($repoauthor) = Git::ident_person(@repo, 'author');
476 ($repocommitter) = Git::ident_person(@repo, 'committer');
478 sub parse_address_line {
479 if ($have_mail_address) {
480 return map { $_->format } Mail::Address->parse($_[0]);
481 } else {
482 return Git::parse_mailboxes($_[0]);
486 sub split_addrs {
487 return quotewords('\s*,\s*', 1, @_);
490 my %aliases;
492 sub parse_sendmail_alias {
493 local $_ = shift;
494 if (/"/) {
495 print STDERR "warning: sendmail alias with quotes is not supported: $_\n";
496 } elsif (/:include:/) {
497 print STDERR "warning: `:include:` not supported: $_\n";
498 } elsif (/[\/|]/) {
499 print STDERR "warning: `/file` or `|pipe` redirection not supported: $_\n";
500 } elsif (/^(\S+?)\s*:\s*(.+)$/) {
501 my ($alias, $addr) = ($1, $2);
502 $aliases{$alias} = [ split_addrs($addr) ];
503 } else {
504 print STDERR "warning: sendmail line is not recognized: $_\n";
508 sub parse_sendmail_aliases {
509 my $fh = shift;
510 my $s = '';
511 while (<$fh>) {
512 chomp;
513 next if /^\s*$/ || /^\s*#/;
514 $s .= $_, next if $s =~ s/\\$// || s/^\s+//;
515 parse_sendmail_alias($s) if $s;
516 $s = $_;
518 $s =~ s/\\$//; # silently tolerate stray '\' on last line
519 parse_sendmail_alias($s) if $s;
522 my %parse_alias = (
523 # multiline formats can be supported in the future
524 mutt => sub { my $fh = shift; while (<$fh>) {
525 if (/^\s*alias\s+(?:-group\s+\S+\s+)*(\S+)\s+(.*)$/) {
526 my ($alias, $addr) = ($1, $2);
527 $addr =~ s/#.*$//; # mutt allows # comments
528 # commas delimit multiple addresses
529 my @addr = split_addrs($addr);
531 # quotes may be escaped in the file,
532 # unescape them so we do not double-escape them later.
533 s/\\"/"/g foreach @addr;
534 $aliases{$alias} = \@addr
535 }}},
536 mailrc => sub { my $fh = shift; while (<$fh>) {
537 if (/^alias\s+(\S+)\s+(.*?)\s*$/) {
538 # spaces delimit multiple addresses
539 $aliases{$1} = [ quotewords('\s+', 0, $2) ];
540 }}},
541 pine => sub { my $fh = shift; my $f='\t[^\t]*';
542 for (my $x = ''; defined($x); $x = $_) {
543 chomp $x;
544 $x .= $1 while(defined($_ = <$fh>) && /^ +(.*)$/);
545 $x =~ /^(\S+)$f\t\(?([^\t]+?)\)?(:?$f){0,2}$/ or next;
546 $aliases{$1} = [ split_addrs($2) ];
548 elm => sub { my $fh = shift;
549 while (<$fh>) {
550 if (/^(\S+)\s+=\s+[^=]+=\s(\S+)/) {
551 my ($alias, $addr) = ($1, $2);
552 $aliases{$alias} = [ split_addrs($addr) ];
554 } },
555 sendmail => \&parse_sendmail_aliases,
556 gnus => sub { my $fh = shift; while (<$fh>) {
557 if (/\(define-mail-alias\s+"(\S+?)"\s+"(\S+?)"\)/) {
558 $aliases{$1} = [ $2 ];
562 if (@alias_files and $aliasfiletype and defined $parse_alias{$aliasfiletype}) {
563 foreach my $file (@alias_files) {
564 open my $fh, '<', $file or die "opening $file: $!\n";
565 $parse_alias{$aliasfiletype}->($fh);
566 close $fh;
570 if ($dump_aliases) {
571 print "$_\n" for (sort keys %aliases);
572 exit(0);
575 # is_format_patch_arg($f) returns 0 if $f names a patch, or 1 if
576 # $f is a revision list specification to be passed to format-patch.
577 sub is_format_patch_arg {
578 return unless $repo;
579 my $f = shift;
580 try {
581 $repo->command('rev-parse', '--verify', '--quiet', $f);
582 if (defined($format_patch)) {
583 return $format_patch;
585 die(<<EOF);
586 File '$f' exists but it could also be the range of commits
587 to produce patches for. Please disambiguate by...
589 * Saying "./$f" if you mean a file; or
590 * Giving --format-patch option if you mean a range.
592 } catch Git::Error::Command with {
593 # Not a valid revision. Treat it as a filename.
594 return 0;
598 # Now that all the defaults are set, process the rest of the command line
599 # arguments and collect up the files that need to be processed.
600 my @rev_list_opts;
601 while (defined(my $f = shift @ARGV)) {
602 if ($f eq "--") {
603 push @rev_list_opts, "--", @ARGV;
604 @ARGV = ();
605 } elsif (-d $f and !is_format_patch_arg($f)) {
606 opendir my $dh, $f
607 or die "Failed to opendir $f: $!";
609 push @files, grep { -f $_ } map { catfile($f, $_) }
610 sort readdir $dh;
611 closedir $dh;
612 } elsif ((-f $f or -p $f) and !is_format_patch_arg($f)) {
613 push @files, $f;
614 } else {
615 push @rev_list_opts, $f;
619 if (@rev_list_opts) {
620 die "Cannot run git format-patch from outside a repository\n"
621 unless $repo;
622 push @files, $repo->command('format-patch', '-o', tempdir(CLEANUP => 1), @rev_list_opts);
625 if ($validate) {
626 foreach my $f (@files) {
627 unless (-p $f) {
628 my $error = validate_patch($f);
629 $error and die "fatal: $f: $error\nwarning: no patches were sent\n";
634 if (@files) {
635 unless ($quiet) {
636 print $_,"\n" for (@files);
638 } else {
639 print STDERR "\nNo patch files specified!\n\n";
640 usage();
643 sub get_patch_subject {
644 my $fn = shift;
645 open (my $fh, '<', $fn);
646 while (my $line = <$fh>) {
647 next unless ($line =~ /^Subject: (.*)$/);
648 close $fh;
649 return "GIT: $1\n";
651 close $fh;
652 die "No subject line in $fn ?";
655 if ($compose) {
656 # Note that this does not need to be secure, but we will make a small
657 # effort to have it be unique
658 $compose_filename = ($repo ?
659 tempfile(".gitsendemail.msg.XXXXXX", DIR => $repo->repo_path()) :
660 tempfile(".gitsendemail.msg.XXXXXX", DIR => "."))[1];
661 open my $c, ">", $compose_filename
662 or die "Failed to open for writing $compose_filename: $!";
665 my $tpl_sender = $sender || $repoauthor || $repocommitter || '';
666 my $tpl_subject = $initial_subject || '';
667 my $tpl_reply_to = $initial_reply_to || '';
669 print $c <<EOT;
670 From $tpl_sender # This line is ignored.
671 GIT: Lines beginning in "GIT:" will be removed.
672 GIT: Consider including an overall diffstat or table of contents
673 GIT: for the patch you are writing.
674 GIT:
675 GIT: Clear the body content if you don't wish to send a summary.
676 From: $tpl_sender
677 Subject: $tpl_subject
678 In-Reply-To: $tpl_reply_to
681 for my $f (@files) {
682 print $c get_patch_subject($f);
684 close $c;
686 if ($annotate) {
687 do_edit($compose_filename, @files);
688 } else {
689 do_edit($compose_filename);
692 open my $c2, ">", $compose_filename . ".final"
693 or die "Failed to open $compose_filename.final : " . $!;
695 open $c, "<", $compose_filename
696 or die "Failed to open $compose_filename : " . $!;
698 my $need_8bit_cte = file_has_nonascii($compose_filename);
699 my $in_body = 0;
700 my $summary_empty = 1;
701 if (!defined $compose_encoding) {
702 $compose_encoding = "UTF-8";
704 while(<$c>) {
705 next if m/^GIT:/;
706 if ($in_body) {
707 $summary_empty = 0 unless (/^\n$/);
708 } elsif (/^\n$/) {
709 $in_body = 1;
710 if ($need_8bit_cte) {
711 print $c2 "MIME-Version: 1.0\n",
712 "Content-Type: text/plain; ",
713 "charset=$compose_encoding\n",
714 "Content-Transfer-Encoding: 8bit\n";
716 } elsif (/^MIME-Version:/i) {
717 $need_8bit_cte = 0;
718 } elsif (/^Subject:\s*(.+)\s*$/i) {
719 $initial_subject = $1;
720 my $subject = $initial_subject;
721 $_ = "Subject: " .
722 quote_subject($subject, $compose_encoding) .
723 "\n";
724 } elsif (/^In-Reply-To:\s*(.+)\s*$/i) {
725 $initial_reply_to = $1;
726 next;
727 } elsif (/^From:\s*(.+)\s*$/i) {
728 $sender = $1;
729 next;
730 } elsif (/^(?:To|Cc|Bcc):/i) {
731 print "To/Cc/Bcc fields are not interpreted yet, they have been ignored\n";
732 next;
734 print $c2 $_;
736 close $c;
737 close $c2;
739 if ($summary_empty) {
740 print "Summary email is empty, skipping it\n";
741 $compose = -1;
743 } elsif ($annotate) {
744 do_edit(@files);
747 sub ask {
748 my ($prompt, %arg) = @_;
749 my $valid_re = $arg{valid_re};
750 my $default = $arg{default};
751 my $confirm_only = $arg{confirm_only};
752 my $resp;
753 my $i = 0;
754 return defined $default ? $default : undef
755 unless defined $term->IN and defined fileno($term->IN) and
756 defined $term->OUT and defined fileno($term->OUT);
757 while ($i++ < 10) {
758 $resp = $term->readline($prompt);
759 if (!defined $resp) { # EOF
760 print "\n";
761 return defined $default ? $default : undef;
763 if ($resp eq '' and defined $default) {
764 return $default;
766 if (!defined $valid_re or $resp =~ /$valid_re/) {
767 return $resp;
769 if ($confirm_only) {
770 my $yesno = $term->readline("Are you sure you want to use <$resp> [y/N]? ");
771 if (defined $yesno && $yesno =~ /y/i) {
772 return $resp;
776 return;
779 my %broken_encoding;
781 sub file_declares_8bit_cte {
782 my $fn = shift;
783 open (my $fh, '<', $fn);
784 while (my $line = <$fh>) {
785 last if ($line =~ /^$/);
786 return 1 if ($line =~ /^Content-Transfer-Encoding: .*8bit.*$/);
788 close $fh;
789 return 0;
792 foreach my $f (@files) {
793 next unless (body_or_subject_has_nonascii($f)
794 && !file_declares_8bit_cte($f));
795 $broken_encoding{$f} = 1;
798 if (!defined $auto_8bit_encoding && scalar %broken_encoding) {
799 print "The following files are 8bit, but do not declare " .
800 "a Content-Transfer-Encoding.\n";
801 foreach my $f (sort keys %broken_encoding) {
802 print " $f\n";
804 $auto_8bit_encoding = ask("Which 8bit encoding should I declare [UTF-8]? ",
805 valid_re => qr/.{4}/, confirm_only => 1,
806 default => "UTF-8");
809 if (!$force) {
810 for my $f (@files) {
811 if (get_patch_subject($f) =~ /\Q*** SUBJECT HERE ***\E/) {
812 die "Refusing to send because the patch\n\t$f\n"
813 . "has the template subject '*** SUBJECT HERE ***'. "
814 . "Pass --force if you really want to send.\n";
819 if (defined $sender) {
820 $sender =~ s/^\s+|\s+$//g;
821 ($sender) = expand_aliases($sender);
822 } else {
823 $sender = $repoauthor || $repocommitter || '';
826 # $sender could be an already sanitized address
827 # (e.g. sendemail.from could be manually sanitized by user).
828 # But it's a no-op to run sanitize_address on an already sanitized address.
829 $sender = sanitize_address($sender);
831 my $prompting = 0;
832 if (!@initial_to && !defined $to_cmd) {
833 my $to = ask("Who should the emails be sent to (if any)? ",
834 default => "",
835 valid_re => qr/\@.*\./, confirm_only => 1);
836 push @initial_to, parse_address_line($to) if defined $to; # sanitized/validated later
837 $prompting++;
840 sub expand_aliases {
841 return map { expand_one_alias($_) } @_;
844 my %EXPANDED_ALIASES;
845 sub expand_one_alias {
846 my $alias = shift;
847 if ($EXPANDED_ALIASES{$alias}) {
848 die "fatal: alias '$alias' expands to itself\n";
850 local $EXPANDED_ALIASES{$alias} = 1;
851 return $aliases{$alias} ? expand_aliases(@{$aliases{$alias}}) : $alias;
854 @initial_to = process_address_list(@initial_to);
855 @initial_cc = process_address_list(@initial_cc);
856 @bcclist = process_address_list(@bcclist);
858 if ($thread && !defined $initial_reply_to && $prompting) {
859 $initial_reply_to = ask(
860 "Message-ID to be used as In-Reply-To for the first email (if any)? ",
861 default => "",
862 valid_re => qr/\@.*\./, confirm_only => 1);
864 if (defined $initial_reply_to) {
865 $initial_reply_to =~ s/^\s*<?//;
866 $initial_reply_to =~ s/>?\s*$//;
867 $initial_reply_to = "<$initial_reply_to>" if $initial_reply_to ne '';
870 if (!defined $smtp_server) {
871 foreach (qw( /usr/sbin/sendmail /usr/lib/sendmail )) {
872 if (-x $_) {
873 $smtp_server = $_;
874 last;
877 $smtp_server ||= 'localhost'; # could be 127.0.0.1, too... *shrug*
880 if ($compose && $compose > 0) {
881 @files = ($compose_filename . ".final", @files);
884 # Variables we set as part of the loop over files
885 our ($message_id, %mail, $subject, $reply_to, $references, $message,
886 $needs_confirm, $message_num, $ask_default);
888 sub extract_valid_address {
889 my $address = shift;
890 my $local_part_regexp = qr/[^<>"\s@]+/;
891 my $domain_regexp = qr/[^.<>"\s@]+(?:\.[^.<>"\s@]+)+/;
893 # check for a local address:
894 return $address if ($address =~ /^($local_part_regexp)$/);
896 $address =~ s/^\s*<(.*)>\s*$/$1/;
897 if ($have_email_valid) {
898 return scalar Email::Valid->address($address);
901 # less robust/correct than the monster regexp in Email::Valid,
902 # but still does a 99% job, and one less dependency
903 return $1 if $address =~ /($local_part_regexp\@$domain_regexp)/;
904 return;
907 sub extract_valid_address_or_die {
908 my $address = shift;
909 $address = extract_valid_address($address);
910 die "error: unable to extract a valid address from: $address\n"
911 if !$address;
912 return $address;
915 sub validate_address {
916 my $address = shift;
917 while (!extract_valid_address($address)) {
918 print STDERR "error: unable to extract a valid address from: $address\n";
919 $_ = ask("What to do with this address? ([q]uit|[d]rop|[e]dit): ",
920 valid_re => qr/^(?:quit|q|drop|d|edit|e)/i,
921 default => 'q');
922 if (/^d/i) {
923 return undef;
924 } elsif (/^q/i) {
925 cleanup_compose_files();
926 exit(0);
928 $address = ask("Who should the email be sent to (if any)? ",
929 default => "",
930 valid_re => qr/\@.*\./, confirm_only => 1);
932 return $address;
935 sub validate_address_list {
936 return (grep { defined $_ }
937 map { validate_address($_) } @_);
940 # Usually don't need to change anything below here.
942 # we make a "fake" message id by taking the current number
943 # of seconds since the beginning of Unix time and tacking on
944 # a random number to the end, in case we are called quicker than
945 # 1 second since the last time we were called.
947 # We'll setup a template for the message id, using the "from" address:
949 my ($message_id_stamp, $message_id_serial);
950 sub make_message_id {
951 my $uniq;
952 if (!defined $message_id_stamp) {
953 $message_id_stamp = strftime("%Y%m%d%H%M%S.$$", gmtime(time));
954 $message_id_serial = 0;
956 $message_id_serial++;
957 $uniq = "$message_id_stamp-$message_id_serial";
959 my $du_part;
960 for ($sender, $repocommitter, $repoauthor) {
961 $du_part = extract_valid_address(sanitize_address($_));
962 last if (defined $du_part and $du_part ne '');
964 if (not defined $du_part or $du_part eq '') {
965 require Sys::Hostname;
966 $du_part = 'user@' . Sys::Hostname::hostname();
968 my $message_id_template = "<%s-%s>";
969 $message_id = sprintf($message_id_template, $uniq, $du_part);
970 #print "new message id = $message_id\n"; # Was useful for debugging
975 $time = time - scalar $#files;
977 sub unquote_rfc2047 {
978 local ($_) = @_;
979 my $charset;
980 my $sep = qr/[ \t]+/;
981 s{$re_encoded_word(?:$sep$re_encoded_word)*}{
982 my @words = split $sep, $&;
983 foreach (@words) {
984 m/$re_encoded_word/;
985 $charset = $1;
986 my $encoding = $2;
987 my $text = $3;
988 if ($encoding eq 'q' || $encoding eq 'Q') {
989 $_ = $text;
990 s/_/ /g;
991 s/=([0-9A-F]{2})/chr(hex($1))/egi;
992 } else {
993 # other encodings not supported yet
996 join '', @words;
997 }eg;
998 return wantarray ? ($_, $charset) : $_;
1001 sub quote_rfc2047 {
1002 local $_ = shift;
1003 my $encoding = shift || 'UTF-8';
1004 s/([^-a-zA-Z0-9!*+\/])/sprintf("=%02X", ord($1))/eg;
1005 s/(.*)/=\?$encoding\?q\?$1\?=/;
1006 return $_;
1009 sub is_rfc2047_quoted {
1010 my $s = shift;
1011 length($s) <= 75 &&
1012 $s =~ m/^(?:"[[:ascii:]]*"|$re_encoded_word)$/o;
1015 sub subject_needs_rfc2047_quoting {
1016 my $s = shift;
1018 return ($s =~ /[^[:ascii:]]/) || ($s =~ /=\?/);
1021 sub quote_subject {
1022 local $subject = shift;
1023 my $encoding = shift || 'UTF-8';
1025 if (subject_needs_rfc2047_quoting($subject)) {
1026 return quote_rfc2047($subject, $encoding);
1028 return $subject;
1031 # use the simplest quoting being able to handle the recipient
1032 sub sanitize_address {
1033 my ($recipient) = @_;
1035 # remove garbage after email address
1036 $recipient =~ s/(.*>).*$/$1/;
1038 my ($recipient_name, $recipient_addr) = ($recipient =~ /^(.*?)\s*(<.*)/);
1040 if (not $recipient_name) {
1041 return $recipient;
1044 # if recipient_name is already quoted, do nothing
1045 if (is_rfc2047_quoted($recipient_name)) {
1046 return $recipient;
1049 # remove non-escaped quotes
1050 $recipient_name =~ s/(^|[^\\])"/$1/g;
1052 # rfc2047 is needed if a non-ascii char is included
1053 if ($recipient_name =~ /[^[:ascii:]]/) {
1054 $recipient_name = quote_rfc2047($recipient_name);
1057 # double quotes are needed if specials or CTLs are included
1058 elsif ($recipient_name =~ /[][()<>@,;:\\".\000-\037\177]/) {
1059 $recipient_name =~ s/([\\\r])/\\$1/g;
1060 $recipient_name = qq["$recipient_name"];
1063 return "$recipient_name $recipient_addr";
1067 sub sanitize_address_list {
1068 return (map { sanitize_address($_) } @_);
1071 sub process_address_list {
1072 my @addr_list = map { parse_address_line($_) } @_;
1073 @addr_list = expand_aliases(@addr_list);
1074 @addr_list = sanitize_address_list(@addr_list);
1075 @addr_list = validate_address_list(@addr_list);
1076 return @addr_list;
1079 # Returns the local Fully Qualified Domain Name (FQDN) if available.
1081 # Tightly configured MTAa require that a caller sends a real DNS
1082 # domain name that corresponds the IP address in the HELO/EHLO
1083 # handshake. This is used to verify the connection and prevent
1084 # spammers from trying to hide their identity. If the DNS and IP don't
1085 # match, the receiveing MTA may deny the connection.
1087 # Here is a deny example of Net::SMTP with the default "localhost.localdomain"
1089 # Net::SMTP=GLOB(0x267ec28)>>> EHLO localhost.localdomain
1090 # Net::SMTP=GLOB(0x267ec28)<<< 550 EHLO argument does not match calling host
1092 # This maildomain*() code is based on ideas in Perl library Test::Reporter
1093 # /usr/share/perl5/Test/Reporter/Mail/Util.pm ==> sub _maildomain ()
1095 sub valid_fqdn {
1096 my $domain = shift;
1097 return defined $domain && !($^O eq 'darwin' && $domain =~ /\.local$/) && $domain =~ /\./;
1100 sub maildomain_net {
1101 my $maildomain;
1103 if (eval { require Net::Domain; 1 }) {
1104 my $domain = Net::Domain::domainname();
1105 $maildomain = $domain if valid_fqdn($domain);
1108 return $maildomain;
1111 sub maildomain_mta {
1112 my $maildomain;
1114 if (eval { require Net::SMTP; 1 }) {
1115 for my $host (qw(mailhost localhost)) {
1116 my $smtp = Net::SMTP->new($host);
1117 if (defined $smtp) {
1118 my $domain = $smtp->domain;
1119 $smtp->quit;
1121 $maildomain = $domain if valid_fqdn($domain);
1123 last if $maildomain;
1128 return $maildomain;
1131 sub maildomain {
1132 return maildomain_net() || maildomain_mta() || 'localhost.localdomain';
1135 sub smtp_host_string {
1136 if (defined $smtp_server_port) {
1137 return "$smtp_server:$smtp_server_port";
1138 } else {
1139 return $smtp_server;
1143 # Returns 1 if authentication succeeded or was not necessary
1144 # (smtp_user was not specified), and 0 otherwise.
1146 sub smtp_auth_maybe {
1147 if (!defined $smtp_authuser || $auth) {
1148 return 1;
1151 # Workaround AUTH PLAIN/LOGIN interaction defect
1152 # with Authen::SASL::Cyrus
1153 eval {
1154 require Authen::SASL;
1155 Authen::SASL->import(qw(Perl));
1158 # Check mechanism naming as defined in:
1159 # https://tools.ietf.org/html/rfc4422#page-8
1160 if ($smtp_auth && $smtp_auth !~ /^(\b[A-Z0-9-_]{1,20}\s*)*$/) {
1161 die "invalid smtp auth: '${smtp_auth}'";
1164 # TODO: Authentication may fail not because credentials were
1165 # invalid but due to other reasons, in which we should not
1166 # reject credentials.
1167 $auth = Git::credential({
1168 'protocol' => 'smtp',
1169 'host' => smtp_host_string(),
1170 'username' => $smtp_authuser,
1171 # if there's no password, "git credential fill" will
1172 # give us one, otherwise it'll just pass this one.
1173 'password' => $smtp_authpass
1174 }, sub {
1175 my $cred = shift;
1177 if ($smtp_auth) {
1178 my $sasl = Authen::SASL->new(
1179 mechanism => $smtp_auth,
1180 callback => {
1181 user => $cred->{'username'},
1182 pass => $cred->{'password'},
1183 authname => $cred->{'username'},
1187 return !!$smtp->auth($sasl);
1190 return !!$smtp->auth($cred->{'username'}, $cred->{'password'});
1193 return $auth;
1196 sub ssl_verify_params {
1197 eval {
1198 require IO::Socket::SSL;
1199 IO::Socket::SSL->import(qw/SSL_VERIFY_PEER SSL_VERIFY_NONE/);
1201 if ($@) {
1202 print STDERR "Not using SSL_VERIFY_PEER due to out-of-date IO::Socket::SSL.\n";
1203 return;
1206 if (!defined $smtp_ssl_cert_path) {
1207 # use the OpenSSL defaults
1208 return (SSL_verify_mode => SSL_VERIFY_PEER());
1211 if ($smtp_ssl_cert_path eq "") {
1212 return (SSL_verify_mode => SSL_VERIFY_NONE());
1213 } elsif (-d $smtp_ssl_cert_path) {
1214 return (SSL_verify_mode => SSL_VERIFY_PEER(),
1215 SSL_ca_path => $smtp_ssl_cert_path);
1216 } elsif (-f $smtp_ssl_cert_path) {
1217 return (SSL_verify_mode => SSL_VERIFY_PEER(),
1218 SSL_ca_file => $smtp_ssl_cert_path);
1219 } else {
1220 die "CA path \"$smtp_ssl_cert_path\" does not exist";
1224 sub file_name_is_absolute {
1225 my ($path) = @_;
1227 # msys does not grok DOS drive-prefixes
1228 if ($^O eq 'msys') {
1229 return ($path =~ m#^/# || $path =~ m#^[a-zA-Z]\:#)
1232 require File::Spec::Functions;
1233 return File::Spec::Functions::file_name_is_absolute($path);
1236 # Returns 1 if the message was sent, and 0 otherwise.
1237 # In actuality, the whole program dies when there
1238 # is an error sending a message.
1240 sub send_message {
1241 my @recipients = unique_email_list(@to);
1242 @cc = (grep { my $cc = extract_valid_address_or_die($_);
1243 not grep { $cc eq $_ || $_ =~ /<\Q${cc}\E>$/ } @recipients
1245 @cc);
1246 my $to = join (",\n\t", @recipients);
1247 @recipients = unique_email_list(@recipients,@cc,@bcclist);
1248 @recipients = (map { extract_valid_address_or_die($_) } @recipients);
1249 my $date = format_2822_time($time++);
1250 my $gitversion = '@@GIT_VERSION@@';
1251 if ($gitversion =~ m/..GIT_VERSION../) {
1252 $gitversion = Git::version();
1255 my $cc = join(",\n\t", unique_email_list(@cc));
1256 my $ccline = "";
1257 if ($cc ne '') {
1258 $ccline = "\nCc: $cc";
1260 make_message_id() unless defined($message_id);
1262 my $header = "From: $sender
1263 To: $to${ccline}
1264 Subject: $subject
1265 Date: $date
1266 Message-Id: $message_id
1268 if ($use_xmailer) {
1269 $header .= "X-Mailer: git-send-email $gitversion\n";
1271 if ($reply_to) {
1273 $header .= "In-Reply-To: $reply_to\n";
1274 $header .= "References: $references\n";
1276 if (@xh) {
1277 $header .= join("\n", @xh) . "\n";
1280 my @sendmail_parameters = ('-i', @recipients);
1281 my $raw_from = $sender;
1282 if (defined $envelope_sender && $envelope_sender ne "auto") {
1283 $raw_from = $envelope_sender;
1285 $raw_from = extract_valid_address($raw_from);
1286 unshift (@sendmail_parameters,
1287 '-f', $raw_from) if(defined $envelope_sender);
1289 if ($needs_confirm && !$dry_run) {
1290 print "\n$header\n";
1291 if ($needs_confirm eq "inform") {
1292 $confirm_unconfigured = 0; # squelch this message for the rest of this run
1293 $ask_default = "y"; # assume yes on EOF since user hasn't explicitly asked for confirmation
1294 print " The Cc list above has been expanded by additional\n";
1295 print " addresses found in the patch commit message. By default\n";
1296 print " send-email prompts before sending whenever this occurs.\n";
1297 print " This behavior is controlled by the sendemail.confirm\n";
1298 print " configuration setting.\n";
1299 print "\n";
1300 print " For additional information, run 'git send-email --help'.\n";
1301 print " To retain the current behavior, but squelch this message,\n";
1302 print " run 'git config --global sendemail.confirm auto'.\n\n";
1304 $_ = ask("Send this email? ([y]es|[n]o|[q]uit|[a]ll): ",
1305 valid_re => qr/^(?:yes|y|no|n|quit|q|all|a)/i,
1306 default => $ask_default);
1307 die "Send this email reply required" unless defined $_;
1308 if (/^n/i) {
1309 return 0;
1310 } elsif (/^q/i) {
1311 cleanup_compose_files();
1312 exit(0);
1313 } elsif (/^a/i) {
1314 $confirm = 'never';
1318 unshift (@sendmail_parameters, @smtp_server_options);
1320 if ($dry_run) {
1321 # We don't want to send the email.
1322 } elsif (file_name_is_absolute($smtp_server)) {
1323 my $pid = open my $sm, '|-';
1324 defined $pid or die $!;
1325 if (!$pid) {
1326 exec($smtp_server, @sendmail_parameters) or die $!;
1328 print $sm "$header\n$message";
1329 close $sm or die $!;
1330 } else {
1332 if (!defined $smtp_server) {
1333 die "The required SMTP server is not properly defined."
1336 if ($smtp_encryption eq 'ssl') {
1337 $smtp_server_port ||= 465; # ssmtp
1338 require Net::SMTP::SSL;
1339 $smtp_domain ||= maildomain();
1340 require IO::Socket::SSL;
1342 # Suppress "variable accessed once" warning.
1344 no warnings 'once';
1345 $IO::Socket::SSL::DEBUG = 1;
1348 # Net::SMTP::SSL->new() does not forward any SSL options
1349 IO::Socket::SSL::set_client_defaults(
1350 ssl_verify_params());
1351 $smtp ||= Net::SMTP::SSL->new($smtp_server,
1352 Hello => $smtp_domain,
1353 Port => $smtp_server_port,
1354 Debug => $debug_net_smtp);
1356 else {
1357 require Net::SMTP;
1358 $smtp_domain ||= maildomain();
1359 $smtp_server_port ||= 25;
1360 $smtp ||= Net::SMTP->new($smtp_server,
1361 Hello => $smtp_domain,
1362 Debug => $debug_net_smtp,
1363 Port => $smtp_server_port);
1364 if ($smtp_encryption eq 'tls' && $smtp) {
1365 require Net::SMTP::SSL;
1366 $smtp->command('STARTTLS');
1367 $smtp->response();
1368 if ($smtp->code == 220) {
1369 $smtp = Net::SMTP::SSL->start_SSL($smtp,
1370 ssl_verify_params())
1371 or die "STARTTLS failed! ".IO::Socket::SSL::errstr();
1372 $smtp_encryption = '';
1373 # Send EHLO again to receive fresh
1374 # supported commands
1375 $smtp->hello($smtp_domain);
1376 } else {
1377 die "Server does not support STARTTLS! ".$smtp->message;
1382 if (!$smtp) {
1383 die "Unable to initialize SMTP properly. Check config and use --smtp-debug. ",
1384 "VALUES: server=$smtp_server ",
1385 "encryption=$smtp_encryption ",
1386 "hello=$smtp_domain",
1387 defined $smtp_server_port ? " port=$smtp_server_port" : "";
1390 smtp_auth_maybe or die $smtp->message;
1392 $smtp->mail( $raw_from ) or die $smtp->message;
1393 $smtp->to( @recipients ) or die $smtp->message;
1394 $smtp->data or die $smtp->message;
1395 $smtp->datasend("$header\n") or die $smtp->message;
1396 my @lines = split /^/, $message;
1397 foreach my $line (@lines) {
1398 $smtp->datasend("$line") or die $smtp->message;
1400 $smtp->dataend() or die $smtp->message;
1401 $smtp->code =~ /250|200/ or die "Failed to send $subject\n".$smtp->message;
1403 if ($quiet) {
1404 printf (($dry_run ? "Dry-" : "")."Sent %s\n", $subject);
1405 } else {
1406 print (($dry_run ? "Dry-" : "")."OK. Log says:\n");
1407 if (!file_name_is_absolute($smtp_server)) {
1408 print "Server: $smtp_server\n";
1409 print "MAIL FROM:<$raw_from>\n";
1410 foreach my $entry (@recipients) {
1411 print "RCPT TO:<$entry>\n";
1413 } else {
1414 print "Sendmail: $smtp_server ".join(' ',@sendmail_parameters)."\n";
1416 print $header, "\n";
1417 if ($smtp) {
1418 print "Result: ", $smtp->code, ' ',
1419 ($smtp->message =~ /\n([^\n]+\n)$/s), "\n";
1420 } else {
1421 print "Result: OK\n";
1425 return 1;
1428 $reply_to = $initial_reply_to;
1429 $references = $initial_reply_to || '';
1430 $subject = $initial_subject;
1431 $message_num = 0;
1433 foreach my $t (@files) {
1434 open my $fh, "<", $t or die "can't open file $t";
1436 my $author = undef;
1437 my $sauthor = undef;
1438 my $author_encoding;
1439 my $has_content_type;
1440 my $body_encoding;
1441 my $xfer_encoding;
1442 my $has_mime_version;
1443 @to = ();
1444 @cc = ();
1445 @xh = ();
1446 my $input_format = undef;
1447 my @header = ();
1448 $message = "";
1449 $message_num++;
1450 # First unfold multiline header fields
1451 while(<$fh>) {
1452 last if /^\s*$/;
1453 if (/^\s+\S/ and @header) {
1454 chomp($header[$#header]);
1455 s/^\s+/ /;
1456 $header[$#header] .= $_;
1457 } else {
1458 push(@header, $_);
1461 # Now parse the header
1462 foreach(@header) {
1463 if (/^From /) {
1464 $input_format = 'mbox';
1465 next;
1467 chomp;
1468 if (!defined $input_format && /^[-A-Za-z]+:\s/) {
1469 $input_format = 'mbox';
1472 if (defined $input_format && $input_format eq 'mbox') {
1473 if (/^Subject:\s+(.*)$/i) {
1474 $subject = $1;
1476 elsif (/^From:\s+(.*)$/i) {
1477 ($author, $author_encoding) = unquote_rfc2047($1);
1478 $sauthor = sanitize_address($author);
1479 next if $suppress_cc{'author'};
1480 next if $suppress_cc{'self'} and $sauthor eq $sender;
1481 printf("(mbox) Adding cc: %s from line '%s'\n",
1482 $1, $_) unless $quiet;
1483 push @cc, $1;
1485 elsif (/^To:\s+(.*)$/i) {
1486 foreach my $addr (parse_address_line($1)) {
1487 printf("(mbox) Adding to: %s from line '%s'\n",
1488 $addr, $_) unless $quiet;
1489 push @to, $addr;
1492 elsif (/^Cc:\s+(.*)$/i) {
1493 foreach my $addr (parse_address_line($1)) {
1494 my $qaddr = unquote_rfc2047($addr);
1495 my $saddr = sanitize_address($qaddr);
1496 if ($saddr eq $sender) {
1497 next if ($suppress_cc{'self'});
1498 } else {
1499 next if ($suppress_cc{'cc'});
1501 printf("(mbox) Adding cc: %s from line '%s'\n",
1502 $addr, $_) unless $quiet;
1503 push @cc, $addr;
1506 elsif (/^Content-type:/i) {
1507 $has_content_type = 1;
1508 if (/charset="?([^ "]+)/) {
1509 $body_encoding = $1;
1511 push @xh, $_;
1513 elsif (/^MIME-Version/i) {
1514 $has_mime_version = 1;
1515 push @xh, $_;
1517 elsif (/^Message-Id: (.*)/i) {
1518 $message_id = $1;
1520 elsif (/^Content-Transfer-Encoding: (.*)/i) {
1521 $xfer_encoding = $1 if not defined $xfer_encoding;
1523 elsif (!/^Date:\s/i && /^[-A-Za-z]+:\s+\S/) {
1524 push @xh, $_;
1527 } else {
1528 # In the traditional
1529 # "send lots of email" format,
1530 # line 1 = cc
1531 # line 2 = subject
1532 # So let's support that, too.
1533 $input_format = 'lots';
1534 if (@cc == 0 && !$suppress_cc{'cc'}) {
1535 printf("(non-mbox) Adding cc: %s from line '%s'\n",
1536 $_, $_) unless $quiet;
1537 push @cc, $_;
1538 } elsif (!defined $subject) {
1539 $subject = $_;
1543 # Now parse the message body
1544 while(<$fh>) {
1545 $message .= $_;
1546 if (/^(Signed-off-by|Cc): (.*)$/i) {
1547 chomp;
1548 my ($what, $c) = ($1, $2);
1549 chomp $c;
1550 my $sc = sanitize_address($c);
1551 if ($sc eq $sender) {
1552 next if ($suppress_cc{'self'});
1553 } else {
1554 next if $suppress_cc{'sob'} and $what =~ /Signed-off-by/i;
1555 next if $suppress_cc{'bodycc'} and $what =~ /Cc/i;
1557 push @cc, $c;
1558 printf("(body) Adding cc: %s from line '%s'\n",
1559 $c, $_) unless $quiet;
1562 close $fh;
1564 push @to, recipients_cmd("to-cmd", "to", $to_cmd, $t)
1565 if defined $to_cmd;
1566 push @cc, recipients_cmd("cc-cmd", "cc", $cc_cmd, $t)
1567 if defined $cc_cmd && !$suppress_cc{'cccmd'};
1569 if ($broken_encoding{$t} && !$has_content_type) {
1570 $xfer_encoding = '8bit' if not defined $xfer_encoding;
1571 $has_content_type = 1;
1572 push @xh, "Content-Type: text/plain; charset=$auto_8bit_encoding";
1573 $body_encoding = $auto_8bit_encoding;
1576 if ($broken_encoding{$t} && !is_rfc2047_quoted($subject)) {
1577 $subject = quote_subject($subject, $auto_8bit_encoding);
1580 if (defined $sauthor and $sauthor ne $sender) {
1581 $message = "From: $author\n\n$message";
1582 if (defined $author_encoding) {
1583 if ($has_content_type) {
1584 if ($body_encoding eq $author_encoding) {
1585 # ok, we already have the right encoding
1587 else {
1588 # uh oh, we should re-encode
1591 else {
1592 $xfer_encoding = '8bit' if not defined $xfer_encoding;
1593 $has_content_type = 1;
1594 push @xh,
1595 "Content-Type: text/plain; charset=$author_encoding";
1599 if (defined $target_xfer_encoding) {
1600 $xfer_encoding = '8bit' if not defined $xfer_encoding;
1601 $message = apply_transfer_encoding(
1602 $message, $xfer_encoding, $target_xfer_encoding);
1603 $xfer_encoding = $target_xfer_encoding;
1605 if (defined $xfer_encoding) {
1606 push @xh, "Content-Transfer-Encoding: $xfer_encoding";
1608 if (defined $xfer_encoding or $has_content_type) {
1609 unshift @xh, 'MIME-Version: 1.0' unless $has_mime_version;
1612 $needs_confirm = (
1613 $confirm eq "always" or
1614 ($confirm =~ /^(?:auto|cc)$/ && @cc) or
1615 ($confirm =~ /^(?:auto|compose)$/ && $compose && $message_num == 1));
1616 $needs_confirm = "inform" if ($needs_confirm && $confirm_unconfigured && @cc);
1618 @to = process_address_list(@to);
1619 @cc = process_address_list(@cc);
1621 @to = (@initial_to, @to);
1622 @cc = (@initial_cc, @cc);
1624 if ($message_num == 1) {
1625 if (defined $cover_cc and $cover_cc) {
1626 @initial_cc = @cc;
1628 if (defined $cover_to and $cover_to) {
1629 @initial_to = @to;
1633 my $message_was_sent = send_message();
1635 # set up for the next message
1636 if ($thread && $message_was_sent &&
1637 ($chain_reply_to || !defined $reply_to || length($reply_to) == 0 ||
1638 $message_num == 1)) {
1639 $reply_to = $message_id;
1640 if (length $references > 0) {
1641 $references .= "\n $message_id";
1642 } else {
1643 $references = "$message_id";
1646 $message_id = undef;
1649 # Execute a command (e.g. $to_cmd) to get a list of email addresses
1650 # and return a results array
1651 sub recipients_cmd {
1652 my ($prefix, $what, $cmd, $file) = @_;
1654 my @addresses = ();
1655 open my $fh, "-|", "$cmd \Q$file\E"
1656 or die "($prefix) Could not execute '$cmd'";
1657 while (my $address = <$fh>) {
1658 $address =~ s/^\s*//g;
1659 $address =~ s/\s*$//g;
1660 $address = sanitize_address($address);
1661 next if ($address eq $sender and $suppress_cc{'self'});
1662 push @addresses, $address;
1663 printf("($prefix) Adding %s: %s from: '%s'\n",
1664 $what, $address, $cmd) unless $quiet;
1666 close $fh
1667 or die "($prefix) failed to close pipe to '$cmd'";
1668 return @addresses;
1671 cleanup_compose_files();
1673 sub cleanup_compose_files {
1674 unlink($compose_filename, $compose_filename . ".final") if $compose;
1677 $smtp->quit if $smtp;
1679 sub apply_transfer_encoding {
1680 my $message = shift;
1681 my $from = shift;
1682 my $to = shift;
1684 return $message if ($from eq $to and $from ne '7bit');
1686 require MIME::QuotedPrint;
1687 require MIME::Base64;
1689 $message = MIME::QuotedPrint::decode($message)
1690 if ($from eq 'quoted-printable');
1691 $message = MIME::Base64::decode($message)
1692 if ($from eq 'base64');
1694 die "cannot send message as 7bit"
1695 if ($to eq '7bit' and $message =~ /[^[:ascii:]]/);
1696 return $message
1697 if ($to eq '7bit' or $to eq '8bit');
1698 return MIME::QuotedPrint::encode($message, "\n", 0)
1699 if ($to eq 'quoted-printable');
1700 return MIME::Base64::encode($message, "\n")
1701 if ($to eq 'base64');
1702 die "invalid transfer encoding";
1705 sub unique_email_list {
1706 my %seen;
1707 my @emails;
1709 foreach my $entry (@_) {
1710 my $clean = extract_valid_address_or_die($entry);
1711 $seen{$clean} ||= 0;
1712 next if $seen{$clean}++;
1713 push @emails, $entry;
1715 return @emails;
1718 sub validate_patch {
1719 my $fn = shift;
1720 open(my $fh, '<', $fn)
1721 or die "unable to open $fn: $!\n";
1722 while (my $line = <$fh>) {
1723 if (length($line) > 998) {
1724 return "$.: patch contains a line longer than 998 characters";
1727 return;
1730 sub file_has_nonascii {
1731 my $fn = shift;
1732 open(my $fh, '<', $fn)
1733 or die "unable to open $fn: $!\n";
1734 while (my $line = <$fh>) {
1735 return 1 if $line =~ /[^[:ascii:]]/;
1737 return 0;
1740 sub body_or_subject_has_nonascii {
1741 my $fn = shift;
1742 open(my $fh, '<', $fn)
1743 or die "unable to open $fn: $!\n";
1744 while (my $line = <$fh>) {
1745 last if $line =~ /^$/;
1746 return 1 if $line =~ /^Subject.*[^[:ascii:]]/;
1748 while (my $line = <$fh>) {
1749 return 1 if $line =~ /[^[:ascii:]]/;
1751 return 0;