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