1#!/usr/bin/perl -w 2# 3# Copyright 2002,2005 Greg Kroah-Hartman <greg@kroah.com> 4# Copyright 2005 Ryan Anderson <ryan@michonline.com> 5# 6# GPL v2 (See COPYING) 7# 8# Ported to support git "mbox" format files by Ryan Anderson <ryan@michonline.com> 9# 10# Sends a collection of emails to the given email addresses, disturbingly fast. 11# 12# Supports two formats: 13# 1. mbox format files (ignoring most headers and MIME formatting - this is designed for sending patches) 14# 2. The original format support by Greg's script: 15# first line of the message is who to CC, 16# and second line is the subject of the message. 17# 18 19use strict; 20use warnings; 21use Term::ReadLine; 22use Getopt::Long; 23use Data::Dumper; 24use Term::ANSIColor; 25use Git; 26 27package FakeTerm; 28sub new { 29my($class,$reason) =@_; 30returnbless \$reason,shift; 31} 32subreadline{ 33my$self=shift; 34die"Cannot use readline on FakeTerm:$$self"; 35} 36package main; 37 38 39sub usage { 40print<<EOT; 41git-send-email [options] <file | directory>... 42Options: 43 --from Specify the "From:" line of the email to be sent. 44 45 --to Specify the primary "To:" line of the email. 46 47 --cc Specify an initial "Cc:" list for the entire series 48 of emails. 49 50 --cc-cmd Specify a command to execute per file which adds 51 per file specific cc address entries 52 53 --bcc Specify a list of email addresses that should be Bcc: 54 on all the emails. 55 56 --compose Use \$GIT_EDITOR, core.editor, \$EDITOR, or \$VISUALto edit 57 an introductory message for the patch series. 58 59 --subject Specify the initial "Subject:" line. 60 Only necessary if --compose is also set. If --compose 61 is not set, this will be prompted for. 62 63 --in-reply-to Specify the first "In-Reply-To:" header line. 64 Only used if --compose is also set. If --compose is not 65 set, this will be prompted for. 66 67 --chain-reply-to If set, the replies will all be to the previous 68 email sent, rather than to the first email sent. 69 Defaults to on. 70 71 --signed-off-cc Automatically add email addresses that appear in 72 Signed-off-by: or Cc: lines to the cc: list. Defaults to on. 73 74 --identity The configuration identity, a subsection to prioritise over 75 the default section. 76 77 --smtp-server If set, specifies the outgoing SMTP server to use. 78 Defaults to localhost. Port number can be specified here with 79 hostname:port format or by using --smtp-server-port option. 80 81 --smtp-server-port Specify a port on the outgoing SMTP server to connect to. 82 83 --smtp-user The username for SMTP-AUTH. 84 85 --smtp-pass The password for SMTP-AUTH. 86 87 --smtp-ssl If set, connects to the SMTP server using SSL. 88 89 --suppress-from Suppress sending emails to yourself. Defaults to off. 90 91 --thread Specify that the "In-Reply-To:" header should be set on all 92 emails. Defaults to on. 93 94 --quiet Make git-send-email less verbose. One line per email 95 should be all that is output. 96 97 --dry-run Do everything except actually send the emails. 98 99 --envelope-sender Specify the envelope sender used to send the emails. 100 101 --no-validate Don't perform any sanity checks on patches. 102 103EOT 104exit(1); 105} 106 107# most mail servers generate the Date: header, but not all... 108sub format_2822_time { 109my($time) =@_; 110my@localtm=localtime($time); 111my@gmttm=gmtime($time); 112my$localmin=$localtm[1] +$localtm[2] *60; 113my$gmtmin=$gmttm[1] +$gmttm[2] *60; 114if($localtm[0] !=$gmttm[0]) { 115die"local zone differs from GMT by a non-minute interval\n"; 116} 117if((($gmttm[6] +1) %7) ==$localtm[6]) { 118$localmin+=1440; 119}elsif((($gmttm[6] -1) %7) ==$localtm[6]) { 120$localmin-=1440; 121}elsif($gmttm[6] !=$localtm[6]) { 122die"local time offset greater than or equal to 24 hours\n"; 123} 124my$offset=$localmin-$gmtmin; 125my$offhour=$offset/60; 126my$offmin=abs($offset%60); 127if(abs($offhour) >=24) { 128die("local time offset greater than or equal to 24 hours\n"); 129} 130 131returnsprintf("%s,%2d%s%d%02d:%02d:%02d%s%02d%02d", 132qw(Sun Mon Tue Wed Thu Fri Sat)[$localtm[6]], 133$localtm[3], 134qw(Jan Feb Mar Apr May Jun 135 Jul Aug Sep Oct Nov Dec)[$localtm[4]], 136$localtm[5]+1900, 137$localtm[2], 138$localtm[1], 139$localtm[0], 140($offset>=0) ?'+':'-', 141abs($offhour), 142$offmin, 143); 144} 145 146my$have_email_valid=eval{require Email::Valid;1}; 147my$smtp; 148my$auth; 149 150sub unique_email_list(@); 151sub cleanup_compose_files(); 152 153# Constants (essentially) 154my$compose_filename=".msg.$$"; 155 156# Variables we fill in automatically, or via prompting: 157my(@to,@cc,@initial_cc,@bcclist,@xh, 158$initial_reply_to,$initial_subject,@files,$author,$sender,$smtp_authpass,$compose,$time); 159 160my$envelope_sender; 161 162# Example reply to: 163#$initial_reply_to = ''; #<20050203173208.GA23964@foobar.com>'; 164 165my$repo= Git->repository(); 166my$term=eval{ 167 new Term::ReadLine 'git-send-email'; 168}; 169if($@) { 170$term= new FakeTerm "$@: going non-interactive"; 171} 172 173# Behavior modification variables 174my($quiet,$dry_run) = (0,0); 175 176# Variables with corresponding config settings 177my($thread,$chain_reply_to,$suppress_from,$signed_off_cc,$cc_cmd); 178my($smtp_server,$smtp_server_port,$smtp_authuser,$smtp_ssl); 179my($identity,$aliasfiletype,@alias_files,@smtp_host_parts); 180my($no_validate); 181 182my%config_bool_settings= ( 183"thread"=> [\$thread,1], 184"chainreplyto"=> [\$chain_reply_to,1], 185"suppressfrom"=> [\$suppress_from,0], 186"signedoffcc"=> [\$signed_off_cc,1], 187"smtpssl"=> [\$smtp_ssl,0], 188); 189 190my%config_settings= ( 191"smtpserver"=> \$smtp_server, 192"smtpserverport"=> \$smtp_server_port, 193"smtpuser"=> \$smtp_authuser, 194"smtppass"=> \$smtp_authpass, 195"to"=> \@to, 196"cccmd"=> \$cc_cmd, 197"aliasfiletype"=> \$aliasfiletype, 198"bcc"=> \@bcclist, 199"aliasesfile"=> \@alias_files, 200); 201 202# Handle Uncouth Termination 203sub signal_handler { 204 205# Make text normal 206print color("reset"),"\n"; 207 208# SMTP password masked 209system"stty echo"; 210 211# tmp files from --compose 212if(-e $compose_filename) { 213print"'$compose_filename' contains an intermediate version of the email you were composing.\n"; 214} 215if(-e ($compose_filename.".final")) { 216print"'$compose_filename.final' contains the composed email.\n" 217} 218 219exit; 220}; 221 222$SIG{TERM} = \&signal_handler; 223$SIG{INT} = \&signal_handler; 224 225# Begin by accumulating all the variables (defined above), that we will end up 226# needing, first, from the command line: 227 228my$rc= GetOptions("sender|from=s"=> \$sender, 229"in-reply-to=s"=> \$initial_reply_to, 230"subject=s"=> \$initial_subject, 231"to=s"=> \@to, 232"cc=s"=> \@initial_cc, 233"bcc=s"=> \@bcclist, 234"chain-reply-to!"=> \$chain_reply_to, 235"smtp-server=s"=> \$smtp_server, 236"smtp-server-port=s"=> \$smtp_server_port, 237"smtp-user=s"=> \$smtp_authuser, 238"smtp-pass:s"=> \$smtp_authpass, 239"smtp-ssl!"=> \$smtp_ssl, 240"identity=s"=> \$identity, 241"compose"=> \$compose, 242"quiet"=> \$quiet, 243"cc-cmd=s"=> \$cc_cmd, 244"suppress-from!"=> \$suppress_from, 245"signed-off-cc|signed-off-by-cc!"=> \$signed_off_cc, 246"dry-run"=> \$dry_run, 247"envelope-sender=s"=> \$envelope_sender, 248"thread!"=> \$thread, 249"no-validate"=> \$no_validate, 250); 251 252unless($rc) { 253 usage(); 254} 255 256# Now, let's fill any that aren't set in with defaults: 257 258sub read_config { 259my($prefix) =@_; 260 261foreachmy$setting(keys%config_bool_settings) { 262my$target=$config_bool_settings{$setting}->[0]; 263$$target=$repo->config_bool("$prefix.$setting")unless(defined$$target); 264} 265 266foreachmy$setting(keys%config_settings) { 267my$target=$config_settings{$setting}; 268if(ref($target)eq"ARRAY") { 269unless(@$target) { 270my@values=$repo->config("$prefix.$setting"); 271@$target=@valuesif(@values&&defined$values[0]); 272} 273} 274else{ 275$$target=$repo->config("$prefix.$setting")unless(defined$$target); 276} 277} 278} 279 280# read configuration from [sendemail "$identity"], fall back on [sendemail] 281$identity=$repo->config("sendemail.identity")unless(defined$identity); 282read_config("sendemail.$identity")if(defined$identity); 283read_config("sendemail"); 284 285# fall back on builtin bool defaults 286foreachmy$setting(values%config_bool_settings) { 287${$setting->[0]} =$setting->[1]unless(defined(${$setting->[0]})); 288} 289 290my($repoauthor) =$repo->ident_person('author'); 291my($repocommitter) =$repo->ident_person('committer'); 292 293# Verify the user input 294 295foreachmy$entry(@to) { 296die"Comma in --to entry:$entry'\n"unless$entry!~m/,/; 297} 298 299foreachmy$entry(@initial_cc) { 300die"Comma in --cc entry:$entry'\n"unless$entry!~m/,/; 301} 302 303foreachmy$entry(@bcclist) { 304die"Comma in --bcclist entry:$entry'\n"unless$entry!~m/,/; 305} 306 307my%aliases; 308my%parse_alias= ( 309# multiline formats can be supported in the future 310 mutt =>sub{my$fh=shift;while(<$fh>) { 311if(/^\s*alias\s+(\S+)\s+(.*)$/) { 312my($alias,$addr) = ($1,$2); 313$addr=~s/#.*$//;# mutt allows # comments 314# commas delimit multiple addresses 315$aliases{$alias} = [split(/\s*,\s*/,$addr) ]; 316}}}, 317 mailrc =>sub{my$fh=shift;while(<$fh>) { 318if(/^alias\s+(\S+)\s+(.*)$/) { 319# spaces delimit multiple addresses 320$aliases{$1} = [split(/\s+/,$2) ]; 321}}}, 322 pine =>sub{my$fh=shift;while(<$fh>) { 323if(/^(\S+)\t.*\t(.*)$/) { 324$aliases{$1} = [split(/\s*,\s*/,$2) ]; 325}}}, 326 gnus =>sub{my$fh=shift;while(<$fh>) { 327if(/\(define-mail-alias\s+"(\S+?)"\s+"(\S+?)"\)/) { 328$aliases{$1} = [$2]; 329}}} 330); 331 332if(@alias_filesand$aliasfiletypeand defined$parse_alias{$aliasfiletype}) { 333foreachmy$file(@alias_files) { 334open my$fh,'<',$fileor die"opening$file:$!\n"; 335$parse_alias{$aliasfiletype}->($fh); 336close$fh; 337} 338} 339 340($sender) = expand_aliases($sender)ifdefined$sender; 341 342# Now that all the defaults are set, process the rest of the command line 343# arguments and collect up the files that need to be processed. 344formy$f(@ARGV) { 345if(-d $f) { 346opendir(DH,$f) 347or die"Failed to opendir$f:$!"; 348 349push@files,grep{ -f $_}map{ +$f."/".$_} 350sort readdir(DH); 351 352}elsif(-f $f) { 353push@files,$f; 354 355}else{ 356print STDERR "Skipping$f- not found.\n"; 357} 358} 359 360if(!$no_validate) { 361foreachmy$f(@files) { 362my$error= validate_patch($f); 363$errorand die"fatal:$f:$error\nwarning: no patches were sent\n"; 364} 365} 366 367if(@files) { 368unless($quiet) { 369print$_,"\n"for(@files); 370} 371}else{ 372print STDERR "\nNo patch files specified!\n\n"; 373 usage(); 374} 375 376my$prompting=0; 377if(!defined$sender) { 378$sender=$repoauthor||$repocommitter; 379do{ 380$_=$term->readline("Who should the emails appear to be from? [$sender] "); 381}while(!defined$_); 382 383$sender=$_if($_); 384print"Emails will be sent from: ",$sender,"\n"; 385$prompting++; 386} 387 388if(!@to) { 389do{ 390$_=$term->readline("Who should the emails be sent to? ", 391""); 392}while(!defined$_); 393my$to=$_; 394push@to,split/,/,$to; 395$prompting++; 396} 397 398sub expand_aliases { 399my@cur=@_; 400my@last; 401do{ 402@last=@cur; 403@cur=map{$aliases{$_} ? @{$aliases{$_}} :$_}@last; 404}while(join(',',@cur)ne join(',',@last)); 405return@cur; 406} 407 408@to= expand_aliases(@to); 409@to= (map{ sanitize_address($_) }@to); 410@initial_cc= expand_aliases(@initial_cc); 411@bcclist= expand_aliases(@bcclist); 412 413if(!defined$initial_subject&&$compose) { 414do{ 415$_=$term->readline("What subject should the initial email start with? ", 416$initial_subject); 417}while(!defined$_); 418$initial_subject=$_; 419$prompting++; 420} 421 422if($thread&& !defined$initial_reply_to&&$prompting) { 423do{ 424$_=$term->readline("Message-ID to be used as In-Reply-To for the first email? ", 425$initial_reply_to); 426}while(!defined$_); 427 428$initial_reply_to=$_; 429} 430if(defined$initial_reply_to&&$_ne"") { 431$initial_reply_to=~s/^\s*<?/</; 432$initial_reply_to=~s/>?\s*$/>/; 433} 434 435if(!defined$smtp_server) { 436foreach(qw( /usr/sbin/sendmail /usr/lib/sendmail )) { 437if(-x $_) { 438$smtp_server=$_; 439last; 440} 441} 442$smtp_server||='localhost';# could be 127.0.0.1, too... *shrug* 443} 444 445if($compose) { 446# Note that this does not need to be secure, but we will make a small 447# effort to have it be unique 448open(C,">",$compose_filename) 449or die"Failed to open for writing$compose_filename:$!"; 450print C "From$sender# This line is ignored.\n"; 451printf C "Subject:%s\n\n",$initial_subject; 452printf C <<EOT; 453GIT: Please enter your email below. 454GIT: Lines beginning in "GIT: " will be removed. 455GIT: Consider including an overall diffstat or table of contents 456GIT: for the patch you are writing. 457 458EOT 459close(C); 460 461my$editor=$ENV{GIT_EDITOR} ||$repo->config("core.editor") ||$ENV{VISUAL} ||$ENV{EDITOR} ||"vi"; 462system('sh','-c','$0$@',$editor,$compose_filename); 463 464open(C2,">",$compose_filename.".final") 465or die"Failed to open$compose_filename.final : ".$!; 466 467open(C,"<",$compose_filename) 468or die"Failed to open$compose_filename: ".$!; 469 470while(<C>) { 471next ifm/^GIT: /; 472print C2 $_; 473} 474close(C); 475close(C2); 476 477do{ 478$_=$term->readline("Send this email? (y|n) "); 479}while(!defined$_); 480 481if(uc substr($_,0,1)ne'Y') { 482 cleanup_compose_files(); 483exit(0); 484} 485 486@files= ($compose_filename.".final",@files); 487} 488 489# Variables we set as part of the loop over files 490our($message_id,%mail,$subject,$reply_to,$references,$message); 491 492sub extract_valid_address { 493my$address=shift; 494my$local_part_regexp='[^<>"\s@]+'; 495my$domain_regexp='[^.<>"\s@]+(?:\.[^.<>"\s@]+)+'; 496 497# check for a local address: 498return$addressif($address=~/^($local_part_regexp)$/); 499 500$address=~s/^\s*<(.*)>\s*$/$1/; 501if($have_email_valid) { 502returnscalar Email::Valid->address($address); 503}else{ 504# less robust/correct than the monster regexp in Email::Valid, 505# but still does a 99% job, and one less dependency 506$address=~/($local_part_regexp\@$domain_regexp)/; 507return$1; 508} 509} 510 511# Usually don't need to change anything below here. 512 513# we make a "fake" message id by taking the current number 514# of seconds since the beginning of Unix time and tacking on 515# a random number to the end, in case we are called quicker than 516# 1 second since the last time we were called. 517 518# We'll setup a template for the message id, using the "from" address: 519 520my($message_id_stamp,$message_id_serial); 521sub make_message_id 522{ 523my$uniq; 524if(!defined$message_id_stamp) { 525$message_id_stamp=sprintf("%s-%s",time,$$); 526$message_id_serial=0; 527} 528$message_id_serial++; 529$uniq="$message_id_stamp-$message_id_serial"; 530 531my$du_part; 532for($sender,$repocommitter,$repoauthor) { 533$du_part= extract_valid_address(sanitize_address($_)); 534last if(defined$du_partand$du_partne''); 535} 536if(not defined$du_partor$du_parteq'') { 537use Sys::Hostname qw(); 538$du_part='user@'. Sys::Hostname::hostname(); 539} 540my$message_id_template="<%s-git-send-email-%s>"; 541$message_id=sprintf($message_id_template,$uniq,$du_part); 542#print "new message id = $message_id\n"; # Was useful for debugging 543} 544 545 546 547$time=time-scalar$#files; 548 549sub unquote_rfc2047 { 550local($_) =@_; 551my$encoding; 552if(s/=\?([^?]+)\?q\?(.*)\?=/$2/g) { 553$encoding=$1; 554s/_/ /g; 555s/=([0-9A-F]{2})/chr(hex($1))/eg; 556} 557returnwantarray? ($_,$encoding) :$_; 558} 559 560# use the simplest quoting being able to handle the recipient 561sub sanitize_address 562{ 563my($recipient) =@_; 564my($recipient_name,$recipient_addr) = ($recipient=~/^(.*?)\s*(<.*)/); 565 566if(not$recipient_name) { 567return"$recipient"; 568} 569 570# if recipient_name is already quoted, do nothing 571if($recipient_name=~/^(".*"|=\?utf-8\?q\?.*\?=)$/) { 572return$recipient; 573} 574 575# rfc2047 is needed if a non-ascii char is included 576if($recipient_name=~/[^[:ascii:]]/) { 577$recipient_name=~s/([^-a-zA-Z0-9!*+\/])/sprintf("=%02X",ord($1))/eg; 578$recipient_name=~s/(.*)/=\?utf-8\?q\?$1\?=/; 579} 580 581# double quotes are needed if specials or CTLs are included 582elsif($recipient_name=~/[][()<>@,;:\\".\000-\037\177]/) { 583$recipient_name=~s/(["\\\r])/\\$1/; 584$recipient_name="\"$recipient_name\""; 585} 586 587return"$recipient_name$recipient_addr"; 588 589} 590 591sub send_message 592{ 593my@recipients= unique_email_list(@to); 594@cc= (grep{my$cc= extract_valid_address($_); 595not grep{$cceq$_}@recipients 596} 597map{ sanitize_address($_) } 598@cc); 599my$to=join(",\n\t",@recipients); 600@recipients= unique_email_list(@recipients,@cc,@bcclist); 601@recipients= (map{ extract_valid_address($_) }@recipients); 602my$date= format_2822_time($time++); 603my$gitversion='@@GIT_VERSION@@'; 604if($gitversion=~m/..GIT_VERSION../) { 605$gitversion= Git::version(); 606} 607 608my$cc=join(", ", unique_email_list(@cc)); 609my$ccline=""; 610if($ccne'') { 611$ccline="\nCc:$cc"; 612} 613my$sanitized_sender= sanitize_address($sender); 614 make_message_id()unlessdefined($message_id); 615 616my$header="From:$sanitized_sender 617To:$to${ccline} 618Subject:$subject 619Date:$date 620Message-Id:$message_id 621X-Mailer: git-send-email$gitversion 622"; 623if($thread&&$reply_to) { 624 625$header.="In-Reply-To:$reply_to\n"; 626$header.="References:$references\n"; 627} 628if(@xh) { 629$header.=join("\n",@xh) ."\n"; 630} 631 632my@sendmail_parameters= ('-i',@recipients); 633my$raw_from=$sanitized_sender; 634$raw_from=$envelope_senderif(defined$envelope_sender); 635$raw_from= extract_valid_address($raw_from); 636unshift(@sendmail_parameters, 637'-f',$raw_from)if(defined$envelope_sender); 638 639if($dry_run) { 640# We don't want to send the email. 641}elsif($smtp_server=~ m#^/#) { 642my$pid=open my$sm,'|-'; 643defined$pidor die$!; 644if(!$pid) { 645exec($smtp_server,@sendmail_parameters)or die$!; 646} 647print$sm"$header\n$message"; 648close$smor die$?; 649}else{ 650 651if(!defined$smtp_server) { 652die"The required SMTP server is not properly defined." 653} 654 655if($smtp_ssl) { 656$smtp_server_port||=465;# ssmtp 657require Net::SMTP::SSL; 658$smtp||= Net::SMTP::SSL->new($smtp_server, Port =>$smtp_server_port); 659} 660else{ 661require Net::SMTP; 662$smtp||= Net::SMTP->new((defined$smtp_server_port) 663?"$smtp_server:$smtp_server_port" 664:$smtp_server); 665} 666 667if(!$smtp) { 668die"Unable to initialize SMTP properly. Is there something wrong with your config?"; 669} 670 671if(defined$smtp_authuser) { 672 673if(!defined$smtp_authpass) { 674 675system"stty -echo"; 676 677do{ 678print"Password: "; 679$_= <STDIN>; 680print"\n"; 681}while(!defined$_); 682 683chomp($smtp_authpass=$_); 684 685system"stty echo"; 686} 687 688$auth||=$smtp->auth($smtp_authuser,$smtp_authpass)or die$smtp->message; 689} 690 691$smtp->mail($raw_from)or die$smtp->message; 692$smtp->to(@recipients)or die$smtp->message; 693$smtp->dataor die$smtp->message; 694$smtp->datasend("$header\n$message")or die$smtp->message; 695$smtp->dataend()or die$smtp->message; 696$smtp->okor die"Failed to send$subject\n".$smtp->message; 697} 698if($quiet) { 699printf(($dry_run?"Dry-":"")."Sent%s\n",$subject); 700}else{ 701print(($dry_run?"Dry-":"")."OK. Log says:\n"); 702if($smtp_server!~ m#^/#) { 703print"Server:$smtp_server\n"; 704print"MAIL FROM:<$raw_from>\n"; 705print"RCPT TO:".join(',',(map{"<$_>"}@recipients))."\n"; 706}else{ 707print"Sendmail:$smtp_server".join(' ',@sendmail_parameters)."\n"; 708} 709print$header,"\n"; 710if($smtp) { 711print"Result: ",$smtp->code,' ', 712($smtp->message=~/\n([^\n]+\n)$/s),"\n"; 713}else{ 714print"Result: OK\n"; 715} 716} 717} 718 719$reply_to=$initial_reply_to; 720$references=$initial_reply_to||''; 721$subject=$initial_subject; 722 723foreachmy$t(@files) { 724open(F,"<",$t)or die"can't open file$t"; 725 726my$author=undef; 727my$author_encoding; 728my$has_content_type; 729my$body_encoding; 730@cc=@initial_cc; 731@xh= (); 732my$input_format=undef; 733my$header_done=0; 734$message=""; 735while(<F>) { 736if(!$header_done) { 737if(/^From /) { 738$input_format='mbox'; 739next; 740} 741chomp; 742if(!defined$input_format&&/^[-A-Za-z]+:\s/) { 743$input_format='mbox'; 744} 745 746if(defined$input_format&&$input_formateq'mbox') { 747if(/^Subject:\s+(.*)$/) { 748$subject=$1; 749 750}elsif(/^(Cc|From):\s+(.*)$/) { 751if(unquote_rfc2047($2)eq$sender) { 752next if($suppress_from); 753} 754elsif($1eq'From') { 755($author,$author_encoding) 756= unquote_rfc2047($2); 757} 758printf("(mbox) Adding cc:%sfrom line '%s'\n", 759$2,$_)unless$quiet; 760push@cc,$2; 761} 762elsif(/^Content-type:/i) { 763$has_content_type=1; 764if(/charset="?[^ "]+/) { 765$body_encoding=$1; 766} 767push@xh,$_; 768} 769elsif(/^Message-Id: (.*)/i) { 770$message_id=$1; 771} 772elsif(!/^Date:\s/&&/^[-A-Za-z]+:\s+\S/) { 773push@xh,$_; 774} 775 776}else{ 777# In the traditional 778# "send lots of email" format, 779# line 1 = cc 780# line 2 = subject 781# So let's support that, too. 782$input_format='lots'; 783if(@cc==0) { 784printf("(non-mbox) Adding cc:%sfrom line '%s'\n", 785$_,$_)unless$quiet; 786 787push@cc,$_; 788 789}elsif(!defined$subject) { 790$subject=$_; 791} 792} 793 794# A whitespace line will terminate the headers 795if(m/^\s*$/) { 796$header_done=1; 797} 798}else{ 799$message.=$_; 800if(/^(Signed-off-by|Cc): (.*)$/i&&$signed_off_cc) { 801my$c=$2; 802chomp$c; 803next if($ceq$senderand$suppress_from); 804push@cc,$c; 805printf("(sob) Adding cc:%sfrom line '%s'\n", 806$c,$_)unless$quiet; 807} 808} 809} 810close F; 811 812if(defined$cc_cmd) { 813open(F,"$cc_cmd$t|") 814or die"(cc-cmd) Could not execute '$cc_cmd'"; 815while(<F>) { 816my$c=$_; 817$c=~s/^\s*//g; 818$c=~s/\n$//g; 819next if($ceq$senderand$suppress_from); 820push@cc,$c; 821printf("(cc-cmd) Adding cc:%sfrom: '%s'\n", 822$c,$cc_cmd)unless$quiet; 823} 824close F 825or die"(cc-cmd) failed to close pipe to '$cc_cmd'"; 826} 827 828if(defined$author) { 829$message="From:$author\n\n$message"; 830if(defined$author_encoding) { 831if($has_content_type) { 832if($body_encodingeq$author_encoding) { 833# ok, we already have the right encoding 834} 835else{ 836# uh oh, we should re-encode 837} 838} 839else{ 840push@xh, 841'MIME-Version: 1.0', 842"Content-Type: text/plain; charset=$author_encoding", 843'Content-Transfer-Encoding: 8bit'; 844} 845} 846} 847 848 send_message(); 849 850# set up for the next message 851if($chain_reply_to|| !defined$reply_to||length($reply_to) ==0) { 852$reply_to=$message_id; 853if(length$references>0) { 854$references.="\n$message_id"; 855}else{ 856$references="$message_id"; 857} 858} 859$message_id=undef; 860} 861 862if($compose) { 863 cleanup_compose_files(); 864} 865 866sub cleanup_compose_files() { 867unlink($compose_filename,$compose_filename.".final"); 868 869} 870 871$smtp->quitif$smtp; 872 873sub unique_email_list(@) { 874my%seen; 875my@emails; 876 877foreachmy$entry(@_) { 878if(my$clean= extract_valid_address($entry)) { 879$seen{$clean} ||=0; 880next if$seen{$clean}++; 881push@emails,$entry; 882}else{ 883print STDERR "W: unable to extract a valid address", 884" from:$entry\n"; 885} 886} 887return@emails; 888} 889 890sub validate_patch { 891my$fn=shift; 892open(my$fh,'<',$fn) 893or die"unable to open$fn:$!\n"; 894while(my$line= <$fh>) { 895if(length($line) >998) { 896return"$.: patch contains a line longer than 998 characters"; 897} 898} 899returnundef; 900}