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.
28 my ($class, $reason) = @_;
29 return bless \
$reason, shift;
33 die "Cannot use readline on FakeTerm: $$self";
37 # most mail servers generate the Date: header, but not all...
38 sub format_2822_time
{
40 my @localtm = localtime($time);
41 my @gmttm = gmtime($time);
42 my $localmin = $localtm[1] + $localtm[2] * 60;
43 my $gmtmin = $gmttm[1] + $gmttm[2] * 60;
44 if ($localtm[0] != $gmttm[0]) {
45 die "local zone differs from GMT by a non-minute interval\n";
47 if ((($gmttm[6] + 1) % 7) == $localtm[6]) {
49 } elsif ((($gmttm[6] - 1) % 7) == $localtm[6]) {
51 } elsif ($gmttm[6] != $localtm[6]) {
52 die "local time offset greater than or equal to 24 hours\n";
54 my $offset = $localmin - $gmtmin;
55 my $offhour = $offset / 60;
56 my $offmin = abs($offset % 60);
57 if (abs($offhour) >= 24) {
58 die ("local time offset greater than or equal to 24 hours\n");
61 return sprintf("%s, %2d %s %d %02d:%02d:%02d %s%02d%02d",
62 qw(Sun Mon Tue Wed Thu Fri Sat)[$localtm[6]],
64 qw(Jan Feb Mar Apr May Jun
65 Jul Aug Sep Oct Nov Dec)[$localtm[4]],
70 ($offset >= 0) ?
'+' : '-',
76 my $have_email_valid = eval { require Email
::Valid
; 1 };
79 sub unique_email_list
(@
);
80 sub cleanup_compose_files
();
82 # Constants (essentially)
83 my $compose_filename = ".msg.$$";
85 # Variables we fill in automatically, or via prompting:
86 my (@to,@cc,@initial_cc,@bcclist,@xh,
87 $initial_reply_to,$initial_subject,@files,$from,$compose,$time);
89 # Behavior modification variables
90 my ($chain_reply_to, $quiet, $suppress_from, $no_signed_off_cc,
91 $dry_run) = (1, 0, 0, 0, 0);
95 #$initial_reply_to = ''; #<20050203173208.GA23964@foobar.com>';
97 my $repo = Git
->repository();
99 new Term
::ReadLine
'git-send-email';
102 $term = new FakeTerm
"$@: going non-interactive";
105 # Begin by accumulating all the variables (defined above), that we will end up
106 # needing, first, from the command line:
108 my $rc = GetOptions
("from=s" => \
$from,
109 "in-reply-to=s" => \
$initial_reply_to,
110 "subject=s" => \
$initial_subject,
112 "cc=s" => \
@initial_cc,
113 "bcc=s" => \
@bcclist,
114 "chain-reply-to!" => \
$chain_reply_to,
115 "smtp-server=s" => \
$smtp_server,
116 "compose" => \
$compose,
118 "suppress-from" => \
$suppress_from,
119 "no-signed-off-cc|no-signed-off-by-cc" => \
$no_signed_off_cc,
120 "dry-run" => \
$dry_run,
123 # Verify the user input
125 foreach my $entry (@to) {
126 die "Comma in --to entry: $entry'\n" unless $entry !~ m/,/;
129 foreach my $entry (@initial_cc) {
130 die "Comma in --cc entry: $entry'\n" unless $entry !~ m/,/;
133 foreach my $entry (@bcclist) {
134 die "Comma in --bcclist entry: $entry'\n" unless $entry !~ m/,/;
137 # Now, let's fill any that aren't set in with defaults:
139 my ($author) = $repo->ident_person('author');
140 my ($committer) = $repo->ident_person('committer');
143 my @alias_files = $repo->config('sendemail.aliasesfile');
144 my $aliasfiletype = $repo->config('sendemail.aliasfiletype');
146 # multiline formats can be supported in the future
147 mutt
=> sub { my $fh = shift; while (<$fh>) {
148 if (/^alias\s+(\S+)\s+(.*)$/) {
149 my ($alias, $addr) = ($1, $2);
150 $addr =~ s/#.*$//; # mutt allows # comments
151 # commas delimit multiple addresses
152 $aliases{$alias} = [ split(/\s*,\s*/, $addr) ];
154 mailrc
=> sub { my $fh = shift; while (<$fh>) {
155 if (/^alias\s+(\S+)\s+(.*)$/) {
156 # spaces delimit multiple addresses
157 $aliases{$1} = [ split(/\s+/, $2) ];
159 pine
=> sub { my $fh = shift; while (<$fh>) {
160 if (/^(\S+)\s+(.*)$/) {
161 $aliases{$1} = [ split(/\s*,\s*/, $2) ];
163 gnus
=> sub { my $fh = shift; while (<$fh>) {
164 if (/\(define-mail-alias\s+"(\S+?)"\s+"(\S+?)"\)/) {
165 $aliases{$1} = [ $2 ];
169 if (@alias_files and $aliasfiletype and defined $parse_alias{$aliasfiletype}) {
170 foreach my $file (@alias_files) {
171 open my $fh, '<', $file or die "opening $file: $!\n";
172 $parse_alias{$aliasfiletype}->($fh);
178 if (!defined $from) {
179 $from = $author || $committer;
181 $_ = $term->readline("Who should the emails appear to be from? ",
183 } while (!defined $_);
186 print "Emails will be sent from: ", $from, "\n";
192 $_ = $term->readline("Who should the emails be sent to? ",
194 } while (!defined $_);
196 push @to, split /,/, $to;
205 @cur = map { $aliases{$_} ? @
{$aliases{$_}} : $_ } @last;
206 } while (join(',',@cur) ne join(',',@last));
210 @to = expand_aliases
(@to);
211 @initial_cc = expand_aliases
(@initial_cc);
212 @bcclist = expand_aliases
(@bcclist);
214 if (!defined $initial_subject && $compose) {
216 $_ = $term->readline("What subject should the emails start with? ",
218 } while (!defined $_);
219 $initial_subject = $_;
223 if (!defined $initial_reply_to && $prompting) {
225 $_= $term->readline("Message-ID to be used as In-Reply-To for the first email? ",
227 } while (!defined $_);
229 $initial_reply_to = $_;
230 $initial_reply_to =~ s/(^\s+|\s+$)//g;
234 foreach (qw( /usr/sbin/sendmail /usr/lib/sendmail )) {
240 $smtp_server ||= 'localhost'; # could be 127.0.0.1, too... *shrug*
244 # Note that this does not need to be secure, but we will make a small
245 # effort to have it be unique
246 open(C
,">",$compose_filename)
247 or die "Failed to open for writing $compose_filename: $!";
248 print C
"From $from # This line is ignored.\n";
249 printf C
"Subject: %s\n\n", $initial_subject;
251 GIT: Please enter your email below.
252 GIT: Lines beginning in "GIT: " will be removed.
253 GIT: Consider including an overall diffstat or table of contents
254 GIT: for the patch you are writing.
259 my $editor = $ENV{EDITOR
};
260 $editor = 'vi' unless defined $editor;
261 system($editor, $compose_filename);
263 open(C2
,">",$compose_filename . ".final")
264 or die "Failed to open $compose_filename.final : " . $!;
266 open(C
,"<",$compose_filename)
267 or die "Failed to open $compose_filename : " . $!;
277 $_ = $term->readline("Send this email? (y|n) ");
278 } while (!defined $_);
280 if (uc substr($_,0,1) ne 'Y') {
281 cleanup_compose_files
();
285 @files = ($compose_filename . ".final");
289 # Now that all the defaults are set, process the rest of the command line
290 # arguments and collect up the files that need to be processed.
294 or die "Failed to opendir $f: $!";
296 push @files, grep { -f
$_ } map { +$f . "/" . $_ }
303 print STDERR
"Skipping $f - not found.\n";
309 print $_,"\n" for (@files);
313 git-send-email [options] <file | directory> [... file | directory ]
315 --from Specify the "From:" line of the email to be sent.
317 --to Specify the primary "To:" line of the email.
319 --cc Specify an initial "Cc:" list for the entire series
322 --bcc Specify a list of email addresses that should be Bcc:
325 --compose Use \$EDITOR to edit an introductory message for the
328 --subject Specify the initial "Subject:" line.
329 Only necessary if --compose is also set. If --compose
330 is not set, this will be prompted for.
332 --in-reply-to Specify the first "In-Reply-To:" header line.
333 Only used if --compose is also set. If --compose is not
334 set, this will be prompted for.
336 --chain-reply-to If set, the replies will all be to the previous
337 email sent, rather than to the first email sent.
340 --no-signed-off-cc Suppress the automatic addition of email addresses
341 that appear in a Signed-off-by: line, to the cc: list.
342 Note: Using this option is not recommended.
344 --smtp-server If set, specifies the outgoing SMTP server to use.
345 Defaults to localhost.
347 --suppress-from Suppress sending emails to yourself if your address
348 appears in a From: line.
350 --quiet Make git-send-email less verbose. One line per email should be
353 Error: Please specify a file or a directory on the command line.
358 # Variables we set as part of the loop over files
359 our ($message_id, $cc, %mail, $subject, $reply_to, $references, $message);
361 sub extract_valid_address
{
363 my $local_part_regexp = '[^<>"\s@]+';
364 my $domain_regexp = '[^.<>"\s@]+(?:\.[^.<>"\s@]+)+';
366 # check for a local address:
367 return $address if ($address =~ /^($local_part_regexp)$/);
369 if ($have_email_valid) {
370 return scalar Email
::Valid
->address($address);
372 # less robust/correct than the monster regexp in Email::Valid,
373 # but still does a 99% job, and one less dependency
374 $address =~ /($local_part_regexp\@$domain_regexp)/;
379 # Usually don't need to change anything below here.
381 # we make a "fake" message id by taking the current number
382 # of seconds since the beginning of Unix time and tacking on
383 # a random number to the end, in case we are called quicker than
384 # 1 second since the last time we were called.
386 # We'll setup a template for the message id, using the "from" address:
387 my $message_id_from = extract_valid_address
($from);
388 my $message_id_template = "<%s-git-send-email-$message_id_from>";
393 my $pseudo_rand = int (rand(4200));
394 $message_id = sprintf $message_id_template, "$date$pseudo_rand";
395 #print "new message id = $message_id\n"; # Was useful for debugging
401 $time = time - scalar $#files;
405 my @recipients = unique_email_list
(@to);
406 my $to = join (",\n\t", @recipients);
407 @recipients = unique_email_list
(@recipients,@cc,@bcclist);
408 my $date = format_2822_time
($time++);
409 my $gitversion = '@@GIT_VERSION@@';
410 if ($gitversion =~ m/..GIT_VERSION../) {
411 $gitversion = Git
::version
();
414 my ($author_name) = ($from =~ /^(.*?)\s+</);
415 if ($author_name && $author_name =~ /\./ && $author_name !~ /^".*"$/) {
416 my ($name, $addr) = ($from =~ /^(.*?)(\s+<.*)/);
417 $from = "\"$name\"$addr";
419 my $header = "From: $from
424 Message-Id: $message_id
425 X-Mailer: git-send-email $gitversion
429 $header .= "In-Reply-To: $reply_to\n";
430 $header .= "References: $references\n";
433 $header .= join("\n", @xh) . "\n";
437 # We don't want to send the email.
438 } elsif ($smtp_server =~ m
#^/#) {
439 my $pid = open my $sm, '|-';
440 defined $pid or die $!;
442 exec($smtp_server,'-i',
443 map { extract_valid_address
($_) }
444 @recipients) or die $!;
446 print $sm "$header\n$message";
450 $smtp ||= Net
::SMTP
->new( $smtp_server );
451 $smtp->mail( $from ) or die $smtp->message;
452 $smtp->to( @recipients ) or die $smtp->message;
453 $smtp->data or die $smtp->message;
454 $smtp->datasend("$header\n$message") or die $smtp->message;
455 $smtp->dataend() or die $smtp->message;
456 $smtp->ok or die "Failed to send $subject\n".$smtp->message;
459 printf "Sent %s\n", $subject;
461 print "OK. Log says:\nDate: $date\n";
463 print "Server: $smtp_server\n";
465 print "Sendmail: $smtp_server\n";
467 print "From: $from\nSubject: $subject\nCc: $cc\nTo: $to\n\n";
469 print "Result: ", $smtp->code, ' ',
470 ($smtp->message =~ /\n([^\n]+\n)$/s), "\n";
472 print "Result: OK\n";
477 $reply_to = $initial_reply_to;
478 $references = $initial_reply_to || '';
480 $subject = $initial_subject;
482 foreach my $t (@files) {
483 open(F
,"<",$t) or die "can't open file $t";
485 my $author_not_sender = undef;
488 my $input_format = undef;
494 $input_format = 'mbox';
498 if (!defined $input_format && /^[-A-Za-z]+:\s/) {
499 $input_format = 'mbox';
502 if (defined $input_format && $input_format eq 'mbox') {
503 if (/^Subject:\s+(.*)$/) {
506 } elsif (/^(Cc|From):\s+(.*)$/) {
508 next if ($suppress_from);
510 elsif ($1 eq 'From') {
511 $author_not_sender = $2;
513 printf("(mbox) Adding cc: %s from line '%s'\n",
514 $2, $_) unless $quiet;
517 elsif (/^[-A-Za-z]+:\s+\S/) {
523 # "send lots of email" format,
526 # So let's support that, too.
527 $input_format = 'lots';
529 printf("(non-mbox) Adding cc: %s from line '%s'\n",
530 $_, $_) unless $quiet;
534 } elsif (!defined $subject) {
539 # A whitespace line will terminate the headers
545 if (/^Signed-off-by: (.*)$/i && !$no_signed_off_cc) {
549 printf("(sob) Adding cc: %s from line '%s'\n",
550 $c, $_) unless $quiet;
555 if (defined $author_not_sender) {
556 $message = "From: $author_not_sender\n\n$message";
559 $cc = join(", ", unique_email_list
(@cc));
563 # set up for the next message
564 if ($chain_reply_to || !defined $reply_to || length($reply_to) == 0) {
565 $reply_to = $message_id;
566 if (length $references > 0) {
567 $references .= " $message_id";
569 $references = "$message_id";
576 cleanup_compose_files
();
579 sub cleanup_compose_files
() {
580 unlink($compose_filename, $compose_filename . ".final");
584 $smtp->quit if $smtp;
586 sub unique_email_list
(@
) {
590 foreach my $entry (@_) {
591 if (my $clean = extract_valid_address
($entry)) {
593 next if $seen{$clean}++;
594 push @emails, $entry;
596 print STDERR
"W: unable to extract a valid address",