3 # Copyright 2002,2005 Greg Kroah-Hartman <greg@kroah.com>
4 # Copyright 2005 Ryan Anderson <ryan@michonline.com>
8 # Ported to support git "mbox" format files by Ryan Anderson <ryan@michonline.com>
10 # Sends a collection of emails to the given email addresses, disturbingly fast.
12 # Supports two formats:
13 # 1. mbox format files (ignoring most headers and MIME formatting - this is designed for sending patches)
14 # 2. The original format support by Greg's script:
15 # first line of the message is who to CC,
16 # and second line is the subject of the message.
21 use warnings
$ENV{GIT_PERL_FATAL_WARNINGS
} ?
qw(FATAL all) : ();
23 use Git
::LoadCPAN
::Error
qw(:try);
27 Getopt
::Long
::Configure qw
/ pass_through /;
31 git send-email [<options>] <file|directory>
32 git send-email [<options>] <format-patch options>
33 git send-email --dump-aliases
34 git send-email --translate-aliases
37 --from <str> * Email From:
38 --[no-]to <str> * Email To:
39 --[no-]cc <str> * Email Cc:
40 --[no-]bcc <str> * Email Bcc:
41 --subject <str> * Email "Subject:"
42 --reply-to <str> * Email "Reply-To:"
43 --in-reply-to <str> * Email "In-Reply-To:"
44 --[no-]outlook-id-fix * The SMTP host is an Outlook server that munges the
45 Message-ID. Retrieve it from the server.
46 --[no-]xmailer * Add "X-Mailer:" header (default).
47 --[no-]annotate * Review each patch that will be sent in an editor.
48 --compose * Open an editor for introduction.
49 --compose-encoding <str> * Encoding to assume for introduction.
50 --8bit-encoding <str> * Encoding to assume 8bit mails if undeclared
51 --transfer-encoding <str> * Transfer encoding to use (quoted-printable, 8bit, base64)
52 --[no-]mailmap * Use mailmap file to map all email addresses to canonical
53 real names and email addresses.
56 --envelope-sender <str> * Email envelope sender.
57 --sendmail-cmd <str> * Command to run to send email.
58 --smtp-server <str:int> * Outgoing SMTP server to use. The port
59 is optional. Default 'localhost'.
60 --smtp-server-option <str> * Outgoing SMTP server option to use.
61 --smtp-server-port <int> * Outgoing SMTP server port.
62 --smtp-user <str> * Username for SMTP-AUTH.
63 --smtp-pass <str> * Password for SMTP-AUTH; not necessary.
64 --smtp-encryption <str> * tls or ssl; anything else disables.
65 --smtp-ssl * Deprecated. Use '--smtp-encryption ssl'.
66 --smtp-ssl-cert-path <str> * Path to ca-certificates (either directory or file).
67 Pass an empty string to disable certificate
69 --smtp-domain <str> * The domain name sent to HELO/EHLO handshake
70 --smtp-auth <str> * Space-separated list of allowed AUTH mechanisms, or
71 "none" to disable authentication.
72 This setting forces to use one of the listed mechanisms.
73 --no-smtp-auth * Disable SMTP authentication. Shorthand for
75 --smtp-debug <0|1> * Disable, enable Net::SMTP debug.
77 --batch-size <int> * send max <int> message per connection.
78 --relogin-delay <int> * delay <int> seconds between two successive login.
79 This option can only be used with --batch-size
82 --identity <str> * Use the sendemail.<id> options.
83 --to-cmd <str> * Email To: via `<str> \$patch_path`.
84 --cc-cmd <str> * Email Cc: via `<str> \$patch_path`.
85 --header-cmd <str> * Add headers via `<str> \$patch_path`.
86 --no-header-cmd * Disable any header command in use.
87 --suppress-cc <str> * author, self, sob, cc, cccmd, body, bodycc, misc-by, all.
88 --[no-]cc-cover * Email Cc: addresses in the cover letter.
89 --[no-]to-cover * Email To: addresses in the cover letter.
90 --[no-]signed-off-by-cc * Send to Signed-off-by: addresses. Default on.
91 --[no-]suppress-from * Send to self. Default off.
92 --[no-]chain-reply-to * Chain In-Reply-To: fields. Default off.
93 --[no-]thread * Use In-Reply-To: field. Default on.
96 --confirm <str> * Confirm recipients before sending;
97 auto, cc, compose, always, or never.
98 --quiet * Output one line of info per email.
99 --dry-run * Don't actually send the emails.
100 --[no-]validate * Perform patch sanity checks. Default on.
101 --[no-]format-patch * understand any non optional arguments as
102 `git format-patch` ones.
103 --force * Send even if safety checks would prevent it.
106 --dump-aliases * Dump configured aliases and exit.
107 --translate-aliases * Translate aliases read from standard
108 input according to the configured email
109 alias file(s), outputting the result to
118 grep !$seen{$_}++, @_;
121 sub completion_helper
{
122 my ($original_opts) = @_;
123 my %not_for_completion = (
124 "git-completion-helper" => undef,
127 my @send_email_opts = ();
129 foreach my $key (keys %$original_opts) {
130 unless (exists $not_for_completion{$key}) {
131 my $negatable = ($key =~ s/!$//);
133 if ($key =~ /[:=][si]$/) {
134 $key =~ s/[:=][si]$//;
135 push (@send_email_opts, "--$_=") foreach (split (/\|/, $key));
137 push (@send_email_opts, "--$_") foreach (split (/\|/, $key));
139 push (@send_email_opts, "--no-$_") foreach (split (/\|/, $key));
145 my @format_patch_opts = split(/ /, Git
::command
('format-patch', '--git-completion-helper'));
146 my @opts = (@send_email_opts, @format_patch_opts);
147 @opts = uniq
(grep !/^$/, @opts);
148 # There's an implicit '\n' here already, no need to add an explicit one.
153 # most mail servers generate the Date: header, but not all...
154 sub format_2822_time
{
156 my @localtm = localtime($time);
157 my @gmttm = gmtime($time);
158 my $localmin = $localtm[1] + $localtm[2] * 60;
159 my $gmtmin = $gmttm[1] + $gmttm[2] * 60;
160 if ($localtm[0] != $gmttm[0]) {
161 die __
("local zone differs from GMT by a non-minute interval\n");
163 if ((($gmttm[6] + 1) % 7) == $localtm[6]) {
165 } elsif ((($gmttm[6] - 1) % 7) == $localtm[6]) {
167 } elsif ($gmttm[6] != $localtm[6]) {
168 die __
("local time offset greater than or equal to 24 hours\n");
170 my $offset = $localmin - $gmtmin;
171 my $offhour = $offset / 60;
172 my $offmin = abs($offset % 60);
173 if (abs($offhour) >= 24) {
174 die __
("local time offset greater than or equal to 24 hours\n");
177 return sprintf("%s, %2d %s %d %02d:%02d:%02d %s%02d%02d",
178 qw(Sun Mon Tue Wed Thu Fri Sat)[$localtm[6]],
180 qw(Jan Feb Mar Apr May Jun
181 Jul Aug Sep Oct Nov Dec)[$localtm[4]],
186 ($offset >= 0) ?
'+' : '-',
196 # Regexes for RFC 2047 productions.
197 my $re_token = qr/[^][()<>@,;:\\"\/?
.= \000-\037\177-\377]+/;
198 my $re_encoded_text = qr/[^? \000-\037\177-\377]+/;
199 my $re_encoded_word = qr/=\?($re_token)\?($re_token)\?($re_encoded_text)\?=/;
201 # Variables we fill in automatically, or via prompting:
202 my (@to,@cc,@xh,$envelope_sender,
203 $initial_in_reply_to,$reply_to,$initial_subject,@files,
204 $author,$sender,$smtp_authpass,$annotate,$compose,$time);
205 # Things we either get from config, *or* are overridden on the
207 my ($no_cc, $no_to, $no_bcc, $no_identity, $no_header_cmd);
208 my (@config_to, @getopt_to);
209 my (@config_cc, @getopt_cc);
210 my (@config_bcc, @getopt_bcc);
213 #$initial_in_reply_to = ''; #<20050203173208.GA23964@foobar.com>';
215 my $repo = eval { Git
->repository() };
216 my @repo = $repo ?
($repo) : ();
218 # Behavior modification variables
219 my ($quiet, $dry_run) = (0, 0);
221 my $compose_filename;
223 my $dump_aliases = 0;
224 my $translate_aliases = 0;
226 # Variables to prevent short format-patch options from being captured
227 # as abbreviated send-email options
230 # Handle interactive edition of files.
235 my ($args, $msg, $cmd_name) = @_;
237 my $signalled = $?
& 127;
238 my $exit_code = $?
>> 8;
239 return unless $signalled or $exit_code;
241 my @sprintf_args = ($cmd_name ?
$cmd_name : $args->[0], $exit_code);
243 # Quiet the 'redundant' warning category, except we
244 # need to support down to Perl 5.8.1, so we can't do a
245 # "no warnings 'redundant'", since that category was
246 # introduced in perl 5.22, and asking for it will die
249 return sprintf($msg, @sprintf_args);
251 return sprintf(__
("fatal: command '%s' died with exit code %d"),
256 my $msg = system_or_msg
(@_);
261 if (!defined($editor)) {
262 $editor = Git
::command_oneline
('var', 'GIT_EDITOR');
264 my $die_msg = __
("the editor exited uncleanly, aborting everything");
265 if (defined($multiedit) && !$multiedit) {
266 system_or_die
(['sh', '-c', $editor.' "$@"', $editor, $_], $die_msg) for @_;
268 system_or_die
(['sh', '-c', $editor.' "$@"', $editor, @_], $die_msg);
272 # Variables with corresponding config settings
273 my ($suppress_from, $signed_off_by_cc);
274 my ($cover_cc, $cover_to);
275 my ($to_cmd, $cc_cmd, $header_cmd);
276 my ($smtp_server, $smtp_server_port, @smtp_server_options);
277 my ($smtp_authuser, $smtp_encryption, $smtp_ssl_cert_path);
278 my ($batch_size, $relogin_delay);
279 my ($identity, $aliasfiletype, @alias_files, $smtp_domain, $smtp_auth);
282 my ($auto_8bit_encoding);
283 my ($compose_encoding);
285 my ($mailmap_file, $mailmap_blob);
286 # Variables with corresponding config settings & hardcoded defaults
287 my ($debug_net_smtp) = 0; # Net::SMTP, see send_message()
289 my $chain_reply_to = 0;
293 my $target_xfer_encoding = 'auto';
294 my $forbid_sendmail_variables = 1;
295 my $outlook_id_fix = 'auto';
297 my %config_bool_settings = (
298 "thread" => \
$thread,
299 "chainreplyto" => \
$chain_reply_to,
300 "suppressfrom" => \
$suppress_from,
301 "signedoffbycc" => \
$signed_off_by_cc,
302 "cccover" => \
$cover_cc,
303 "tocover" => \
$cover_to,
304 "signedoffcc" => \
$signed_off_by_cc,
305 "validate" => \
$validate,
306 "multiedit" => \
$multiedit,
307 "annotate" => \
$annotate,
308 "xmailer" => \
$use_xmailer,
309 "forbidsendmailvariables" => \
$forbid_sendmail_variables,
310 "mailmap" => \
$mailmap,
311 "outlookidfix" => \
$outlook_id_fix,
314 my %config_settings = (
315 "smtpencryption" => \
$smtp_encryption,
316 "smtpserver" => \
$smtp_server,
317 "smtpserverport" => \
$smtp_server_port,
318 "smtpserveroption" => \
@smtp_server_options,
319 "smtpuser" => \
$smtp_authuser,
320 "smtppass" => \
$smtp_authpass,
321 "smtpdomain" => \
$smtp_domain,
322 "smtpauth" => \
$smtp_auth,
323 "smtpbatchsize" => \
$batch_size,
324 "smtprelogindelay" => \
$relogin_delay,
329 "headercmd" => \
$header_cmd,
330 "aliasfiletype" => \
$aliasfiletype,
331 "bcc" => \
@config_bcc,
332 "suppresscc" => \
@suppress_cc,
333 "envelopesender" => \
$envelope_sender,
334 "confirm" => \
$confirm,
336 "assume8bitencoding" => \
$auto_8bit_encoding,
337 "composeencoding" => \
$compose_encoding,
338 "transferencoding" => \
$target_xfer_encoding,
339 "sendmailcmd" => \
$sendmail_cmd,
342 my %config_path_settings = (
343 "aliasesfile" => \
@alias_files,
344 "smtpsslcertpath" => \
$smtp_ssl_cert_path,
345 "mailmap.file" => \
$mailmap_file,
346 "mailmap.blob" => \
$mailmap_blob,
349 # Handle Uncouth Termination
352 require Term
::ANSIColor
;
353 print Term
::ANSIColor
::color
("reset"), "\n";
355 # SMTP password masked
358 # tmp files from --compose
359 if (defined $compose_filename) {
360 if (-e
$compose_filename) {
361 printf __
("'%s' contains an intermediate version ".
362 "of the email you were composing.\n"),
365 if (-e
($compose_filename . ".final")) {
366 printf __
("'%s.final' contains the composed email.\n"),
374 $SIG{TERM
} = \
&signal_handler
;
375 $SIG{INT
} = \
&signal_handler
;
377 # Read our sendemail.* config
379 my ($known_keys, $configured, $prefix) = @_;
381 foreach my $setting (keys %config_bool_settings) {
382 my $target = $config_bool_settings{$setting};
383 my $key = "$prefix.$setting";
384 next unless exists $known_keys->{$key};
385 my $v = (@
{$known_keys->{$key}} == 1 &&
386 (defined $known_keys->{$key}->[0] &&
387 $known_keys->{$key}->[0] =~ /^(?:true|false)$/s))
388 ?
$known_keys->{$key}->[0] eq 'true'
389 : Git
::config_bool
(@repo, $key);
390 next unless defined $v;
391 next if $configured->{$setting}++;
395 foreach my $setting (keys %config_path_settings) {
396 my $target = $config_path_settings{$setting};
397 my $key = "$prefix.$setting";
398 next unless exists $known_keys->{$key};
399 if (ref($target) eq "ARRAY") {
400 my @values = Git
::config_path
(@repo, $key);
402 next if $configured->{$setting}++;
406 my $v = Git
::config_path
(@repo, "$prefix.$setting");
407 next unless defined $v;
408 next if $configured->{$setting}++;
413 foreach my $setting (keys %config_settings) {
414 my $target = $config_settings{$setting};
415 my $key = "$prefix.$setting";
416 next unless exists $known_keys->{$key};
417 if (ref($target) eq "ARRAY") {
418 my @values = @
{$known_keys->{$key}};
419 @values = grep { defined } @values;
420 next if $configured->{$setting}++;
424 my $v = $known_keys->{$key}->[-1];
425 next unless defined $v;
426 next if $configured->{$setting}++;
436 my $ret = Git
::command
(
443 # We must always return ($k, $v) here, since
444 # empty config values will be just "key\0",
445 # not "key\nvalue\0".
446 my ($k, $v) = split /\n/, $_, 2;
451 # If we have no keys we're OK, otherwise re-throw
452 die $@
if $@
->value != 1;
457 # Save ourselves a lot of work of shelling out to 'git config' (it
458 # parses 'bool' etc.) by only doing so for config keys that exist.
459 my %known_config_keys;
461 my @kv = config_regexp
("^sende?mail[.]");
462 while (my ($k, $v) = splice @kv, 0, 2) {
463 push @
{$known_config_keys{$k}} => $v;
467 # sendemail.identity yields to --identity. We must parse this
468 # special-case first before the rest of the config is read.
470 my $key = "sendemail.identity";
471 $identity = Git
::config
(@repo, $key) if exists $known_config_keys{$key};
473 my %identity_options = (
474 "identity=s" => \
$identity,
475 "no-identity" => \
$no_identity,
477 my $rc = GetOptions
(%identity_options);
479 undef $identity if $no_identity;
481 # Now we know enough to read the config
484 read_config
(\
%known_config_keys, \
%configured, "sendemail.$identity") if defined $identity;
485 read_config
(\
%known_config_keys, \
%configured, "sendemail");
488 # Begin by accumulating all the variables (defined above), that we will end up
489 # needing, first, from the command line:
492 my $git_completion_helper;
493 my %dump_aliases_options = (
495 "dump-aliases" => \
$dump_aliases,
496 "translate-aliases" => \
$translate_aliases,
498 $rc = GetOptions
(%dump_aliases_options);
500 die __
("--dump-aliases incompatible with other options\n")
501 if !$help and ($dump_aliases or $translate_aliases) and @ARGV;
502 die __
("--dump-aliases and --translate-aliases are mutually exclusive\n")
503 if !$help and $dump_aliases and $translate_aliases;
505 "sender|from=s" => \
$sender,
506 "in-reply-to=s" => \
$initial_in_reply_to,
507 "reply-to=s" => \
$reply_to,
508 "subject=s" => \
$initial_subject,
509 "to=s" => \
@getopt_to,
510 "to-cmd=s" => \
$to_cmd,
512 "cc=s" => \
@getopt_cc,
514 "bcc=s" => \
@getopt_bcc,
515 "no-bcc" => \
$no_bcc,
516 "chain-reply-to!" => \
$chain_reply_to,
517 "sendmail-cmd=s" => \
$sendmail_cmd,
518 "smtp-server=s" => \
$smtp_server,
519 "smtp-server-option=s" => \
@smtp_server_options,
520 "smtp-server-port=s" => \
$smtp_server_port,
521 "smtp-user=s" => \
$smtp_authuser,
522 "smtp-pass:s" => \
$smtp_authpass,
523 "smtp-ssl" => sub { $smtp_encryption = 'ssl' },
524 "smtp-encryption=s" => \
$smtp_encryption,
525 "smtp-ssl-cert-path=s" => \
$smtp_ssl_cert_path,
526 "smtp-debug:i" => \
$debug_net_smtp,
527 "smtp-domain:s" => \
$smtp_domain,
528 "smtp-auth=s" => \
$smtp_auth,
529 "no-smtp-auth" => sub {$smtp_auth = 'none'},
530 "annotate!" => \
$annotate,
531 "compose" => \
$compose,
533 "cc-cmd=s" => \
$cc_cmd,
534 "header-cmd=s" => \
$header_cmd,
535 "no-header-cmd" => \
$no_header_cmd,
536 "suppress-from!" => \
$suppress_from,
537 "suppress-cc=s" => \
@suppress_cc,
538 "signed-off-cc|signed-off-by-cc!" => \
$signed_off_by_cc,
539 "cc-cover!" => \
$cover_cc,
540 "to-cover!" => \
$cover_to,
541 "confirm=s" => \
$confirm,
542 "dry-run" => \
$dry_run,
543 "envelope-sender=s" => \
$envelope_sender,
544 "thread!" => \
$thread,
545 "validate!" => \
$validate,
546 "transfer-encoding=s" => \
$target_xfer_encoding,
547 "mailmap!" => \
$mailmap,
548 "use-mailmap!" => \
$mailmap,
549 "format-patch!" => \
$format_patch,
550 "8bit-encoding=s" => \
$auto_8bit_encoding,
551 "compose-encoding=s" => \
$compose_encoding,
553 "xmailer!" => \
$use_xmailer,
554 "batch-size=i" => \
$batch_size,
555 "relogin-delay=i" => \
$relogin_delay,
556 "git-completion-helper" => \
$git_completion_helper,
557 "v=s" => \
$reroll_count,
558 "outlook-id-fix!" => \
$outlook_id_fix,
560 $rc = GetOptions
(%options);
562 # Munge any "either config or getopt, not both" variables
563 my @initial_to = @getopt_to ?
@getopt_to : ($no_to ?
() : @config_to);
564 my @initial_cc = @getopt_cc ?
@getopt_cc : ($no_cc ?
() : @config_cc);
565 my @initial_bcc = @getopt_bcc ?
@getopt_bcc : ($no_bcc ?
() : @config_bcc);
568 my %all_options = (%options, %dump_aliases_options, %identity_options);
569 completion_helper
(\
%all_options) if $git_completion_helper;
574 if ($forbid_sendmail_variables && grep { /^sendmail/s } keys %known_config_keys) {
575 die __
("fatal: found configuration options for 'sendmail'\n" .
576 "git-send-email is configured with the sendemail.* options - note the 'e'.\n" .
577 "Set sendemail.forbidSendmailVariables to false to disable this check.\n");
580 die __
("Cannot run git format-patch from outside a repository\n")
581 if $format_patch and not $repo;
583 die __
("`batch-size` and `relogin` must be specified together " .
584 "(via command-line or configuration option)\n")
585 if defined $relogin_delay and not defined $batch_size;
587 # 'default' encryption is none -- this only prevents a warning
588 $smtp_encryption = '' unless (defined $smtp_encryption);
590 # Set CC suppressions
593 foreach my $entry (@suppress_cc) {
594 # Please update $__git_send_email_suppresscc_options
595 # in git-completion.bash when you add new options.
596 die sprintf(__
("Unknown --suppress-cc field: '%s'\n"), $entry)
597 unless $entry =~ /^(?:all|cccmd|cc|author|self|sob|body|bodycc|misc-by)$/;
598 $suppress_cc{$entry} = 1;
602 if ($suppress_cc{'all'}) {
603 foreach my $entry (qw
(cccmd cc author self sob body bodycc misc
-by
)) {
604 $suppress_cc{$entry} = 1;
606 delete $suppress_cc{'all'};
609 # If explicit old-style ones are specified, they trump --suppress-cc.
610 $suppress_cc{'self'} = $suppress_from if defined $suppress_from;
611 $suppress_cc{'sob'} = !$signed_off_by_cc if defined $signed_off_by_cc;
613 if ($suppress_cc{'body'}) {
614 foreach my $entry (qw
(sob bodycc misc
-by
)) {
615 $suppress_cc{$entry} = 1;
617 delete $suppress_cc{'body'};
620 # Set confirm's default value
621 my $confirm_unconfigured = !defined $confirm;
622 if ($confirm_unconfigured) {
623 $confirm = scalar %suppress_cc ?
'compose' : 'auto';
625 # Please update $__git_send_email_confirm_options in
626 # git-completion.bash when you add new options.
627 die sprintf(__
("Unknown --confirm setting: '%s'\n"), $confirm)
628 unless $confirm =~ /^(?:auto|cc|compose|always|never)/;
630 # Debugging, print out the suppressions.
632 print "suppressions:\n";
633 foreach my $entry (keys %suppress_cc) {
634 printf " %-5s -> $suppress_cc{$entry}\n", $entry;
638 my ($repoauthor, $repocommitter);
641 my ($author, $committer);
644 return $cache{$what} if exists $cache{$what};
645 ($cache{$what}) = Git
::ident_person
(@repo, $what);
646 return $cache{$what};
648 $repoauthor = sub { $common->('author') };
649 $repocommitter = sub { $common->('committer') };
652 sub parse_address_line
{
653 require Git
::LoadCPAN
::Mail
::Address
;
654 return map { $_->format } Mail
::Address
->parse($_[0]);
658 require Text
::ParseWords
;
659 return Text
::ParseWords
::quotewords
('\s*,\s*', 1, @_);
664 sub parse_sendmail_alias
{
667 printf STDERR __
("warning: sendmail alias with quotes is not supported: %s\n"), $_;
668 } elsif (/:include:/) {
669 printf STDERR __
("warning: `:include:` not supported: %s\n"), $_;
671 printf STDERR __
("warning: `/file` or `|pipe` redirection not supported: %s\n"), $_;
672 } elsif (/^(\S+?)\s*:\s*(.+)$/) {
673 my ($alias, $addr) = ($1, $2);
674 $aliases{$alias} = [ split_addrs
($addr) ];
676 printf STDERR __
("warning: sendmail line is not recognized: %s\n"), $_;
680 sub parse_sendmail_aliases
{
685 next if /^\s*$/ || /^\s*#/;
686 $s .= $_, next if $s =~ s/\\$// || s/^\s+//;
687 parse_sendmail_alias
($s) if $s;
690 $s =~ s/\\$//; # silently tolerate stray '\' on last line
691 parse_sendmail_alias
($s) if $s;
695 # multiline formats can be supported in the future
696 mutt
=> sub { my $fh = shift; while (<$fh>) {
697 if (/^\s*alias\s+(?:-group\s+\S+\s+)*(\S+)\s+(.*)$/) {
698 my ($alias, $addr) = ($1, $2);
699 $addr =~ s/#.*$//; # mutt allows # comments
700 # commas delimit multiple addresses
701 my @addr = split_addrs
($addr);
703 # quotes may be escaped in the file,
704 # unescape them so we do not double-escape them later.
705 s/\\"/"/g foreach @addr;
706 $aliases{$alias} = \
@addr
708 mailrc
=> sub { my $fh = shift; while (<$fh>) {
709 if (/^alias\s+(\S+)\s+(.*?)\s*$/) {
710 require Text
::ParseWords
;
711 # spaces delimit multiple addresses
712 $aliases{$1} = [ Text
::ParseWords
::quotewords
('\s+', 0, $2) ];
714 pine
=> sub { my $fh = shift; my $f='\t[^\t]*';
715 for (my $x = ''; defined($x); $x = $_) {
717 $x .= $1 while(defined($_ = <$fh>) && /^ +(.*)$/);
718 $x =~ /^(\S+)$f\t\(?([^\t]+?)\)?(:?$f){0,2}$/ or next;
719 $aliases{$1} = [ split_addrs
($2) ];
721 elm
=> sub { my $fh = shift;
723 if (/^(\S+)\s+=\s+[^=]+=\s(\S+)/) {
724 my ($alias, $addr) = ($1, $2);
725 $aliases{$alias} = [ split_addrs
($addr) ];
728 sendmail
=> \
&parse_sendmail_aliases
,
729 gnus
=> sub { my $fh = shift; while (<$fh>) {
730 if (/\(define-mail-alias\s+"(\S+?)"\s+"(\S+?)"\)/) {
731 $aliases{$1} = [ $2 ];
733 # Please update _git_config() in git-completion.bash when you
737 if (@alias_files and $aliasfiletype and defined $parse_alias{$aliasfiletype}) {
738 foreach my $file (@alias_files) {
739 open my $fh, '<', $file or die "opening $file: $!\n";
740 $parse_alias{$aliasfiletype}->($fh);
746 print "$_\n" for (sort keys %aliases);
750 if ($translate_aliases) {
752 my @addr_list = parse_address_line
($_);
753 @addr_list = expand_aliases
(@addr_list);
754 @addr_list = sanitize_address_list
(@addr_list);
755 print "$_\n" for @addr_list;
760 # is_format_patch_arg($f) returns 0 if $f names a patch, or 1 if
761 # $f is a revision list specification to be passed to format-patch.
762 sub is_format_patch_arg
{
766 $repo->command('rev-parse', '--verify', '--quiet', $f);
767 if (defined($format_patch)) {
768 return $format_patch;
770 die sprintf(__
(<<EOF), $f, $f);
771 File '%s' exists but it could also be the range of commits
772 to produce patches for. Please disambiguate by...
774 * Saying "./%s" if you mean a file; or
775 * Giving --format-patch option if you mean a range.
777 } catch Git
::Error
::Command with
{
778 # Not a valid revision. Treat it as a filename.
783 # Now that all the defaults are set, process the rest of the command line
784 # arguments and collect up the files that need to be processed.
786 while (defined(my $f = shift @ARGV)) {
788 push @rev_list_opts, "--", @ARGV;
790 } elsif (-d
$f and !is_format_patch_arg
($f)) {
792 or die sprintf(__
("Failed to opendir %s: %s"), $f, $!);
795 push @files, grep { -f
$_ } map { File
::Spec
->catfile($f, $_) }
798 } elsif ((-f
$f or -p
$f) and !is_format_patch_arg
($f)) {
801 push @rev_list_opts, $f;
805 if (@rev_list_opts) {
806 die __
("Cannot run git format-patch from outside a repository\n")
809 push @files, $repo->command('format-patch', '-o', File
::Temp
::tempdir
(CLEANUP
=> 1),
810 defined $reroll_count ?
('-v', $reroll_count) : (),
814 if (defined $sender) {
815 $sender =~ s/^\s+|\s+$//g;
816 ($sender) = expand_aliases
($sender);
818 $sender = $repoauthor->() || $repocommitter->() || '';
821 # $sender could be an already sanitized address
822 # (e.g. sendemail.from could be manually sanitized by user).
823 # But it's a no-op to run sanitize_address on an already sanitized address.
824 $sender = sanitize_address
($sender);
826 $time = time - scalar $#files;
828 @files = handle_backup_files
(@files);
832 print $_,"\n" for (@files);
835 print STDERR __
("\nNo patch files specified!\n\n");
839 sub get_patch_subject
{
841 open (my $fh, '<', $fn);
842 while (my $line = <$fh>) {
843 next unless ($line =~ /^Subject: (.*)$/);
848 die sprintf(__
("No subject line in %s?"), $fn);
852 # Note that this does not need to be secure, but we will make a small
853 # effort to have it be unique
855 $compose_filename = ($repo ?
856 File
::Temp
::tempfile
(".gitsendemail.msg.XXXXXX", DIR
=> $repo->repo_path()) :
857 File
::Temp
::tempfile
(".gitsendemail.msg.XXXXXX", DIR
=> "."))[1];
858 open my $c, ">", $compose_filename
859 or die sprintf(__
("Failed to open for writing %s: %s"), $compose_filename, $!);
862 my $tpl_sender = $sender || $repoauthor->() || $repocommitter->() || '';
863 my $tpl_subject = $initial_subject || '';
864 my $tpl_in_reply_to = $initial_in_reply_to || '';
865 my $tpl_reply_to = $reply_to || '';
866 my $tpl_to = join(',', @initial_to);
867 my $tpl_cc = join(',', @initial_cc);
868 my $tpl_bcc = join(', ', @initial_bcc);
870 print $c <<EOT1, Git::prefix_lines("GIT: ", __(<<EOT2)), <<EOT3;
871 From $tpl_sender # This line is ignored.
873 Lines beginning in "GIT:" will be removed.
874 Consider including an overall diffstat or table of contents
875 for the patch you are writing.
877 Clear the body content if you don't wish to send a summary.
883 Reply-To: $tpl_reply_to
884 Subject: $tpl_subject
885 In-Reply-To: $tpl_in_reply_to
889 print $c get_patch_subject($f);
894 do_edit($compose_filename, @files);
896 do_edit($compose_filename);
899 open my $c2, ">", $compose_filename . ".final"
900 or die sprintf(__("Failed to open %s.final: %s"), $compose_filename, $!);
902 open $c, "<", $compose_filename
903 or die sprintf(__("Failed to open %s: %s"), $compose_filename, $!);
905 my $need_8bit_cte = file_has_nonascii($compose_filename);
907 my $summary_empty = 1;
908 if (!defined $compose_encoding) {
909 $compose_encoding = "UTF-8";
914 $summary_empty = 0 unless (/^\n$/);
917 if ($need_8bit_cte) {
918 print $c2 "MIME-Version: 1.0\n",
919 "Content-Type: text/plain; ",
920 "charset=$compose_encoding\n",
921 "Content-Transfer-Encoding: 8bit\n";
923 } elsif (/^MIME-Version:/i) {
925 } elsif (/^Subject:\s*(.+)\s*$/i) {
926 $initial_subject = $1;
927 my $subject = $initial_subject;
929 quote_subject($subject, $compose_encoding) .
931 } elsif (/^In-Reply-To:\s*(.+)\s*$/i) {
932 $initial_in_reply_to = $1;
934 } elsif (/^Reply-To:\s*(.+)\s*$/i) {
936 } elsif (/^From:\s*(.+)\s*$/i) {
939 } elsif (/^To:\s*(.+)\s*$/i) {
940 @initial_to = parse_address_line($1);
942 } elsif (/^Cc:\s*(.+)\s*$/i) {
943 @initial_cc = parse_address_line($1);
946 @initial_bcc = parse_address_line($1);
954 if ($summary_empty) {
955 print __("Summary email is empty, skipping it\n");
958 } elsif ($annotate) {
963 # Only instantiate one $term per program run, since some
964 # Term::ReadLine providers refuse to create a second instance.
967 require Term::ReadLine;
968 if (!defined $term) {
969 $term = $ENV{"GIT_SEND_EMAIL_NOTTY"}
970 ? Term::ReadLine->new('git-send-email', \*STDIN, \*STDOUT)
971 : Term::ReadLine->new('git-send-email');
978 my ($prompt, %arg) = @_;
979 my $valid_re = $arg{valid_re};
980 my $default = $arg{default};
981 my $confirm_only = $arg{confirm_only};
985 return defined $default ? $default : undef
986 unless defined $term->IN and defined fileno($term->IN) and
987 defined $term->OUT and defined fileno($term->OUT);
989 $resp = $term->readline($prompt);
990 if (!defined $resp) { # EOF
992 return defined $default ? $default : undef;
994 if ($resp eq '' and defined $default) {
997 if (!defined $valid_re or $resp =~ /$valid_re/) {
1000 if ($confirm_only) {
1001 my $yesno = $term->readline(
1002 # TRANSLATORS: please keep [y/N] as is.
1003 sprintf(__("Are you sure you want to use <%s> [y/N]? "), $resp));
1004 if (defined $yesno && $yesno =~ /y/i) {
1012 my %broken_encoding;
1014 sub file_declares_8bit_cte {
1016 open (my $fh, '<', $fn);
1017 while (my $line = <$fh>) {
1018 last if ($line =~ /^$/);
1019 return 1 if ($line =~ /^Content-Transfer-Encoding: .*8bit.*$/);
1025 foreach my $f (@files) {
1026 next unless (body_or_subject_has_nonascii($f)
1027 && !file_declares_8bit_cte($f));
1028 $broken_encoding{$f} = 1;
1031 if (!defined $auto_8bit_encoding && scalar %broken_encoding) {
1032 print __("The following files are 8bit, but do not declare " .
1033 "a Content-Transfer-Encoding.\n");
1034 foreach my $f (sort keys %broken_encoding) {
1037 $auto_8bit_encoding = ask(__("Which 8bit encoding should I declare [UTF-8]? "),
1038 valid_re => qr/.{4}/, confirm_only => 1,
1039 default => "UTF-8");
1043 for my $f (@files) {
1044 if (get_patch_subject($f) =~ /\Q*** SUBJECT HERE ***\E/) {
1045 die sprintf(__("Refusing to send because the patch\n\t%s\n"
1046 . "has the template subject '*** SUBJECT HERE ***'. "
1047 . "Pass --force if you really want to send.\n"), $f);
1052 my $to_whom = __("To whom should the emails be sent (if anyone)?");
1054 if (!@initial_to && !defined $to_cmd) {
1055 my $to = ask("$to_whom ",
1057 valid_re => qr/\@.*\./, confirm_only => 1);
1058 push @initial_to, parse_address_line($to) if defined $to; # sanitized/validated later
1062 sub expand_aliases {
1063 return map { expand_one_alias($_) } @_;
1066 my %EXPANDED_ALIASES;
1067 sub expand_one_alias {
1069 if ($EXPANDED_ALIASES{$alias}) {
1070 die sprintf(__("fatal: alias '%s' expands to itself\n"), $alias);
1072 local $EXPANDED_ALIASES{$alias} = 1;
1073 return $aliases{$alias} ? expand_aliases(@{$aliases{$alias}}) : $alias;
1076 @initial_to = process_address_list(@initial_to);
1077 @initial_cc = process_address_list(@initial_cc);
1078 @initial_bcc = process_address_list(@initial_bcc);
1080 if ($thread && !defined $initial_in_reply_to && $prompting) {
1081 $initial_in_reply_to = ask(
1082 __("Message-ID to be used as In-Reply-To for the first email (if any)? "),
1084 valid_re => qr/\@.*\./, confirm_only => 1);
1086 if (defined $initial_in_reply_to) {
1087 $initial_in_reply_to =~ s/^\s*<?//;
1088 $initial_in_reply_to =~ s/>?\s*$//;
1089 $initial_in_reply_to = "<$initial_in_reply_to>" if $initial_in_reply_to ne '';
1092 if (defined $reply_to) {
1093 $reply_to =~ s/^\s+|\s+$//g;
1094 ($reply_to) = expand_aliases($reply_to);
1095 $reply_to = sanitize_address($reply_to);
1098 if (!defined $sendmail_cmd && !defined $smtp_server) {
1099 my @sendmail_paths = qw( /usr/sbin/sendmail /usr/lib/sendmail );
1100 push @sendmail_paths, map {"$_/sendmail"} split /:/, $ENV{PATH
};
1101 foreach (@sendmail_paths) {
1108 if (!defined $sendmail_cmd) {
1109 $smtp_server = 'localhost'; # could be 127.0.0.1, too... *shrug*
1113 if ($compose && $compose > 0) {
1114 @files = ($compose_filename . ".final", @files);
1117 # Variables we set as part of the loop over files
1118 our ($message_id, %mail, $subject, $in_reply_to, $references, $message,
1119 $needs_confirm, $message_num, $ask_default);
1121 sub mailmap_address_list
{
1122 return @_ unless @_ and $mailmap;
1124 push(@options, "--mailmap-file=$mailmap_file") if $mailmap_file;
1125 push(@options, "--mailmap-blob=$mailmap_blob") if $mailmap_blob;
1126 my @addr_list = Git
::command
('check-mailmap', @options, @_);
1127 s/^<(.*)>$/$1/ for @addr_list;
1131 sub extract_valid_address
{
1132 my $address = shift;
1133 my $local_part_regexp = qr/[^<>"\s@]+/;
1134 my $domain_regexp = qr/[^.<>"\s@]+(?:\.[^.<>"\s@]+)+/;
1136 # check for a local address:
1137 return $address if ($address =~ /^($local_part_regexp)$/);
1139 $address =~ s/^\s*<(.*)>\s*$/$1/;
1140 my $have_email_valid = eval { require Email
::Valid
; 1 };
1141 if ($have_email_valid) {
1142 return scalar Email
::Valid
->address($address);
1145 # less robust/correct than the monster regexp in Email::Valid,
1146 # but still does a 99% job, and one less dependency
1147 return $1 if $address =~ /($local_part_regexp\@$domain_regexp)/;
1151 sub extract_valid_address_or_die
{
1152 my $address = shift;
1153 my $valid_address = extract_valid_address
($address);
1154 die sprintf(__
("error: unable to extract a valid address from: %s\n"), $address)
1156 return $valid_address;
1159 sub validate_address
{
1160 my $address = shift;
1161 while (!extract_valid_address
($address)) {
1162 printf STDERR __
("error: unable to extract a valid address from: %s\n"), $address;
1163 # TRANSLATORS: Make sure to include [q] [d] [e] in your
1164 # translation. The program will only accept English input
1166 $_ = ask
(__
("What to do with this address? ([q]uit|[d]rop|[e]dit): "),
1167 valid_re
=> qr/^(?:quit|q|drop|d|edit|e)/i,
1172 cleanup_compose_files
();
1175 $address = ask
("$to_whom ",
1177 valid_re
=> qr/\@.*\./, confirm_only
=> 1);
1182 sub validate_address_list
{
1183 return (grep { defined $_ }
1184 map { validate_address
($_) } @_);
1187 # Usually don't need to change anything below here.
1189 # we make a "fake" message id by taking the current number
1190 # of seconds since the beginning of Unix time and tacking on
1191 # a random number to the end, in case we are called quicker than
1192 # 1 second since the last time we were called.
1194 # We'll setup a template for the message id, using the "from" address:
1196 my ($message_id_stamp, $message_id_serial);
1197 sub make_message_id
{
1199 if (!defined $message_id_stamp) {
1201 $message_id_stamp = POSIX
::strftime
("%Y%m%d%H%M%S.$$", gmtime(time));
1202 $message_id_serial = 0;
1204 $message_id_serial++;
1205 $uniq = "$message_id_stamp-$message_id_serial";
1208 for ($sender, $repocommitter->(), $repoauthor->()) {
1209 $du_part = extract_valid_address
(sanitize_address
($_));
1210 last if (defined $du_part and $du_part ne '');
1212 if (not defined $du_part or $du_part eq '') {
1213 require Sys
::Hostname
;
1214 $du_part = 'user@' . Sys
::Hostname
::hostname
();
1216 my $message_id_template = "<%s-%s>";
1217 $message_id = sprintf($message_id_template, $uniq, $du_part);
1218 #print "new message id = $message_id\n"; # Was useful for debugging
1221 sub unquote_rfc2047
{
1224 my $sep = qr/[ \t]+/;
1225 s
{$re_encoded_word(?
:$sep$re_encoded_word)*}{
1226 my @words = split $sep, $&;
1228 m/$re_encoded_word/;
1232 if ($encoding eq 'q' || $encoding eq 'Q') {
1235 s/=([0-9A-F]{2})/chr(hex($1))/egi;
1237 # other encodings not supported yet
1242 return wantarray ?
($_, $charset) : $_;
1247 my $encoding = shift || 'UTF-8';
1248 s/([^-a-zA-Z0-9!*+\/])/sprintf
("=%02X", ord($1))/eg
;
1249 s/(.*)/=\?$encoding\?q\?$1\?=/;
1253 sub is_rfc2047_quoted
{
1256 $s =~ m/^(?:"[[:ascii:]]*"|$re_encoded_word)$/o;
1259 sub subject_needs_rfc2047_quoting
{
1262 return ($s =~ /[^[:ascii:]]/) || ($s =~ /=\?/);
1266 local $subject = shift;
1267 my $encoding = shift || 'UTF-8';
1269 if (subject_needs_rfc2047_quoting
($subject)) {
1270 return quote_rfc2047
($subject, $encoding);
1275 # use the simplest quoting being able to handle the recipient
1276 sub sanitize_address
{
1277 my ($recipient) = @_;
1279 # remove garbage after email address
1280 $recipient =~ s/(.*>).*$/$1/;
1282 my ($recipient_name, $recipient_addr) = ($recipient =~ /^(.*?)\s*(<.*)/);
1284 if (not $recipient_name) {
1288 # if recipient_name is already quoted, do nothing
1289 if (is_rfc2047_quoted
($recipient_name)) {
1293 # remove non-escaped quotes
1294 $recipient_name =~ s/(^|[^\\])"/$1/g;
1296 # rfc2047 is needed if a non-ascii char is included
1297 if ($recipient_name =~ /[^[:ascii:]]/) {
1298 $recipient_name = quote_rfc2047
($recipient_name);
1301 # double quotes are needed if specials or CTLs are included
1302 elsif ($recipient_name =~ /[][()<>@,;:\\".\000-\037\177]/) {
1303 $recipient_name =~ s/([\\\r])/\\$1/g;
1304 $recipient_name = qq["$recipient_name"];
1307 return "$recipient_name $recipient_addr";
1311 sub strip_garbage_one_address
{
1314 if ($addr =~ /^(("[^"]*"|[^"<]*)? *<[^>]*>).*/) {
1315 # "Foo Bar" <foobar@example.com> [possibly garbage here]
1316 # Foo Bar <foobar@example.com> [possibly garbage here]
1319 if ($addr =~ /^(<[^>]*>).*/) {
1320 # <foo@example.com> [possibly garbage here]
1321 # if garbage contains other addresses, they are ignored.
1324 if ($addr =~ /^([^"#,\s]*)/) {
1325 # address without quoting: remove anything after the address
1331 sub sanitize_address_list
{
1332 return (map { sanitize_address
($_) } @_);
1335 sub process_address_list
{
1336 my @addr_list = map { parse_address_line
($_) } @_;
1337 @addr_list = expand_aliases
(@addr_list);
1338 @addr_list = sanitize_address_list
(@addr_list);
1339 @addr_list = validate_address_list
(@addr_list);
1340 @addr_list = mailmap_address_list
(@addr_list);
1344 # Returns the local Fully Qualified Domain Name (FQDN) if available.
1346 # Tightly configured MTAa require that a caller sends a real DNS
1347 # domain name that corresponds the IP address in the HELO/EHLO
1348 # handshake. This is used to verify the connection and prevent
1349 # spammers from trying to hide their identity. If the DNS and IP don't
1350 # match, the receiving MTA may deny the connection.
1352 # Here is a deny example of Net::SMTP with the default "localhost.localdomain"
1354 # Net::SMTP=GLOB(0x267ec28)>>> EHLO localhost.localdomain
1355 # Net::SMTP=GLOB(0x267ec28)<<< 550 EHLO argument does not match calling host
1357 # This maildomain*() code is based on ideas in Perl library Test::Reporter
1358 # /usr/share/perl5/Test/Reporter/Mail/Util.pm ==> sub _maildomain ()
1362 my $subdomain = '(?!-)[A-Za-z0-9-]{1,63}(?<!-)';
1363 return defined $domain && !($^O
eq 'darwin' && $domain =~ /\.local$/)
1364 && $domain =~ /^$subdomain(?:\.$subdomain)*$/;
1367 sub maildomain_net
{
1370 require Net
::Domain
;
1371 my $domain = Net
::Domain
::domainname
();
1372 $maildomain = $domain if valid_fqdn
($domain);
1377 sub maildomain_mta
{
1380 for my $host (qw(mailhost localhost)) {
1382 my $smtp = Net
::SMTP
->new($host);
1383 if (defined $smtp) {
1384 my $domain = $smtp->domain;
1387 $maildomain = $domain if valid_fqdn
($domain);
1389 last if $maildomain;
1396 sub maildomain_hostname_command
{
1399 if ($^O
eq 'linux' || $^O
eq 'darwin') {
1400 my $domain = `(hostname -f) 2>/dev/null`;
1403 $maildomain = $domain if valid_fqdn
($domain);
1410 return maildomain_net
() || maildomain_mta
() ||
1411 maildomain_hostname_command
|| 'localhost.localdomain';
1414 sub smtp_host_string
{
1415 if (defined $smtp_server_port) {
1416 return "$smtp_server:$smtp_server_port";
1418 return $smtp_server;
1422 # Returns 1 if authentication succeeded or was not necessary
1423 # (smtp_user was not specified), and 0 otherwise.
1425 sub smtp_auth_maybe
{
1426 if (!defined $smtp_authuser || $auth || (defined $smtp_auth && $smtp_auth eq "none")) {
1430 # Workaround AUTH PLAIN/LOGIN interaction defect
1431 # with Authen::SASL::Cyrus
1433 require Authen
::SASL
;
1434 Authen
::SASL
->import(qw(Perl));
1437 # Check mechanism naming as defined in:
1438 # https://tools.ietf.org/html/rfc4422#page-8
1439 if ($smtp_auth && $smtp_auth !~ /^(\b[A-Z0-9-_]{1,20}\s*)*$/) {
1440 die "invalid smtp auth: '${smtp_auth}'";
1443 # Authentication may fail not because credentials were
1444 # invalid but due to other reasons, in which we should not
1445 # reject credentials.
1446 $auth = Git
::credential
({
1447 'protocol' => 'smtp',
1448 'host' => smtp_host_string
(),
1449 'username' => $smtp_authuser,
1450 # if there's no password, "git credential fill" will
1451 # give us one, otherwise it'll just pass this one.
1452 'password' => $smtp_authpass
1458 # catch all SMTP auth error in a unified eval block
1461 my $sasl = Authen
::SASL
->new(
1462 mechanism
=> $smtp_auth,
1464 user
=> $cred->{'username'},
1465 pass
=> $cred->{'password'},
1466 authname
=> $cred->{'username'},
1469 $result = $smtp->auth($sasl);
1471 $result = $smtp->auth($cred->{'username'}, $cred->{'password'});
1473 1; # ensure true value is returned if no exception is thrown
1475 $error = $@
|| 'Unknown error';
1479 ? handle_smtp_error
($error)
1480 : ($result ?
1 : 0));
1486 sub handle_smtp_error
{
1489 # Parse SMTP status code from error message in:
1490 # https://www.rfc-editor.org/rfc/rfc5321.html
1491 if ($error =~ /\b(\d{3})\b/) {
1492 my $status_code = $1;
1493 if ($status_code =~ /^4/) {
1494 # 4yz: Transient Negative Completion reply
1495 warn "SMTP transient error (status code $status_code): $error";
1497 } elsif ($status_code =~ /^5/) {
1498 # 5yz: Permanent Negative Completion reply
1499 warn "SMTP permanent error (status code $status_code): $error";
1502 # If no recognized status code is found, treat as transient error
1503 warn "SMTP unknown error: $error. Treating as transient failure.";
1507 # If no status code is found, treat as transient error
1508 warn "SMTP generic error: $error";
1512 sub ssl_verify_params
{
1514 require IO
::Socket
::SSL
;
1515 IO
::Socket
::SSL
->import(qw
/SSL_VERIFY_PEER SSL_VERIFY_NONE/);
1518 print STDERR
"Not using SSL_VERIFY_PEER due to out-of-date IO::Socket::SSL.\n";
1522 if (!defined $smtp_ssl_cert_path) {
1523 # use the OpenSSL defaults
1524 return (SSL_verify_mode
=> SSL_VERIFY_PEER
());
1527 if ($smtp_ssl_cert_path eq "") {
1528 return (SSL_verify_mode
=> SSL_VERIFY_NONE
());
1529 } elsif (-d
$smtp_ssl_cert_path) {
1530 return (SSL_verify_mode
=> SSL_VERIFY_PEER
(),
1531 SSL_ca_path
=> $smtp_ssl_cert_path);
1532 } elsif (-f
$smtp_ssl_cert_path) {
1533 return (SSL_verify_mode
=> SSL_VERIFY_PEER
(),
1534 SSL_ca_file
=> $smtp_ssl_cert_path);
1536 die sprintf(__
("CA path \"%s\" does not exist"), $smtp_ssl_cert_path);
1540 sub file_name_is_absolute
{
1543 # msys does not grok DOS drive-prefixes
1544 if ($^O
eq 'msys') {
1545 return ($path =~ m
#^/# || $path =~ m#^[a-zA-Z]\:#)
1548 require File
::Spec
::Functions
;
1549 return File
::Spec
::Functions
::file_name_is_absolute
($path);
1553 my @recipients = unique_email_list
(@to);
1554 @cc = (grep { my $cc = extract_valid_address_or_die
($_);
1555 not grep { $cc eq $_ || $_ =~ /<\Q${cc}\E>$/ } @recipients
1558 my $to = join (",\n\t", @recipients);
1559 @recipients = unique_email_list
(@recipients,@cc,@initial_bcc);
1560 @recipients = (map { extract_valid_address_or_die
($_) } @recipients);
1561 my $date = format_2822_time
($time++);
1562 my $gitversion = '@GIT_VERSION@';
1563 if ($gitversion =~ m/..GIT_VERSION../) {
1564 $gitversion = Git
::version
();
1567 my $cc = join(",\n\t", unique_email_list
(@cc));
1570 $ccline = "\nCc: $cc";
1572 make_message_id
() unless defined($message_id);
1574 my $header = "From: $sender
1578 Message-ID: $message_id
1581 $header .= "X-Mailer: git-send-email $gitversion\n";
1585 $header .= "In-Reply-To: $in_reply_to\n";
1586 $header .= "References: $references\n";
1589 $header .= "Reply-To: $reply_to\n";
1592 $header .= join("\n", @xh) . "\n";
1594 my $recipients_ref = \
@recipients;
1595 return ($recipients_ref, $to, $date, $gitversion, $cc, $ccline, $header);
1600 if ($outlook_id_fix eq 'auto') {
1602 ($host eq 'smtp.office365.com' ||
1603 $host eq 'smtp-mail.outlook.com') ?
1 : 0;
1605 return $outlook_id_fix;
1608 # Prepares the email, then asks the user what to do.
1610 # If the user chooses to send the email, it's sent and 1 is returned.
1611 # If the user chooses not to send the email, 0 is returned.
1612 # If the user decides they want to make further edits, -1 is returned and the
1613 # caller is expected to call send_message again after the edits are performed.
1615 # If an error occurs sending the email, this just dies.
1618 my ($recipients_ref, $to, $date, $gitversion, $cc, $ccline, $header) = gen_header
();
1619 my @recipients = @
$recipients_ref;
1621 my @sendmail_parameters = ('-i', @recipients);
1622 my $raw_from = $sender;
1623 if (defined $envelope_sender && $envelope_sender ne "auto") {
1624 $raw_from = $envelope_sender;
1626 $raw_from = extract_valid_address
($raw_from);
1627 unshift (@sendmail_parameters,
1628 '-f', $raw_from) if(defined $envelope_sender);
1630 if ($needs_confirm && !$dry_run) {
1631 print "\n$header\n";
1632 if ($needs_confirm eq "inform") {
1633 $confirm_unconfigured = 0; # squelch this message for the rest of this run
1634 $ask_default = "y"; # assume yes on EOF since user hasn't explicitly asked for confirmation
1636 The Cc list above has been expanded by additional
1637 addresses found in the patch commit message. By default
1638 send-email prompts before sending whenever this occurs.
1639 This behavior is controlled by the sendemail.confirm
1640 configuration setting.
1642 For additional information, run 'git send-email --help'.
1643 To retain the current behavior, but squelch this message,
1644 run 'git config --global sendemail.confirm auto'.
1648 # TRANSLATORS: Make sure to include [y] [n] [e] [q] [a] in your
1649 # translation. The program will only accept English input
1651 $_ = ask
(__
("Send this email? ([y]es|[n]o|[e]dit|[q]uit|[a]ll): "),
1652 valid_re
=> qr/^(?:yes|y|no|n|edit|e|quit|q|all|a)/i,
1653 default => $ask_default);
1654 die __
("Send this email reply required") unless defined $_;
1656 # If we are skipping a message, we should make sure that
1657 # the next message is treated as the successor to the
1658 # previously sent message, and not the skipped message.
1662 # Since the same message will be sent again, we need to
1663 # decrement the message number to the previous message.
1664 # Otherwise, the edited message will be treated as a
1665 # different message sent after the original non-edited
1670 cleanup_compose_files
();
1677 unshift (@sendmail_parameters, @smtp_server_options);
1680 # We don't want to send the email.
1681 } elsif (defined $sendmail_cmd || file_name_is_absolute
($smtp_server)) {
1682 my $pid = open my $sm, '|-';
1683 defined $pid or die $!;
1685 if (defined $sendmail_cmd) {
1686 exec ("sh", "-c", "$sendmail_cmd \"\$@\"", "-", @sendmail_parameters)
1689 exec ($smtp_server, @sendmail_parameters)
1693 print $sm "$header\n$message";
1694 close $sm or die $!;
1697 if (!defined $smtp_server) {
1698 die __
("The required SMTP server is not properly defined.")
1702 my $use_net_smtp_ssl = version
->parse($Net::SMTP
::VERSION
) < version
->parse("2.34");
1703 $smtp_domain ||= maildomain
();
1705 if ($smtp_encryption eq 'ssl') {
1706 $smtp_server_port ||= 465; # ssmtp
1707 require IO
::Socket
::SSL
;
1709 # Suppress "variable accessed once" warning.
1712 $IO::Socket
::SSL
::DEBUG
= 1;
1715 # Net::SMTP::SSL->new() does not forward any SSL options
1716 IO
::Socket
::SSL
::set_client_defaults
(
1717 ssl_verify_params
());
1719 if ($use_net_smtp_ssl) {
1720 require Net
::SMTP
::SSL
;
1721 $smtp ||= Net
::SMTP
::SSL
->new($smtp_server,
1722 Hello
=> $smtp_domain,
1723 Port
=> $smtp_server_port,
1724 Debug
=> $debug_net_smtp);
1727 $smtp ||= Net
::SMTP
->new($smtp_server,
1728 Hello
=> $smtp_domain,
1729 Port
=> $smtp_server_port,
1730 Debug
=> $debug_net_smtp,
1735 $smtp_server_port ||= 25;
1736 $smtp ||= Net
::SMTP
->new($smtp_server,
1737 Hello
=> $smtp_domain,
1738 Debug
=> $debug_net_smtp,
1739 Port
=> $smtp_server_port);
1740 if ($smtp_encryption eq 'tls' && $smtp) {
1741 if ($use_net_smtp_ssl) {
1742 $smtp->command('STARTTLS');
1744 if ($smtp->code != 220) {
1745 die sprintf(__
("Server does not support STARTTLS! %s"), $smtp->message);
1747 require Net
::SMTP
::SSL
;
1748 $smtp = Net
::SMTP
::SSL
->start_SSL($smtp,
1749 ssl_verify_params
())
1750 or die sprintf(__
("STARTTLS failed! %s"), IO
::Socket
::SSL
::errstr
());
1753 $smtp->starttls(ssl_verify_params
())
1754 or die sprintf(__
("STARTTLS failed! %s"), IO
::Socket
::SSL
::errstr
());
1756 # Send EHLO again to receive fresh
1757 # supported commands
1758 $smtp->hello($smtp_domain);
1763 die __
("Unable to initialize SMTP properly. Check config and use --smtp-debug."),
1764 " VALUES: server=$smtp_server ",
1765 "encryption=$smtp_encryption ",
1766 "hello=$smtp_domain",
1767 defined $smtp_server_port ?
" port=$smtp_server_port" : "";
1770 smtp_auth_maybe
or die $smtp->message;
1772 $smtp->mail( $raw_from ) or die $smtp->message;
1773 $smtp->to( @recipients ) or die $smtp->message;
1774 $smtp->data or die $smtp->message;
1775 $smtp->datasend("$header\n") or die $smtp->message;
1776 my @lines = split /^/, $message;
1777 foreach my $line (@lines) {
1778 $smtp->datasend("$line") or die $smtp->message;
1780 $smtp->dataend() or die $smtp->message;
1782 # Outlook discards the Message-ID header we set while sending the email
1783 # and generates a new random Message-ID. So in order to avoid breaking
1784 # threads, we simply retrieve the Message-ID from the server response
1785 # and assign it to the $message_id variable, which will then be
1786 # assigned to $in_reply_to by the caller when the next message is sent
1787 # as a response to this message.
1788 if (is_outlook
($smtp_server)) {
1789 if ($smtp->message =~ /<([^>]+)>/) {
1790 $message_id = "<$1>";
1791 $header =~ s/^(Message-ID:\s*).*\n/${1}$message_id\n/m;
1792 printf __
("Outlook reassigned Message-ID to: %s\n"), $message_id if $smtp->debug;
1794 warn __
("Warning: Could not retrieve Message-ID from server response.\n");
1798 $smtp->code =~ /250|200/ or die sprintf(__
("Failed to send %s\n"), $subject).$smtp->message;
1801 printf($dry_run ? __
("Dry-Sent %s") : __
("Sent %s"), $subject);
1804 print($dry_run ? __
("Dry-OK. Log says:") : __
("OK. Log says:"));
1806 if (!defined $sendmail_cmd && !file_name_is_absolute
($smtp_server)) {
1807 print "Server: $smtp_server\n";
1808 print "MAIL FROM:<$raw_from>\n";
1809 foreach my $entry (@recipients) {
1810 print "RCPT TO:<$entry>\n";
1814 if (defined $sendmail_cmd) {
1815 $sm = $sendmail_cmd;
1820 print "Sendmail: $sm ".join(' ',@sendmail_parameters)."\n";
1822 print $header, "\n";
1824 print __
("Result: "), $smtp->code, ' ',
1825 ($smtp->message =~ /\n([^\n]+\n)$/s);
1827 print __
("Result: OK");
1835 sub pre_process_file
{
1836 my ($t, $quiet) = @_;
1838 open my $fh, "<", $t or die sprintf(__
("can't open file %s"), $t);
1841 my $sauthor = undef;
1842 my $author_encoding;
1843 my $has_content_type;
1846 my $has_mime_version;
1850 my $input_format = undef;
1852 $subject = $initial_subject;
1856 # Retrieve and unfold header fields.
1857 my @header_lines = ();
1860 push(@header_lines, $_);
1862 @header = unfold_headers
(@header_lines);
1863 # Add computed headers, if applicable.
1864 unless ($no_header_cmd || ! $header_cmd) {
1865 push @header, invoke_header_cmd
($header_cmd, $t);
1867 # Now parse the header
1870 $input_format = 'mbox';
1874 if (!defined $input_format && /^[-A-Za-z]+:\s/) {
1875 $input_format = 'mbox';
1878 if (defined $input_format && $input_format eq 'mbox') {
1879 if (/^Subject:\s+(.*)$/i) {
1882 elsif (/^From:\s+(.*)$/i) {
1883 ($author, $author_encoding) = unquote_rfc2047
($1);
1884 $sauthor = sanitize_address
($author);
1885 next if $suppress_cc{'author'};
1886 next if $suppress_cc{'self'} and $sauthor eq $sender;
1887 printf(__
("(mbox) Adding cc: %s from line '%s'\n"),
1888 $1, $_) unless $quiet;
1891 elsif (/^To:\s+(.*)$/i) {
1892 foreach my $addr (parse_address_line
($1)) {
1893 printf(__
("(mbox) Adding to: %s from line '%s'\n"),
1894 $addr, $_) unless $quiet;
1898 elsif (/^Cc:\s+(.*)$/i) {
1899 foreach my $addr (parse_address_line
($1)) {
1900 my $qaddr = unquote_rfc2047
($addr);
1901 my $saddr = sanitize_address
($qaddr);
1902 if ($saddr eq $sender) {
1903 next if ($suppress_cc{'self'});
1905 next if ($suppress_cc{'cc'});
1907 printf(__
("(mbox) Adding cc: %s from line '%s'\n"),
1908 $addr, $_) unless $quiet;
1912 elsif (/^Content-type:/i) {
1913 $has_content_type = 1;
1914 if (/charset="?([^ "]+)/) {
1915 $body_encoding = $1;
1919 elsif (/^MIME-Version/i) {
1920 $has_mime_version = 1;
1923 elsif (/^Message-ID: (.*)/i) {
1926 elsif (/^Content-Transfer-Encoding: (.*)/i) {
1927 $xfer_encoding = $1 if not defined $xfer_encoding;
1929 elsif (/^In-Reply-To: (.*)/i) {
1930 if (!$initial_in_reply_to || $thread) {
1934 elsif (/^References: (.*)/i) {
1935 if (!$initial_in_reply_to || $thread) {
1939 elsif (!/^Date:\s/i && /^[-A-Za-z]+:\s+\S/) {
1943 # In the traditional
1944 # "send lots of email" format,
1947 # So let's support that, too.
1948 $input_format = 'lots';
1949 if (@cc == 0 && !$suppress_cc{'cc'}) {
1950 printf(__
("(non-mbox) Adding cc: %s from line '%s'\n"),
1951 $_, $_) unless $quiet;
1953 } elsif (!defined $subject) {
1958 # Now parse the message body
1961 if (/^([a-z][a-z-]*-by|Cc): (.*)/i) {
1963 my ($what, $c) = ($1, $2);
1964 # strip garbage for the address we'll use:
1965 $c = strip_garbage_one_address
($c);
1966 # sanitize a bit more to decide whether to suppress the address:
1967 my $sc = sanitize_address
($c);
1968 if ($sc eq $sender) {
1969 next if ($suppress_cc{'self'});
1971 if ($what =~ /^Signed-off-by$/i) {
1972 next if $suppress_cc{'sob'};
1973 } elsif ($what =~ /-by$/i) {
1974 next if $suppress_cc{'misc-by'};
1975 } elsif ($what =~ /Cc/i) {
1976 next if $suppress_cc{'bodycc'};
1979 if ($c !~ /.+@.+|<.+>/) {
1980 printf("(body) Ignoring %s from line '%s'\n",
1981 $what, $_) unless $quiet;
1985 printf(__
("(body) Adding cc: %s from line '%s'\n"),
1986 $sc, $_) unless $quiet;
1991 push @to, recipients_cmd
("to-cmd", "to", $to_cmd, $t, $quiet)
1993 push @cc, recipients_cmd
("cc-cmd", "cc", $cc_cmd, $t, $quiet)
1994 if defined $cc_cmd && !$suppress_cc{'cccmd'};
1996 if ($broken_encoding{$t} && !$has_content_type) {
1997 $xfer_encoding = '8bit' if not defined $xfer_encoding;
1998 $has_content_type = 1;
1999 push @xh, "Content-Type: text/plain; charset=$auto_8bit_encoding";
2000 $body_encoding = $auto_8bit_encoding;
2003 if ($broken_encoding{$t} && !is_rfc2047_quoted
($subject)) {
2004 $subject = quote_subject
($subject, $auto_8bit_encoding);
2007 if (defined $sauthor and $sauthor ne $sender) {
2008 $message = "From: $author\n\n$message";
2009 if (defined $author_encoding) {
2010 if ($has_content_type) {
2011 if ($body_encoding eq $author_encoding) {
2012 # ok, we already have the right encoding
2015 # uh oh, we should re-encode
2019 $xfer_encoding = '8bit' if not defined $xfer_encoding;
2020 $has_content_type = 1;
2022 "Content-Type: text/plain; charset=$author_encoding";
2026 $xfer_encoding = '8bit' if not defined $xfer_encoding;
2027 ($message, $xfer_encoding) = apply_transfer_encoding
(
2028 $message, $xfer_encoding, $target_xfer_encoding);
2029 push @xh, "Content-Transfer-Encoding: $xfer_encoding";
2030 unshift @xh, 'MIME-Version: 1.0' unless $has_mime_version;
2033 $confirm eq "always" or
2034 ($confirm =~ /^(?:auto|cc)$/ && @cc) or
2035 ($confirm =~ /^(?:auto|compose)$/ && $compose && $message_num == 1));
2036 $needs_confirm = "inform" if ($needs_confirm && $confirm_unconfigured && @cc);
2038 @to = process_address_list
(@to);
2039 @cc = process_address_list
(@cc);
2041 @to = (@initial_to, @to);
2042 @cc = (@initial_cc, @cc);
2044 if ($message_num == 1) {
2045 if (defined $cover_cc and $cover_cc) {
2048 if (defined $cover_to and $cover_to) {
2054 # Prepares the email, prompts the user, and sends it out
2055 # Returns 0 if an edit was done and the function should be called again, or 1
2056 # on the email being successfully sent out.
2060 pre_process_file
($t, $quiet);
2062 my $message_was_sent = send_message
();
2063 if ($message_was_sent == -1) {
2068 # set up for the next message
2070 if ($message_was_sent &&
2071 ($chain_reply_to || !defined $in_reply_to || length($in_reply_to) == 0 ||
2072 $message_num == 1)) {
2073 $in_reply_to = $message_id;
2074 if (length $references > 0) {
2075 $references .= "\n $message_id";
2077 $references = "$message_id";
2080 } elsif (!defined $initial_in_reply_to) {
2081 # --thread and --in-reply-to manage the "In-Reply-To" header and by
2082 # extension the "References" header. If these commands are not used, reset
2083 # the header values to their defaults.
2084 $in_reply_to = undef;
2087 $message_id = undef;
2089 if (defined $batch_size && $num_sent == $batch_size) {
2091 $smtp->quit if defined $smtp;
2094 sleep($relogin_delay) if defined $relogin_delay;
2100 sub initialize_modified_loop_vars
{
2101 $in_reply_to = $initial_in_reply_to;
2102 $references = $initial_in_reply_to || '';
2107 # FIFOs can only be read once, exclude them from validation.
2108 my @real_files = ();
2109 foreach my $f (@files) {
2111 push(@real_files, $f);
2115 # Run the loop once again to avoid gaps in the counter due to FIFO
2116 # arguments provided by the user.
2118 my $num_files = scalar @real_files;
2119 $ENV{GIT_SENDEMAIL_FILE_TOTAL
} = "$num_files";
2120 initialize_modified_loop_vars
();
2121 foreach my $r (@real_files) {
2122 $ENV{GIT_SENDEMAIL_FILE_COUNTER
} = "$num";
2123 pre_process_file
($r, 1);
2124 validate_patch
($r, $target_xfer_encoding);
2127 delete $ENV{GIT_SENDEMAIL_FILE_COUNTER
};
2128 delete $ENV{GIT_SENDEMAIL_FILE_TOTAL
};
2131 initialize_modified_loop_vars
();
2132 foreach my $t (@files) {
2133 while (!process_file
($t)) {
2134 # user edited the file
2138 # Execute a command and return its output lines as an array. Blank
2139 # lines which do not appear at the end of the output are reported as
2142 my ($prefix, $cmd, $file) = @_;
2144 my $seen_blank_line = 0;
2145 open my $fh, "-|", "$cmd \Q$file\E"
2146 or die sprintf(__
("(%s) Could not execute '%s'"), $prefix, $cmd);
2147 while (my $line = <$fh>) {
2148 die sprintf(__
("(%s) Malformed output from '%s'"), $prefix, $cmd)
2149 if $seen_blank_line;
2150 if ($line =~ /^$/) {
2151 $seen_blank_line = $line =~ /^$/;
2157 or die sprintf(__
("(%s) failed to close pipe to '%s'"), $prefix, $cmd);
2161 # Process headers lines, unfolding multiline headers as defined by RFC
2163 sub unfold_headers
{
2167 if (/^\s+\S/ and @headers) {
2168 chomp($headers[$#headers]);
2170 $headers[$#headers] .= $_;
2178 # Invoke the provided CMD with FILE as an argument, which should
2179 # output RFC 2822 email headers. Fold multiline headers and return the
2180 # headers as an array.
2181 sub invoke_header_cmd
{
2182 my ($cmd, $file) = @_;
2183 my @lines = execute_cmd
("header-cmd", $header_cmd, $file);
2184 return unfold_headers
(@lines);
2187 # Execute a command (e.g. $to_cmd) to get a list of email addresses
2188 # and return a results array
2189 sub recipients_cmd
{
2190 my ($prefix, $what, $cmd, $file, $quiet) = @_;
2194 @lines = execute_cmd
($prefix, $cmd, $file);
2195 for my $address (@lines) {
2196 $address =~ s/^\s*//g;
2197 $address =~ s/\s*$//g;
2198 $address = sanitize_address
($address);
2199 next if ($address eq $sender and $suppress_cc{'self'});
2200 push @addresses, $address;
2201 printf(__
("(%s) Adding %s: %s from: '%s'\n"),
2202 $prefix, $what, $address, $cmd) unless $quiet;
2207 cleanup_compose_files
();
2209 sub cleanup_compose_files
{
2210 unlink($compose_filename, $compose_filename . ".final") if $compose;
2213 $smtp->quit if $smtp;
2215 sub apply_transfer_encoding
{
2216 my $message = shift;
2220 return ($message, $to) if ($from eq $to and $from ne '7bit');
2222 require MIME
::QuotedPrint
;
2223 require MIME
::Base64
;
2225 $message = MIME
::QuotedPrint
::decode
($message)
2226 if ($from eq 'quoted-printable');
2227 $message = MIME
::Base64
::decode
($message)
2228 if ($from eq 'base64');
2230 $to = ($message =~ /(?:.{999,}|\r)/) ?
'quoted-printable' : '8bit'
2233 die __
("cannot send message as 7bit")
2234 if ($to eq '7bit' and $message =~ /[^[:ascii:]]/);
2235 return ($message, $to)
2236 if ($to eq '7bit' or $to eq '8bit');
2237 return (MIME
::QuotedPrint
::encode
($message, "\n", 0), $to)
2238 if ($to eq 'quoted-printable');
2239 return (MIME
::Base64
::encode
($message, "\n"), $to)
2240 if ($to eq 'base64');
2241 die __
("invalid transfer encoding");
2244 sub unique_email_list
{
2248 foreach my $entry (@_) {
2249 my $clean = extract_valid_address_or_die
($entry);
2250 $seen{$clean} ||= 0;
2251 next if $seen{$clean}++;
2252 push @emails, $entry;
2257 sub validate_patch
{
2258 my ($fn, $xfer_encoding) = @_;
2261 my $hook_name = 'sendemail-validate';
2262 my $hooks_path = $repo->command_oneline('rev-parse', '--git-path', 'hooks');
2264 my $validate_hook = File
::Spec
->catfile($hooks_path, $hook_name);
2266 if (-x
$validate_hook) {
2268 my $target = Cwd
::abs_path
($fn);
2269 # The hook needs a correct cwd and GIT_DIR.
2270 my $cwd_save = Cwd
::getcwd
();
2271 chdir($repo->wc_path() or $repo->repo_path())
2272 or die("chdir: $!");
2273 local $ENV{"GIT_DIR"} = $repo->repo_path();
2275 my ($recipients_ref, $to, $date, $gitversion, $cc, $ccline, $header) = gen_header
();
2278 my ($header_filehandle, $header_filename) = File
::Temp
::tempfile
(
2279 TEMPLATE
=> ".gitsendemail.header.XXXXXX",
2280 DIR
=> $repo->repo_path(),
2283 print $header_filehandle $header;
2285 my @cmd = ("git", "hook", "run", "--ignore-missing",
2287 my @cmd_msg = (@cmd, "<patch>", "<header>");
2288 my @cmd_run = (@cmd, $target, $header_filename);
2289 $hook_error = system_or_msg
(\
@cmd_run, undef, "@cmd_msg");
2290 chdir($cwd_save) or die("chdir: $!");
2293 $hook_error = sprintf(
2294 __
("fatal: %s: rejected by %s hook\n%s\nwarning: no patches were sent\n"),
2295 $fn, $hook_name, $hook_error);
2300 # Any long lines will be automatically fixed if we use a suitable transfer
2302 unless ($xfer_encoding =~ /^(?:auto|quoted-printable|base64)$/) {
2303 open(my $fh, '<', $fn)
2304 or die sprintf(__
("unable to open %s: %s\n"), $fn, $!);
2305 while (my $line = <$fh>) {
2306 if (length($line) > 998) {
2307 die sprintf(__
("fatal: %s:%d is longer than 998 characters\n" .
2308 "warning: no patches were sent\n"), $fn, $.);
2316 my ($last, $lastlen, $file, $known_suffix) = @_;
2317 my ($suffix, $skip);
2320 if (defined $last &&
2321 ($lastlen < length($file)) &&
2322 (substr($file, 0, $lastlen) eq $last) &&
2323 ($suffix = substr($file, $lastlen)) !~ /^[a-z0-9]/i) {
2324 if (defined $known_suffix && $suffix eq $known_suffix) {
2325 printf(__
("Skipping %s with backup suffix '%s'.\n"), $file, $known_suffix);
2328 # TRANSLATORS: please keep "[y|N]" as is.
2329 my $answer = ask
(sprintf(__
("Do you really want to send %s? [y|N]: "), $file),
2330 valid_re
=> qr/^(?:y|n)/i,
2332 $skip = ($answer ne 'y');
2334 $known_suffix = $suffix;
2338 return ($skip, $known_suffix);
2341 sub handle_backup_files
{
2343 my ($last, $lastlen, $known_suffix, $skip, @result);
2344 for my $file (@file) {
2345 ($skip, $known_suffix) = handle_backup
($last, $lastlen,
2346 $file, $known_suffix);
2347 push @result, $file unless $skip;
2349 $lastlen = length($file);
2354 sub file_has_nonascii
{
2356 open(my $fh, '<', $fn)
2357 or die sprintf(__
("unable to open %s: %s\n"), $fn, $!);
2358 while (my $line = <$fh>) {
2359 return 1 if $line =~ /[^[:ascii:]]/;
2364 sub body_or_subject_has_nonascii
{
2366 open(my $fh, '<', $fn)
2367 or die sprintf(__
("unable to open %s: %s\n"), $fn, $!);
2368 while (my $line = <$fh>) {
2369 last if $line =~ /^$/;
2370 return 1 if $line =~ /^Subject.*[^[:ascii:]]/;
2372 while (my $line = <$fh>) {
2373 return 1 if $line =~ /[^[:ascii:]]/;