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.
29 my ($class, $reason) = @_;
30 return bless \$reason, shift;
34 die "Cannot use readline on FakeTerm: $$self";
41 git send-email [options] <file | directory>...
44 --from <str> * Email From:
45 --to <str> * Email To:
46 --cc <str> * Email Cc:
47 --bcc <str> * Email Bcc:
48 --subject <str> * Email "Subject:"
49 --in-reply-to <str> * Email "In-Reply-To:"
50 --compose * Open an editor for introduction.
53 --envelope-sender <str> * Email envelope sender.
54 --smtp-server <str:int> * Outgoing SMTP server to use. The port
55 is optional. Default 'localhost'.
56 --smtp-server-port <int> * Outgoing SMTP server port.
57 --smtp-user <str> * Username for SMTP-AUTH.
58 --smtp-pass <str> * Password for SMTP-AUTH; not necessary.
59 --smtp-encryption <str> * tls or ssl; anything else disables.
60 --smtp-ssl * Deprecated. Use '--smtp-encryption ssl'.
63 --identity <str> * Use the sendemail.<id> options.
64 --cc-cmd <str> * Email Cc: via `<str> \$patch_path`
65 --suppress-cc <str> * author, self, sob, cccmd, all.
66 --[no-]signed-off-by-cc * Send to Cc: and Signed-off-by:
67 addresses. Default on.
68 --[no-]suppress-from * Send to self. Default off.
69 --[no-]chain-reply-to * Chain In-Reply-To: fields. Default on.
70 --[no-]thread * Use In-Reply-To: field. Default on.
73 --quiet * Output one line of info per email.
74 --dry-run * Don't actually send the emails.
75 --[no-]validate * Perform patch sanity checks. Default on.
81 # most mail servers generate the Date: header, but not all...
82 sub format_2822_time {
84 my @localtm = localtime($time);
85 my @gmttm = gmtime($time);
86 my $localmin = $localtm[1] + $localtm[2] * 60;
87 my $gmtmin = $gmttm[1] + $gmttm[2] * 60;
88 if ($localtm[0] != $gmttm[0]) {
89 die "local zone differs from GMT by a non-minute interval\n";
91 if ((($gmttm[6] + 1) % 7) == $localtm[6]) {
93 } elsif ((($gmttm[6] - 1) % 7) == $localtm[6]) {
95 } elsif ($gmttm[6] != $localtm[6]) {
96 die "local time offset greater than or equal to 24 hours\n";
98 my $offset = $localmin - $gmtmin;
99 my $offhour = $offset / 60;
100 my $offmin = abs($offset % 60);
101 if (abs($offhour) >= 24) {
102 die ("local time offset greater than or equal to 24 hours\n");
105 return sprintf("%s, %2d %s %d %02d:%02d:%02d %s%02d%02d",
106 qw(Sun Mon Tue Wed Thu Fri Sat)[$localtm[6]],
108 qw(Jan Feb Mar Apr May Jun
109 Jul Aug Sep Oct Nov Dec)[$localtm[4]],
114 ($offset >= 0) ? '+' : '-',
120 my $have_email_valid = eval { require Email::Valid; 1 };
124 sub unique_email_list(@);
125 sub cleanup_compose_files();
127 # Variables we fill in automatically, or via prompting:
128 my (@to,@cc,@initial_cc,@bcclist,@xh,
129 $initial_reply_to,$initial_subject,@files,$author,$sender,$smtp_authpass,$compose,$time);
134 #$initial_reply_to = ''; #<20050203173208.GA23964@foobar.com>';
136 my $repo = eval { Git->repository() };
137 my @repo = $repo ? ($repo) : ();
139 $ENV{"GIT_SEND_EMAIL_NOTTY"}
140 ? new Term::ReadLine 'git-send-email', \*STDIN, \*STDOUT
141 : new Term::ReadLine 'git-send-email';
144 $term = new FakeTerm "$@: going non-interactive";
147 # Behavior modification variables
148 my ($quiet, $dry_run) = (0, 0);
149 my $compose_filename = $repo->repo_path() . "/.gitsendemail.msg.$$";
151 # Variables with corresponding config settings
152 my ($thread, $chain_reply_to, $suppress_from, $signed_off_by_cc, $cc_cmd);
153 my ($smtp_server, $smtp_server_port, $smtp_authuser, $smtp_encryption);
154 my ($identity, $aliasfiletype, @alias_files, @smtp_host_parts);
158 my %config_bool_settings = (
159 "thread" => [\$thread, 1],
160 "chainreplyto" => [\$chain_reply_to, 1],
161 "suppressfrom" => [\$suppress_from, undef],
162 "signedoffbycc" => [\$signed_off_by_cc, undef],
163 "signedoffcc" => [\$signed_off_by_cc, undef], # Deprecated
164 "validate" => [\$validate, 1],
167 my %config_settings = (
168 "smtpserver" => \$smtp_server,
169 "smtpserverport" => \$smtp_server_port,
170 "smtpuser" => \$smtp_authuser,
171 "smtppass" => \$smtp_authpass,
173 "cc" => \@initial_cc,
175 "aliasfiletype" => \$aliasfiletype,
177 "aliasesfile" => \@alias_files,
178 "suppresscc" => \@suppress_cc,
179 "envelopesender" => \$envelope_sender,
182 # Handle Uncouth Termination
186 print color("reset"), "\n";
188 # SMTP password masked
191 # tmp files from --compose
192 if (-e $compose_filename) {
193 print "'$compose_filename' contains an intermediate version of the email you were composing.\n";
195 if (-e ($compose_filename . ".final")) {
196 print "'$compose_filename.final' contains the composed email.\n"
202 $SIG{TERM} = \&signal_handler;
203 $SIG{INT} = \&signal_handler;
205 # Begin by accumulating all the variables (defined above), that we will end up
206 # needing, first, from the command line:
208 my $rc = GetOptions("sender|from=s" => \$sender,
209 "in-reply-to=s" => \$initial_reply_to,
210 "subject=s" => \$initial_subject,
212 "cc=s" => \@initial_cc,
213 "bcc=s" => \@bcclist,
214 "chain-reply-to!" => \$chain_reply_to,
215 "smtp-server=s" => \$smtp_server,
216 "smtp-server-port=s" => \$smtp_server_port,
217 "smtp-user=s" => \$smtp_authuser,
218 "smtp-pass:s" => \$smtp_authpass,
219 "smtp-ssl" => sub { $smtp_encryption = 'ssl' },
220 "smtp-encryption=s" => \$smtp_encryption,
221 "identity=s" => \$identity,
222 "compose" => \$compose,
224 "cc-cmd=s" => \$cc_cmd,
225 "suppress-from!" => \$suppress_from,
226 "suppress-cc=s" => \@suppress_cc,
227 "signed-off-cc|signed-off-by-cc!" => \$signed_off_by_cc,
228 "dry-run" => \$dry_run,
229 "envelope-sender=s" => \$envelope_sender,
230 "thread!" => \$thread,
231 "validate!" => \$validate,
238 # Now, let's fill any that aren't set in with defaults:
243 foreach my $setting (keys %config_bool_settings) {
244 my $target = $config_bool_settings{$setting}->[0];
245 $$target = Git::config_bool(@repo, "$prefix.$setting") unless (defined $$target);
248 foreach my $setting (keys %config_settings) {
249 my $target = $config_settings{$setting};
250 if (ref($target) eq "ARRAY") {
252 my @values = Git::config(@repo, "$prefix.$setting");
253 @$target = @values if (@values && defined $values[0]);
257 $$target = Git::config(@repo, "$prefix.$setting") unless (defined $$target);
261 if (!defined $smtp_encryption) {
262 my $enc = Git::config(@repo, "$prefix.smtpencryption");
264 $smtp_encryption = $enc;
265 } elsif (Git::config_bool(@repo, "$prefix.smtpssl")) {
266 $smtp_encryption = 'ssl';
271 # read configuration from [sendemail "$identity"], fall back on [sendemail]
272 $identity = Git::config(@repo, "sendemail.identity") unless (defined $identity);
273 read_config("sendemail.$identity") if (defined $identity);
274 read_config("sendemail");
276 # fall back on builtin bool defaults
277 foreach my $setting (values %config_bool_settings) {
278 ${$setting->[0]} = $setting->[1] unless (defined (${$setting->[0]}));
281 # 'default' encryption is none -- this only prevents a warning
282 $smtp_encryption = '' unless (defined $smtp_encryption);
284 # Set CC suppressions
287 foreach my $entry (@suppress_cc) {
288 die "Unknown --suppress-cc field: '$entry'\n"
289 unless $entry =~ /^(all|cccmd|cc|author|self|sob)$/;
290 $suppress_cc{$entry} = 1;
294 if ($suppress_cc{'all'}) {
295 foreach my $entry (qw (ccmd cc author self sob)) {
296 $suppress_cc{$entry} = 1;
298 delete $suppress_cc{'all'};
301 # If explicit old-style ones are specified, they trump --suppress-cc.
302 $suppress_cc{'self'} = $suppress_from if defined $suppress_from;
303 $suppress_cc{'sob'} = !$signed_off_by_cc if defined $signed_off_by_cc;
305 # Debugging, print out the suppressions.
307 print "suppressions:\n";
308 foreach my $entry (keys %suppress_cc) {
309 printf " %-5s -> $suppress_cc{$entry}\n", $entry;
313 my ($repoauthor, $repocommitter);
314 ($repoauthor) = Git::ident_person(@repo, 'author');
315 ($repocommitter) = Git::ident_person(@repo, 'committer');
317 # Verify the user input
319 foreach my $entry (@to) {
320 die "Comma in --to entry: $entry'\n" unless $entry !~ m/,/;
323 foreach my $entry (@initial_cc) {
324 die "Comma in --cc entry: $entry'\n" unless $entry !~ m/,/;
327 foreach my $entry (@bcclist) {
328 die "Comma in --bcclist entry: $entry'\n" unless $entry !~ m/,/;
333 # multiline formats can be supported in the future
334 mutt => sub { my $fh = shift; while (<$fh>) {
335 if (/^\s*alias\s+(\S+)\s+(.*)$/) {
336 my ($alias, $addr) = ($1, $2);
337 $addr =~ s/#.*$//; # mutt allows # comments
338 # commas delimit multiple addresses
339 $aliases{$alias} = [ split(/\s*,\s*/, $addr) ];
341 mailrc => sub { my $fh = shift; while (<$fh>) {
342 if (/^alias\s+(\S+)\s+(.*)$/) {
343 # spaces delimit multiple addresses
344 $aliases{$1} = [ split(/\s+/, $2) ];
346 pine => sub { my $fh = shift; while (<$fh>) {
347 if (/^(\S+)\t.*\t(.*)$/) {
348 $aliases{$1} = [ split(/\s*,\s*/, $2) ];
350 gnus => sub { my $fh = shift; while (<$fh>) {
351 if (/\(define-mail-alias\s+"(\S+?)"\s+"(\S+?)"\)/) {
352 $aliases{$1} = [ $2 ];
356 if (@alias_files and $aliasfiletype and defined $parse_alias{$aliasfiletype}) {
357 foreach my $file (@alias_files) {
358 open my $fh, '<', $file or die "opening $file: $!\n";
359 $parse_alias{$aliasfiletype}->($fh);
364 ($sender) = expand_aliases($sender) if defined $sender;
366 # Now that all the defaults are set, process the rest of the command line
367 # arguments and collect up the files that need to be processed.
371 or die "Failed to opendir $f: $!";
373 push @files, grep { -f $_ } map { +$f . "/" . $_ }
376 } elsif (-f $f or -p $f) {
379 print STDERR "Skipping $f - not found.\n";
384 foreach my $f (@files) {
386 my $error = validate_patch($f);
387 $error and die "fatal: $f: $error\nwarning: no patches were sent\n";
394 print $_,"\n" for (@files);
397 print STDERR "\nNo patch files specified!\n\n";
402 if (!defined $sender) {
403 $sender = $repoauthor || $repocommitter || '';
406 $_ = $term->readline("Who should the emails appear to be from? [$sender] ");
411 $sender = $_ if ($_);
412 print "Emails will be sent from: ", $sender, "\n";
420 $_ = $term->readline("Who should the emails be sent to? ", "");
426 push @to, split /,\s*/, $to;
435 @cur = map { $aliases{$_} ? @{$aliases{$_}} : $_ } @last;
436 } while (join(',',@cur) ne join(',',@last));
440 @to = expand_aliases(@to);
441 @to = (map { sanitize_address($_) } @to);
442 @initial_cc = expand_aliases(@initial_cc);
443 @bcclist = expand_aliases(@bcclist);
445 if (!defined $initial_subject && $compose) {
447 $_ = $term->readline("What subject should the initial email start with? ", $initial_subject);
452 $initial_subject = $_;
456 if ($thread && !defined $initial_reply_to && $prompting) {
458 $_= $term->readline("Message-ID to be used as In-Reply-To for the first email? ", $initial_reply_to);
463 $initial_reply_to = $_;
465 if (defined $initial_reply_to) {
466 $initial_reply_to =~ s/^\s*<?//;
467 $initial_reply_to =~ s/>?\s*$//;
468 $initial_reply_to = "<$initial_reply_to>" if $initial_reply_to ne '';
471 if (!defined $smtp_server) {
472 foreach (qw( /usr/sbin/sendmail /usr/lib/sendmail )) {
478 $smtp_server ||= 'localhost'; # could be 127.0.0.1, too... *shrug*
482 # Note that this does not need to be secure, but we will make a small
483 # effort to have it be unique
484 open(C,">",$compose_filename)
485 or die "Failed to open for writing $compose_filename: $!";
486 print C "From $sender # This line is ignored.\n";
487 printf C "Subject: %s\n\n", $initial_subject;
489 GIT: Please enter your email below.
490 GIT: Lines beginning in "GIT: " will be removed.
491 GIT: Consider including an overall diffstat or table of contents
492 GIT: for the patch you are writing.
497 my $editor = $ENV{GIT_EDITOR} || Git::config(@repo, "core.editor") || $ENV{VISUAL} || $ENV{EDITOR} || "vi";
498 system('sh', '-c', $editor.' "$@"', $editor, $compose_filename);
500 open(C2,">",$compose_filename . ".final")
501 or die "Failed to open $compose_filename.final : " . $!;
503 open(C,"<",$compose_filename)
504 or die "Failed to open $compose_filename : " . $!;
506 my $need_8bit_cte = file_has_nonascii($compose_filename);
510 if (!$in_body && /^\n$/) {
512 if ($need_8bit_cte) {
513 print C2 "MIME-Version: 1.0\n",
514 "Content-Type: text/plain; ",
516 "Content-Transfer-Encoding: 8bit\n";
519 if (!$in_body && /^MIME-Version:/i) {
522 if (!$in_body && /^Subject: ?(.*)/i) {
525 ($subject =~ /[^[:ascii:]]/ ?
526 quote_rfc2047($subject) :
536 $_ = $term->readline("Send this email? (y|n) ");
541 if (uc substr($_,0,1) ne 'Y') {
542 cleanup_compose_files();
546 @files = ($compose_filename . ".final", @files);
549 # Variables we set as part of the loop over files
550 our ($message_id, %mail, $subject, $reply_to, $references, $message);
552 sub extract_valid_address {
554 my $local_part_regexp = '[^<>"\s@]+';
555 my $domain_regexp = '[^.<>"\s@]+(?:\.[^.<>"\s@]+)+';
557 # check for a local address:
558 return $address if ($address =~ /^($local_part_regexp)$/);
560 $address =~ s/^\s*<(.*)>\s*$/$1/;
561 if ($have_email_valid) {
562 return scalar Email::Valid->address($address);
564 # less robust/correct than the monster regexp in Email::Valid,
565 # but still does a 99% job, and one less dependency
566 $address =~ /($local_part_regexp\@$domain_regexp)/;
571 # Usually don't need to change anything below here.
573 # we make a "fake" message id by taking the current number
574 # of seconds since the beginning of Unix time and tacking on
575 # a random number to the end, in case we are called quicker than
576 # 1 second since the last time we were called.
578 # We'll setup a template for the message id, using the "from" address:
580 my ($message_id_stamp, $message_id_serial);
584 if (!defined $message_id_stamp) {
585 $message_id_stamp = sprintf("%s-%s", time, $$);
586 $message_id_serial = 0;
588 $message_id_serial++;
589 $uniq = "$message_id_stamp-$message_id_serial";
592 for ($sender, $repocommitter, $repoauthor) {
593 $du_part = extract_valid_address(sanitize_address($_));
594 last if (defined $du_part and $du_part ne '');
596 if (not defined $du_part or $du_part eq '') {
597 use Sys::Hostname qw();
598 $du_part = 'user@' . Sys::Hostname::hostname();
600 my $message_id_template = "<%s-git-send-email-%s>";
601 $message_id = sprintf($message_id_template, $uniq, $du_part);
602 #print "new message id = $message_id\n"; # Was useful for debugging
607 $time = time - scalar $#files;
609 sub unquote_rfc2047 {
612 if (s/=\?([^?]+)\?q\?(.*)\?=/$2/g) {
615 s/=([0-9A-F]{2})/chr(hex($1))/eg;
617 return wantarray ? ($_, $encoding) : $_;
622 my $encoding = shift || 'utf-8';
623 s/([^-a-zA-Z0-9!*+\/])/sprintf("=%02X", ord($1))/eg;
624 s/(.*)/=\?$encoding\?q\?$1\?=/;
628 # use the simplest quoting being able to handle the recipient
631 my ($recipient) = @_;
632 my ($recipient_name, $recipient_addr) = ($recipient =~ /^(.*?)\s*(<.*)/);
634 if (not $recipient_name) {
638 # if recipient_name is already quoted, do nothing
639 if ($recipient_name =~ /^(".*"|=\?utf-8\?q\?.*\?=)$/) {
643 # rfc2047 is needed if a non-ascii char is included
644 if ($recipient_name =~ /[^[:ascii:]]/) {
645 $recipient_name = quote_rfc2047($recipient_name);
648 # double quotes are needed if specials or CTLs are included
649 elsif ($recipient_name =~ /[][()<>@,;:\\".\000-\037\177]/) {
650 $recipient_name =~ s/(["\\\r])/\\$1/g;
651 $recipient_name = "\"$recipient_name\"";
654 return "$recipient_name $recipient_addr";
660 my @recipients = unique_email_list(@to);
661 @cc = (grep { my $cc = extract_valid_address($_);
662 not grep { $cc eq $_ } @recipients
664 map { sanitize_address($_) }
666 my $to = join (",\n\t", @recipients);
667 @recipients = unique_email_list(@recipients,@cc,@bcclist);
668 @recipients = (map { extract_valid_address($_) } @recipients);
669 my $date = format_2822_time($time++);
670 my $gitversion = '@@GIT_VERSION@@';
671 if ($gitversion =~ m/..GIT_VERSION../) {
672 $gitversion = Git::version();
675 my $cc = join(", ", unique_email_list(@cc));
678 $ccline = "\nCc: $cc";
680 my $sanitized_sender = sanitize_address($sender);
681 make_message_id() unless defined($message_id);
683 my $header = "From: $sanitized_sender
687 Message-Id: $message_id
688 X-Mailer: git-send-email $gitversion
690 if ($thread && $reply_to) {
692 $header .= "In-Reply-To: $reply_to\n";
693 $header .= "References: $references\n";
696 $header .= join("\n", @xh) . "\n";
699 my @sendmail_parameters = ('-i', @recipients);
700 my $raw_from = $sanitized_sender;
701 $raw_from = $envelope_sender if (defined $envelope_sender);
702 $raw_from = extract_valid_address($raw_from);
703 unshift (@sendmail_parameters,
704 '-f', $raw_from) if(defined $envelope_sender);
707 # We don't want to send the email.
708 } elsif ($smtp_server =~ m#^/#) {
709 my $pid = open my $sm, '|-';
710 defined $pid or die $!;
712 exec($smtp_server, @sendmail_parameters) or die $!;
714 print $sm "$header\n$message";
718 if (!defined $smtp_server) {
719 die "The required SMTP server is not properly defined."
722 if ($smtp_encryption eq 'ssl') {
723 $smtp_server_port ||= 465; # ssmtp
724 require Net::SMTP::SSL;
725 $smtp ||= Net::SMTP::SSL->new($smtp_server, Port => $smtp_server_port);
729 $smtp ||= Net::SMTP->new((defined $smtp_server_port)
730 ? "$smtp_server:$smtp_server_port"
732 if ($smtp_encryption eq 'tls') {
733 require Net::SMTP::SSL;
734 $smtp->command('STARTTLS');
736 if ($smtp->code == 220) {
737 $smtp = Net::SMTP::SSL->start_SSL($smtp)
738 or die "STARTTLS failed! ".$smtp->message;
739 $smtp_encryption = '';
740 # Send EHLO again to receive fresh
744 die "Server does not support STARTTLS! ".$smtp->message;
750 die "Unable to initialize SMTP properly. Is there something wrong with your config?";
753 if (defined $smtp_authuser) {
755 if (!defined $smtp_authpass) {
763 } while (!defined $_);
765 chomp($smtp_authpass = $_);
770 $auth ||= $smtp->auth( $smtp_authuser, $smtp_authpass ) or die $smtp->message;
773 $smtp->mail( $raw_from ) or die $smtp->message;
774 $smtp->to( @recipients ) or die $smtp->message;
775 $smtp->data or die $smtp->message;
776 $smtp->datasend("$header\n$message") or die $smtp->message;
777 $smtp->dataend() or die $smtp->message;
778 $smtp->ok or die "Failed to send $subject\n".$smtp->message;
781 printf (($dry_run ? "Dry-" : "")."Sent %s\n", $subject);
783 print (($dry_run ? "Dry-" : "")."OK. Log says:\n");
784 if ($smtp_server !~ m#^/#) {
785 print "Server: $smtp_server\n";
786 print "MAIL FROM:<$raw_from>\n";
787 print "RCPT TO:".join(',',(map { "<$_>" } @recipients))."\n";
789 print "Sendmail: $smtp_server ".join(' ',@sendmail_parameters)."\n";
793 print "Result: ", $smtp->code, ' ',
794 ($smtp->message =~ /\n([^\n]+\n)$/s), "\n";
796 print "Result: OK\n";
801 $reply_to = $initial_reply_to;
802 $references = $initial_reply_to || '';
803 $subject = $initial_subject;
805 foreach my $t (@files) {
806 open(F,"<",$t) or die "can't open file $t";
810 my $has_content_type;
814 my $input_format = undef;
820 $input_format = 'mbox';
824 if (!defined $input_format && /^[-A-Za-z]+:\s/) {
825 $input_format = 'mbox';
828 if (defined $input_format && $input_format eq 'mbox') {
829 if (/^Subject:\s+(.*)$/) {
832 } elsif (/^(Cc|From):\s+(.*)$/) {
833 if (unquote_rfc2047($2) eq $sender) {
834 next if ($suppress_cc{'self'});
836 elsif ($1 eq 'From') {
837 ($author, $author_encoding)
838 = unquote_rfc2047($2);
839 next if ($suppress_cc{'author'});
841 next if ($suppress_cc{'cc'});
843 printf("(mbox) Adding cc: %s from line '%s'\n",
844 $2, $_) unless $quiet;
847 elsif (/^Content-type:/i) {
848 $has_content_type = 1;
849 if (/charset="?([^ "]+)/) {
854 elsif (/^Message-Id: (.*)/i) {
857 elsif (!/^Date:\s/ && /^[-A-Za-z]+:\s+\S/) {
863 # "send lots of email" format,
866 # So let's support that, too.
867 $input_format = 'lots';
868 if (@cc == 0 && !$suppress_cc{'cc'}) {
869 printf("(non-mbox) Adding cc: %s from line '%s'\n",
870 $_, $_) unless $quiet;
874 } elsif (!defined $subject) {
879 # A whitespace line will terminate the headers
885 if (/^(Signed-off-by|Cc): (.*)$/i) {
886 next if ($suppress_cc{'sob'});
890 next if ($c eq $sender and $suppress_cc{'self'});
892 printf("(sob) Adding cc: %s from line '%s'\n",
893 $c, $_) unless $quiet;
899 if (defined $cc_cmd && !$suppress_cc{'cccmd'}) {
900 open(F, "$cc_cmd $t |")
901 or die "(cc-cmd) Could not execute '$cc_cmd'";
906 next if ($c eq $sender and $suppress_from);
908 printf("(cc-cmd) Adding cc: %s from: '%s'\n",
909 $c, $cc_cmd) unless $quiet;
912 or die "(cc-cmd) failed to close pipe to '$cc_cmd'";
915 if (defined $author) {
916 $message = "From: $author\n\n$message";
917 if (defined $author_encoding) {
918 if ($has_content_type) {
919 if ($body_encoding eq $author_encoding) {
920 # ok, we already have the right encoding
923 # uh oh, we should re-encode
929 "Content-Type: text/plain; charset=$author_encoding",
930 'Content-Transfer-Encoding: 8bit';
937 # set up for the next message
938 if ($chain_reply_to || !defined $reply_to || length($reply_to) == 0) {
939 $reply_to = $message_id;
940 if (length $references > 0) {
941 $references .= "\n $message_id";
943 $references = "$message_id";
950 cleanup_compose_files();
953 sub cleanup_compose_files() {
954 unlink($compose_filename, $compose_filename . ".final");
958 $smtp->quit if $smtp;
960 sub unique_email_list(@) {
964 foreach my $entry (@_) {
965 if (my $clean = extract_valid_address($entry)) {
967 next if $seen{$clean}++;
968 push @emails, $entry;
970 print STDERR "W: unable to extract a valid address",
979 open(my $fh, '<', $fn)
980 or die "unable to open $fn: $!\n";
981 while (my $line = <$fh>) {
982 if (length($line) > 998) {
983 return "$.: patch contains a line longer than 998 characters";
989 sub file_has_nonascii {
991 open(my $fh, '<', $fn)
992 or die "unable to open $fn: $!\n";
993 while (my $line = <$fh>) {
994 return 1 if $line =~ /[^[:ascii:]]/;