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