blob: 76baa8e431e082c1e36eb9c78125094de0b8a85e [file] [log] [blame]
Ryan Anderson83b24432005-07-31 04:17:25 -04001#!/usr/bin/perl -w
Ryan Anderson83b24432005-07-31 04:17:25 -04002#
Ryan Andersonf3d9f352005-07-31 20:04:24 -04003# Copyright 2002,2005 Greg Kroah-Hartman <greg@kroah.com>
4# Copyright 2005 Ryan Anderson <ryan@michonline.com>
Ryan Anderson83b24432005-07-31 04:17:25 -04005#
6# GPL v2 (See COPYING)
Junio C Hamano5825e5b2005-07-31 23:05:16 -07007#
Ryan Anderson83b24432005-07-31 04:17:25 -04008# Ported to support git "mbox" format files by Ryan Anderson <ryan@michonline.com>
9#
Ryan Andersonf3d9f352005-07-31 20:04:24 -040010# Sends a collection of emails to the given email addresses, disturbingly fast.
Junio C Hamano5825e5b2005-07-31 23:05:16 -070011#
Ryan Andersonf3d9f352005-07-31 20:04:24 -040012# 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:
Junio C Hamano5825e5b2005-07-31 23:05:16 -070015# first line of the message is who to CC,
Ryan Andersonf3d9f352005-07-31 20:04:24 -040016# and second line is the subject of the message.
Junio C Hamano5825e5b2005-07-31 23:05:16 -070017#
Ryan Anderson83b24432005-07-31 04:17:25 -040018
19use strict;
20use warnings;
21use Term::ReadLine;
Ryan Anderson83b24432005-07-31 04:17:25 -040022use Getopt::Long;
23use Data::Dumper;
Sean Estabrooks412876d2007-08-17 17:38:25 -040024use Term::ANSIColor;
Petr Baudis3cb8caf2006-07-03 22:47:58 +020025use Git;
Ryan Anderson83b24432005-07-31 04:17:25 -040026
Sean Estabrooks412876d2007-08-17 17:38:25 -040027$SIG{INT} = sub { print color("reset"), "\n"; exit };
28
Junio C Hamano280242d2006-07-02 16:03:59 -070029package FakeTerm;
30sub new {
31 my ($class, $reason) = @_;
32 return bless \$reason, shift;
33}
34sub readline {
35 my $self = shift;
36 die "Cannot use readline on FakeTerm: $$self";
37}
38package main;
39
Michael Coleman1b0baf12007-02-27 22:47:54 -060040
41sub usage {
42 print <<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
Joe Perches324a8bd2007-08-17 18:51:12 -070052 --cc-cmd Specify a command to execute per file which adds
53 per file specific cc address entries
54
Michael Coleman1b0baf12007-02-27 22:47:54 -060055 --bcc Specify a list of email addresses that should be Bcc:
56 on all the emails.
57
Adam Robenef0c2ab2007-07-19 22:09:35 -070058 --compose Use \$GIT_EDITOR, core.editor, \$EDITOR, or \$VISUAL to edit
59 an introductory message for the patch series.
Michael Coleman1b0baf12007-02-27 22:47:54 -060060
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
Adam Roben5483c712007-06-27 20:59:37 -070073 --signed-off-cc Automatically add email addresses that appear in
74 Signed-off-by: or Cc: lines to the cc: list. Defaults to on.
Michael Coleman1b0baf12007-02-27 22:47:54 -060075
Douglas Stockwell34cc60c2007-09-03 03:06:25 +090076 --identity The configuration identity, a subsection to prioritise over
77 the default section.
78
Michael Coleman1b0baf12007-02-27 22:47:54 -060079 --smtp-server If set, specifies the outgoing SMTP server to use.
Junio C Hamano44b24762007-09-25 17:27:54 -070080 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.
Michael Coleman1b0baf12007-02-27 22:47:54 -060084
Douglas Stockwell34cc60c2007-09-03 03:06:25 +090085 --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
Uwe Kleine-König620bb242007-11-07 08:34:12 +010091 --suppress-from Suppress sending emails to yourself. Defaults to off.
Michael Coleman1b0baf12007-02-27 22:47:54 -060092
Adam Roben5483c712007-06-27 20:59:37 -070093 --thread Specify that the "In-Reply-To:" header should be set on all
Adam Robene46f7a02007-06-26 15:48:30 -070094 emails. Defaults to on.
95
Michael Coleman1b0baf12007-02-27 22:47:54 -060096 --quiet Make git-send-email less verbose. One line per email
97 should be all that is output.
98
Robin H. Johnson238cc632007-04-25 19:37:15 -070099 --dry-run Do everything except actually send the emails.
100
Robin H. Johnsonf073a592007-04-25 19:37:22 -0700101 --envelope-sender Specify the envelope sender used to send the emails.
102
Michael Coleman1b0baf12007-02-27 22:47:54 -0600103EOT
104 exit(1);
105}
106
Eric Wong4bc87a22006-03-25 17:20:48 -0800107# most mail servers generate the Date: header, but not all...
Jakub Narebski6bdca892006-07-07 20:57:55 +0200108sub format_2822_time {
109 my ($time) = @_;
110 my @localtm = localtime($time);
111 my @gmttm = gmtime($time);
112 my $localmin = $localtm[1] + $localtm[2] * 60;
113 my $gmtmin = $gmttm[1] + $gmttm[2] * 60;
114 if ($localtm[0] != $gmttm[0]) {
115 die "local zone differs from GMT by a non-minute interval\n";
116 }
117 if ((($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]) {
122 die "local time offset greater than or equal to 24 hours\n";
123 }
124 my $offset = $localmin - $gmtmin;
125 my $offhour = $offset / 60;
126 my $offmin = abs($offset % 60);
127 if (abs($offhour) >= 24) {
128 die ("local time offset greater than or equal to 24 hours\n");
129 }
130
131 return sprintf("%s, %2d %s %d %02d:%02d:%02d %s%02d%02d",
132 qw(Sun Mon Tue Wed Thu Fri Sat)[$localtm[6]],
133 $localtm[3],
134 qw(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) ? '+' : '-',
141 abs($offhour),
142 $offmin,
143 );
144}
Eric Wong4bc87a22006-03-25 17:20:48 -0800145
Eric Wong567ffeb2006-03-25 16:47:12 -0800146my $have_email_valid = eval { require Email::Valid; 1 };
Eric Wong4bc87a22006-03-25 17:20:48 -0800147my $smtp;
Wincent Colaiuta5f5b6112007-11-21 13:35:05 +0100148my $auth;
Eric Wong4bc87a22006-03-25 17:20:48 -0800149
Ryan Andersone2057352005-08-02 21:45:22 -0400150sub unique_email_list(@);
Ryan Anderson1f038a02005-09-05 01:13:07 -0400151sub cleanup_compose_files();
152
153# Constants (essentially)
154my $compose_filename = ".msg.$$";
Ryan Andersone2057352005-08-02 21:45:22 -0400155
Ryan Anderson83b24432005-07-31 04:17:25 -0400156# Variables we fill in automatically, or via prompting:
Junio C Hamanoce91c2f2006-10-05 16:36:49 -0700157my (@to,@cc,@initial_cc,@bcclist,@xh,
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200158 $initial_reply_to,$initial_subject,@files,$author,$sender,$compose,$time);
Ryan Anderson83b24432005-07-31 04:17:25 -0400159
Robin H. Johnsonf073a592007-04-25 19:37:22 -0700160my $envelope_sender;
Ryan Anderson78488b22005-07-31 20:04:24 -0400161
Ryan Anderson91332612005-07-31 20:04:24 -0400162# Example reply to:
Ryan Anderson83b24432005-07-31 04:17:25 -0400163#$initial_reply_to = ''; #<20050203173208.GA23964@foobar.com>';
Ryan Anderson83b24432005-07-31 04:17:25 -0400164
Petr Baudis3cb8caf2006-07-03 22:47:58 +0200165my $repo = Git->repository();
Junio C Hamano280242d2006-07-02 16:03:59 -0700166my $term = eval {
167 new Term::ReadLine 'git-send-email';
168};
169if ($@) {
170 $term = new FakeTerm "$@: going non-interactive";
171}
Ryan Anderson83b24432005-07-31 04:17:25 -0400172
Adam Roben5483c712007-06-27 20:59:37 -0700173# Behavior modification variables
174my ($quiet, $dry_run) = (0, 0);
175
176# Variables with corresponding config settings
Joe Perches324a8bd2007-08-17 18:51:12 -0700177my ($thread, $chain_reply_to, $suppress_from, $signed_off_cc, $cc_cmd);
Junio C Hamano44b24762007-09-25 17:27:54 -0700178my ($smtp_server, $smtp_server_port, $smtp_authuser, $smtp_authpass, $smtp_ssl);
179my ($identity, $aliasfiletype, @alias_files, @smtp_host_parts);
Adam Roben5483c712007-06-27 20:59:37 -0700180
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900181my %config_bool_settings = (
Adam Roben5483c712007-06-27 20:59:37 -0700182 "thread" => [\$thread, 1],
183 "chainreplyto" => [\$chain_reply_to, 1],
184 "suppressfrom" => [\$suppress_from, 0],
185 "signedoffcc" => [\$signed_off_cc, 1],
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900186 "smtpssl" => [\$smtp_ssl, 0],
Adam Robene46f7a02007-06-26 15:48:30 -0700187);
188
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900189my %config_settings = (
190 "smtpserver" => \$smtp_server,
Junio C Hamano44b24762007-09-25 17:27:54 -0700191 "smtpserverport" => \$smtp_server_port,
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900192 "smtpuser" => \$smtp_authuser,
193 "smtppass" => \$smtp_authpass,
Miklos Vajna2db9b492007-10-01 14:42:42 +0200194 "to" => \@to,
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900195 "cccmd" => \$cc_cmd,
196 "aliasfiletype" => \$aliasfiletype,
197 "bcc" => \@bcclist,
198 "aliasesfile" => \@alias_files,
199);
Avi Kivity4a62d3f2007-03-11 19:19:44 +0200200
Ryan Anderson83b24432005-07-31 04:17:25 -0400201# Begin by accumulating all the variables (defined above), that we will end up
202# needing, first, from the command line:
203
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200204my $rc = GetOptions("sender|from=s" => \$sender,
Ryan Anderson83b24432005-07-31 04:17:25 -0400205 "in-reply-to=s" => \$initial_reply_to,
206 "subject=s" => \$initial_subject,
207 "to=s" => \@to,
Ryan Andersonda140f82006-02-13 03:05:15 -0500208 "cc=s" => \@initial_cc,
Ryan Anderson58063242006-05-29 12:30:13 -0700209 "bcc=s" => \@bcclist,
Ryan Anderson78488b22005-07-31 20:04:24 -0400210 "chain-reply-to!" => \$chain_reply_to,
Ryan Anderson3342d852005-07-31 20:04:24 -0400211 "smtp-server=s" => \$smtp_server,
Junio C Hamano44b24762007-09-25 17:27:54 -0700212 "smtp-server-port=s" => \$smtp_server_port,
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900213 "smtp-user=s" => \$smtp_authuser,
214 "smtp-pass=s" => \$smtp_authpass,
215 "smtp-ssl!" => \$smtp_ssl,
216 "identity=s" => \$identity,
Ryan Anderson1f038a02005-09-05 01:13:07 -0400217 "compose" => \$compose,
Ryan Anderson30d08b32006-02-02 11:56:06 -0500218 "quiet" => \$quiet,
Joe Perches324a8bd2007-08-17 18:51:12 -0700219 "cc-cmd=s" => \$cc_cmd,
Adam Roben5483c712007-06-27 20:59:37 -0700220 "suppress-from!" => \$suppress_from,
221 "signed-off-cc|signed-off-by-cc!" => \$signed_off_cc,
Matthew Wilcox61302592006-10-10 08:58:23 -0600222 "dry-run" => \$dry_run,
Robin H. Johnsonf073a592007-04-25 19:37:22 -0700223 "envelope-sender=s" => \$envelope_sender,
Adam Roben5483c712007-06-27 20:59:37 -0700224 "thread!" => \$thread,
Ryan Anderson83b24432005-07-31 04:17:25 -0400225 );
226
Michael Coleman1b0baf12007-02-27 22:47:54 -0600227unless ($rc) {
228 usage();
229}
230
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900231# Now, let's fill any that aren't set in with defaults:
232
233sub read_config {
234 my ($prefix) = @_;
235
236 foreach my $setting (keys %config_bool_settings) {
237 my $target = $config_bool_settings{$setting}->[0];
238 $$target = $repo->config_bool("$prefix.$setting") unless (defined $$target);
239 }
240
241 foreach my $setting (keys %config_settings) {
242 my $target = $config_settings{$setting};
243 if (ref($target) eq "ARRAY") {
244 unless (@$target) {
245 my @values = $repo->config("$prefix.$setting");
246 @$target = @values if (@values && defined $values[0]);
247 }
248 }
249 else {
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
261foreach my $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
Eric W. Biederman79ee5552006-06-21 07:17:31 -0600268# Verify the user input
269
270foreach my $entry (@to) {
271 die "Comma in --to entry: $entry'\n" unless $entry !~ m/,/;
272}
273
274foreach my $entry (@initial_cc) {
275 die "Comma in --cc entry: $entry'\n" unless $entry !~ m/,/;
276}
277
278foreach my $entry (@bcclist) {
279 die "Comma in --bcclist entry: $entry'\n" unless $entry !~ m/,/;
280}
281
Eric Wong994d6c62006-05-14 19:13:44 -0700282my %aliases;
Eric Wong994d6c62006-05-14 19:13:44 -0700283my %parse_alias = (
284 # multiline formats can be supported in the future
285 mutt => sub { my $fh = shift; while (<$fh>) {
Michael Hendricks504ceab2007-05-16 23:15:16 -0600286 if (/^\s*alias\s+(\S+)\s+(.*)$/) {
Eric Wong994d6c62006-05-14 19:13:44 -0700287 my ($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>) {
293 if (/^alias\s+(\S+)\s+(.*)$/) {
294 # spaces delimit multiple addresses
295 $aliases{$1} = [ split(/\s+/, $2) ];
296 }}},
297 pine => sub { my $fh = shift; while (<$fh>) {
Kumar Gala2d8ae402007-07-24 09:50:38 -0500298 if (/^(\S+)\t.*\t(.*)$/) {
Eric Wong994d6c62006-05-14 19:13:44 -0700299 $aliases{$1} = [ split(/\s*,\s*/, $2) ];
300 }}},
301 gnus => sub { my $fh = shift; while (<$fh>) {
302 if (/\(define-mail-alias\s+"(\S+?)"\s+"(\S+?)"\)/) {
303 $aliases{$1} = [ $2 ];
304 }}}
305);
306
Petr Baudis3cb8caf2006-07-03 22:47:58 +0200307if (@alias_files and $aliasfiletype and defined $parse_alias{$aliasfiletype}) {
Eric Wong994d6c62006-05-14 19:13:44 -0700308 foreach my $file (@alias_files) {
309 open my $fh, '<', $file or die "opening $file: $!\n";
310 $parse_alias{$aliasfiletype}->($fh);
311 close $fh;
312 }
313}
314
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200315($sender) = expand_aliases($sender) if defined $sender;
Michael Hendricksae740a52007-07-04 19:11:36 -0600316
Ryan Anderson1f038a02005-09-05 01:13:07 -0400317my $prompting = 0;
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200318if (!defined $sender) {
319 $sender = $repoauthor || $repocommitter;
Ryan Anderson8037d1a2005-07-31 20:04:24 -0400320 do {
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200321 $_ = $term->readline("Who should the emails appear to be from? [$sender] ");
Ryan Andersonca9a7d62005-07-31 20:04:25 -0400322 } while (!defined $_);
Ryan Anderson8037d1a2005-07-31 20:04:24 -0400323
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200324 $sender = $_ if ($_);
325 print "Emails will be sent from: ", $sender, "\n";
Ryan Anderson1f038a02005-09-05 01:13:07 -0400326 $prompting++;
Ryan Anderson83b24432005-07-31 04:17:25 -0400327}
328
329if (!@to) {
Ryan Anderson8037d1a2005-07-31 20:04:24 -0400330 do {
Junio C Hamano5825e5b2005-07-31 23:05:16 -0700331 $_ = $term->readline("Who should the emails be sent to? ",
Ryan Anderson8037d1a2005-07-31 20:04:24 -0400332 "");
333 } while (!defined $_);
Ryan Anderson83b24432005-07-31 04:17:25 -0400334 my $to = $_;
335 push @to, split /,/, $to;
Ryan Anderson1f038a02005-09-05 01:13:07 -0400336 $prompting++;
Ryan Anderson83b24432005-07-31 04:17:25 -0400337}
338
Eric Wong994d6c62006-05-14 19:13:44 -0700339sub expand_aliases {
340 my @cur = @_;
341 my @last;
342 do {
343 @last = @cur;
344 @cur = map { $aliases{$_} ? @{$aliases{$_}} : $_ } @last;
345 } while (join(',',@cur) ne join(',',@last));
346 return @cur;
347}
348
349@to = expand_aliases(@to);
Uwe Kleine-K,Av(Bnig5b56aaa2007-08-06 22:34:50 +0200350@to = (map { sanitize_address($_) } @to);
Eric Wong994d6c62006-05-14 19:13:44 -0700351@initial_cc = expand_aliases(@initial_cc);
Ryan Anderson58063242006-05-29 12:30:13 -0700352@bcclist = expand_aliases(@bcclist);
Eric Wong994d6c62006-05-14 19:13:44 -0700353
Ryan Anderson1f038a02005-09-05 01:13:07 -0400354if (!defined $initial_subject && $compose) {
Ryan Anderson8037d1a2005-07-31 20:04:24 -0400355 do {
Benoit Sigourecb6c1622007-11-08 19:56:28 +0100356 $_ = $term->readline("What subject should the initial email start with? ",
Ryan Anderson8037d1a2005-07-31 20:04:24 -0400357 $initial_subject);
358 } while (!defined $_);
Ryan Anderson83b24432005-07-31 04:17:25 -0400359 $initial_subject = $_;
Ryan Anderson1f038a02005-09-05 01:13:07 -0400360 $prompting++;
Ryan Anderson83b24432005-07-31 04:17:25 -0400361}
362
Adam Roben5483c712007-06-27 20:59:37 -0700363if ($thread && !defined $initial_reply_to && $prompting) {
Ryan Anderson8037d1a2005-07-31 20:04:24 -0400364 do {
Ryan Anderson1f038a02005-09-05 01:13:07 -0400365 $_= $term->readline("Message-ID to be used as In-Reply-To for the first email? ",
Ryan Anderson8037d1a2005-07-31 20:04:24 -0400366 $initial_reply_to);
367 } while (!defined $_);
368
Ryan Anderson83b24432005-07-31 04:17:25 -0400369 $initial_reply_to = $_;
David Kastrup3803bce2007-09-12 07:53:45 +0200370 $initial_reply_to =~ s/^\s+<?/</;
371 $initial_reply_to =~ s/>?\s+$/>/;
Ryan Anderson83b24432005-07-31 04:17:25 -0400372}
373
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900374if (!defined $smtp_server) {
Eric Wongaca7ad72006-05-15 02:34:44 -0700375 foreach (qw( /usr/sbin/sendmail /usr/lib/sendmail )) {
376 if (-x $_) {
377 $smtp_server = $_;
378 last;
379 }
380 }
381 $smtp_server ||= 'localhost'; # could be 127.0.0.1, too... *shrug*
Ryan Anderson3342d852005-07-31 20:04:24 -0400382}
383
Ryan Anderson1f038a02005-09-05 01:13:07 -0400384if ($compose) {
385 # Note that this does not need to be secure, but we will make a small
386 # effort to have it be unique
387 open(C,">",$compose_filename)
388 or die "Failed to open for writing $compose_filename: $!";
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200389 print C "From $sender # This line is ignored.\n";
Ryan Anderson1f038a02005-09-05 01:13:07 -0400390 printf C "Subject: %s\n\n", $initial_subject;
391 printf 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
398 close(C);
399
Adam Robenef0c2ab2007-07-19 22:09:35 -0700400 my $editor = $ENV{GIT_EDITOR} || $repo->config("core.editor") || $ENV{VISUAL} || $ENV{EDITOR} || "vi";
Ryan Anderson1f038a02005-09-05 01:13:07 -0400401 system($editor, $compose_filename);
402
403 open(C2,">",$compose_filename . ".final")
404 or die "Failed to open $compose_filename.final : " . $!;
405
406 open(C,"<",$compose_filename)
407 or die "Failed to open $compose_filename : " . $!;
408
409 while(<C>) {
410 next if m/^GIT: /;
411 print C2 $_;
412 }
413 close(C);
414 close(C2);
415
416 do {
417 $_ = $term->readline("Send this email? (y|n) ");
418 } while (!defined $_);
419
420 if (uc substr($_,0,1) ne 'Y') {
421 cleanup_compose_files();
422 exit(0);
423 }
424
425 @files = ($compose_filename . ".final");
426}
427
428
Ryan Anderson83b24432005-07-31 04:17:25 -0400429# 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.
431for my $f (@ARGV) {
432 if (-d $f) {
433 opendir(DH,$f)
434 or die "Failed to opendir $f: $!";
435
Junio C Hamano5825e5b2005-07-31 23:05:16 -0700436 push @files, grep { -f $_ } map { +$f . "/" . $_ }
Ryan Anderson8037d1a2005-07-31 20:04:24 -0400437 sort readdir(DH);
438
Ryan Anderson83b24432005-07-31 04:17:25 -0400439 } elsif (-f $f) {
440 push @files, $f;
441
442 } else {
443 print STDERR "Skipping $f - not found.\n";
444 }
445}
446
447if (@files) {
Ryan Anderson27184352006-02-05 20:13:52 -0500448 unless ($quiet) {
449 print $_,"\n" for (@files);
450 }
Ryan Anderson83b24432005-07-31 04:17:25 -0400451} else {
Michael Coleman1b0baf12007-02-27 22:47:54 -0600452 print STDERR "\nNo patch files specified!\n\n";
453 usage();
Ryan Anderson83b24432005-07-31 04:17:25 -0400454}
455
456# Variables we set as part of the loop over files
Robin H. Johnsonaf068d22007-04-25 19:37:18 -0700457our ($message_id, %mail, $subject, $reply_to, $references, $message);
Ryan Anderson83b24432005-07-31 04:17:25 -0400458
Eric Wong567ffeb2006-03-25 16:47:12 -0800459sub extract_valid_address {
460 my $address = shift;
Junio C Hamanoad9c18f2006-06-06 00:05:56 -0700461 my $local_part_regexp = '[^<>"\s@]+';
Junio C Hamano09302e12006-06-06 14:12:46 -0700462 my $domain_regexp = '[^.<>"\s@]+(?:\.[^.<>"\s@]+)+';
Eric Wongdb3106b2006-05-15 02:41:01 -0700463
464 # check for a local address:
Junio C Hamanoad9c18f2006-06-06 00:05:56 -0700465 return $address if ($address =~ /^($local_part_regexp)$/);
Eric Wongdb3106b2006-05-15 02:41:01 -0700466
Uwe Kleine-König155197e2007-08-09 15:27:57 +0200467 $address =~ s/^\s*<(.*)>\s*$/$1/;
Eric Wong567ffeb2006-03-25 16:47:12 -0800468 if ($have_email_valid) {
Junio C Hamanoad9c18f2006-06-06 00:05:56 -0700469 return scalar Email::Valid->address($address);
Eric Wong567ffeb2006-03-25 16:47:12 -0800470 } else {
471 # less robust/correct than the monster regexp in Email::Valid,
472 # but still does a 99% job, and one less dependency
Junio C Hamanoad9c18f2006-06-06 00:05:56 -0700473 $address =~ /($local_part_regexp\@$domain_regexp)/;
Horst H. von Brande96fd302006-06-03 13:11:48 -0400474 return $1;
Eric Wong567ffeb2006-03-25 16:47:12 -0800475 }
476}
Ryan Anderson83b24432005-07-31 04:17:25 -0400477
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.
Ryan Anderson8037d1a2005-07-31 20:04:24 -0400484
485# We'll setup a template for the message id, using the "from" address:
Ryan Anderson8037d1a2005-07-31 20:04:24 -0400486
Junio C Hamanobe510cf2007-09-17 21:18:20 -0700487my ($message_id_stamp, $message_id_serial);
Ryan Anderson83b24432005-07-31 04:17:25 -0400488sub make_message_id
489{
Junio C Hamanobe510cf2007-09-17 21:18:20 -0700490 my $uniq;
491 if (!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
Junio C Hamanoaeb59322007-06-20 13:47:34 -0700498 my $du_part;
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200499 for ($sender, $repocommitter, $repoauthor) {
500 $du_part = extract_valid_address(sanitize_address($_));
501 last if (defined $du_part and $du_part ne '');
Junio C Hamanoaeb59322007-06-20 13:47:34 -0700502 }
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200503 if (not defined $du_part or $du_part eq '') {
Junio C Hamanoaeb59322007-06-20 13:47:34 -0700504 use Sys::Hostname qw();
505 $du_part = 'user@' . Sys::Hostname::hostname();
506 }
Junio C Hamanobe510cf2007-09-17 21:18:20 -0700507 my $message_id_template = "<%s-git-send-email-%s>";
508 $message_id = sprintf($message_id_template, $uniq, $du_part);
Ryan Anderson8037d1a2005-07-31 20:04:24 -0400509 #print "new message id = $message_id\n"; # Was useful for debugging
Ryan Anderson83b24432005-07-31 04:17:25 -0400510}
511
512
513
Eric Wonga5370b12006-03-25 03:01:01 -0800514$time = time - scalar $#files;
Ryan Anderson83b24432005-07-31 04:17:25 -0400515
Jürgen Rühle374c5902007-01-10 13:36:39 -0800516sub unquote_rfc2047 {
517 local ($_) = @_;
Jeff King8291db62007-11-16 05:49:09 -0500518 my $encoding;
519 if (s/=\?([^?]+)\?q\?(.*)\?=/$2/g) {
520 $encoding = $1;
Jürgen Rühle374c5902007-01-10 13:36:39 -0800521 s/_/ /g;
522 s/=([0-9A-F]{2})/chr(hex($1))/eg;
523 }
Jeff King8291db62007-11-16 05:49:09 -0500524 return wantarray ? ($_, $encoding) : $_;
Jürgen Rühle374c5902007-01-10 13:36:39 -0800525}
526
Uwe Kleine-K,Av(Bnig5b56aaa2007-08-06 22:34:50 +0200527# use the simplest quoting being able to handle the recipient
528sub sanitize_address
Robin H. Johnson732263d2007-04-25 19:37:19 -0700529{
530 my ($recipient) = @_;
Uwe Kleine-K,Av(Bnig5b56aaa2007-08-06 22:34:50 +0200531 my ($recipient_name, $recipient_addr) = ($recipient =~ /^(.*?)\s*(<.*)/);
532
533 if (not $recipient_name) {
534 return "$recipient";
Robin H. Johnson732263d2007-04-25 19:37:19 -0700535 }
Uwe Kleine-K,Av(Bnig5b56aaa2007-08-06 22:34:50 +0200536
537 # if recipient_name is already quoted, do nothing
538 if ($recipient_name =~ /^(".*"|=\?utf-8\?q\?.*\?=)$/) {
539 return $recipient;
540 }
541
542 # rfc2047 is needed if a non-ascii char is included
543 if ($recipient_name =~ /[^[:ascii:]]/) {
544 $recipient_name =~ s/([^-a-zA-Z0-9!*+\/])/sprintf("=%02X", ord($1))/eg;
545 $recipient_name =~ s/(.*)/=\?utf-8\?q\?$1\?=/;
546 }
547
548 # double quotes are needed if specials or CTLs are included
549 elsif ($recipient_name =~ /[][()<>@,;:\\".\000-\037\177]/) {
550 $recipient_name =~ s/(["\\\r])/\\$1/;
551 $recipient_name = "\"$recipient_name\"";
552 }
553
554 return "$recipient_name $recipient_addr";
555
Robin H. Johnson732263d2007-04-25 19:37:19 -0700556}
557
Ryan Anderson83b24432005-07-31 04:17:25 -0400558sub send_message
559{
Eric Wong4bc87a22006-03-25 17:20:48 -0800560 my @recipients = unique_email_list(@to);
Ask Bjørn Hansen7ac17522007-11-19 03:00:26 -0800561 @cc = (grep { my $cc = extract_valid_address($_);
562 not grep { $cc eq $_ } @recipients
563 }
564 map { sanitize_address($_) }
565 @cc);
Eric Wong4bc87a22006-03-25 17:20:48 -0800566 my $to = join (",\n\t", @recipients);
Ryan Anderson58063242006-05-29 12:30:13 -0700567 @recipients = unique_email_list(@recipients,@cc,@bcclist);
Robin H. Johnsonc38f0242007-04-25 19:37:20 -0700568 @recipients = (map { extract_valid_address($_) } @recipients);
Jakub Narebski6bdca892006-07-07 20:57:55 +0200569 my $date = format_2822_time($time++);
Martin Langhoffe923eff2006-05-03 09:44:36 +1200570 my $gitversion = '@@GIT_VERSION@@';
571 if ($gitversion =~ m/..GIT_VERSION../) {
Petr Baudis3cb8caf2006-07-03 22:47:58 +0200572 $gitversion = Git::version();
Martin Langhoffe923eff2006-05-03 09:44:36 +1200573 }
Ryan Anderson83b24432005-07-31 04:17:25 -0400574
Robin H. Johnsonaf068d22007-04-25 19:37:18 -0700575 my $cc = join(", ", unique_email_list(@cc));
Junio C Hamanof06a6a42007-04-16 16:51:47 -0700576 my $ccline = "";
577 if ($cc ne '') {
578 $ccline = "\nCc: $cc";
579 }
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200580 my $sanitized_sender = sanitize_address($sender);
Junio C Hamanoaeb59322007-06-20 13:47:34 -0700581 make_message_id();
582
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200583 my $header = "From: $sanitized_sender
Junio C Hamanof06a6a42007-04-16 16:51:47 -0700584To: $to${ccline}
Eric Wong4bc87a22006-03-25 17:20:48 -0800585Subject: $subject
Eric Wong4bc87a22006-03-25 17:20:48 -0800586Date: $date
587Message-Id: $message_id
Martin Langhoffe923eff2006-05-03 09:44:36 +1200588X-Mailer: git-send-email $gitversion
Eric Wong4bc87a22006-03-25 17:20:48 -0800589";
Adam Roben5483c712007-06-27 20:59:37 -0700590 if ($thread && $reply_to) {
Ryan Anderson7ccf7922006-05-29 12:30:12 -0700591
592 $header .= "In-Reply-To: $reply_to\n";
593 $header .= "References: $references\n";
594 }
Junio C Hamanoce91c2f2006-10-05 16:36:49 -0700595 if (@xh) {
596 $header .= join("\n", @xh) . "\n";
597 }
Ryan Anderson83b24432005-07-31 04:17:25 -0400598
Robin H. Johnsonc38f0242007-04-25 19:37:20 -0700599 my @sendmail_parameters = ('-i', @recipients);
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200600 my $raw_from = $sanitized_sender;
Robin H. Johnsonf073a592007-04-25 19:37:22 -0700601 $raw_from = $envelope_sender if (defined $envelope_sender);
602 $raw_from = extract_valid_address($raw_from);
603 unshift (@sendmail_parameters,
604 '-f', $raw_from) if(defined $envelope_sender);
Robin H. Johnson8e3d4362007-04-25 19:37:17 -0700605
Matthew Wilcox61302592006-10-10 08:58:23 -0600606 if ($dry_run) {
607 # We don't want to send the email.
608 } elsif ($smtp_server =~ m#^/#) {
Eric Wongaca7ad72006-05-15 02:34:44 -0700609 my $pid = open my $sm, '|-';
610 defined $pid or die $!;
611 if (!$pid) {
Robin H. Johnson8e3d4362007-04-25 19:37:17 -0700612 exec($smtp_server, @sendmail_parameters) or die $!;
Eric Wongaca7ad72006-05-15 02:34:44 -0700613 }
614 print $sm "$header\n$message";
615 close $sm or die $?;
616 } else {
Junio C Hamano44b24762007-09-25 17:27:54 -0700617
618 if (!defined $smtp_server) {
619 die "The required SMTP server is not properly defined."
620 }
621
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900622 if ($smtp_ssl) {
Junio C Hamano44b24762007-09-25 17:27:54 -0700623 $smtp_server_port ||= 465; # ssmtp
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900624 require Net::SMTP::SSL;
Junio C Hamano44b24762007-09-25 17:27:54 -0700625 $smtp ||= Net::SMTP::SSL->new($smtp_server, Port => $smtp_server_port);
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900626 }
627 else {
628 require Net::SMTP;
Junio C Hamano44b24762007-09-25 17:27:54 -0700629 $smtp ||= Net::SMTP->new((defined $smtp_server_port)
630 ? "$smtp_server:$smtp_server_port"
631 : $smtp_server);
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900632 }
Junio C Hamano44b24762007-09-25 17:27:54 -0700633
634 if (!$smtp) {
635 die "Unable to initialize SMTP properly. Is there something wrong with your config?";
636 }
637
638 if ((defined $smtp_authuser) && (defined $smtp_authpass)) {
Wincent Colaiuta5f5b6112007-11-21 13:35:05 +0100639 $auth ||= $smtp->auth( $smtp_authuser, $smtp_authpass ) or die $smtp->message;
Junio C Hamano44b24762007-09-25 17:27:54 -0700640 }
Robin H. Johnson2b69bfc2007-04-25 19:37:21 -0700641 $smtp->mail( $raw_from ) or die $smtp->message;
Eric Wongaca7ad72006-05-15 02:34:44 -0700642 $smtp->to( @recipients ) or die $smtp->message;
643 $smtp->data or die $smtp->message;
644 $smtp->datasend("$header\n$message") or die $smtp->message;
645 $smtp->dataend() or die $smtp->message;
646 $smtp->ok or die "Failed to send $subject\n".$smtp->message;
647 }
Ryan Anderson27184352006-02-05 20:13:52 -0500648 if ($quiet) {
Robin H. Johnson71c7da92007-04-25 19:37:16 -0700649 printf (($dry_run ? "Dry-" : "")."Sent %s\n", $subject);
Ryan Anderson27184352006-02-05 20:13:52 -0500650 } else {
David D. Kilzerb7f30e02007-11-18 20:14:55 -0800651 print (($dry_run ? "Dry-" : "")."OK. Log says:\n");
Robin H. Johnson2b69bfc2007-04-25 19:37:21 -0700652 if ($smtp_server !~ m#^/#) {
Eric Wongaca7ad72006-05-15 02:34:44 -0700653 print "Server: $smtp_server\n";
Robin H. Johnson2b69bfc2007-04-25 19:37:21 -0700654 print "MAIL FROM:<$raw_from>\n";
655 print "RCPT TO:".join(',',(map { "<$_>" } @recipients))."\n";
Eric Wongaca7ad72006-05-15 02:34:44 -0700656 } else {
Robin H. Johnson8e3d4362007-04-25 19:37:17 -0700657 print "Sendmail: $smtp_server ".join(' ',@sendmail_parameters)."\n";
Eric Wongaca7ad72006-05-15 02:34:44 -0700658 }
David D. Kilzerb7f30e02007-11-18 20:14:55 -0800659 print $header, "\n";
Eric Wongaca7ad72006-05-15 02:34:44 -0700660 if ($smtp) {
661 print "Result: ", $smtp->code, ' ',
662 ($smtp->message =~ /\n([^\n]+\n)$/s), "\n";
663 } else {
664 print "Result: OK\n";
665 }
Ryan Anderson30d08b32006-02-02 11:56:06 -0500666 }
Ryan Anderson83b24432005-07-31 04:17:25 -0400667}
668
Ryan Anderson83b24432005-07-31 04:17:25 -0400669$reply_to = $initial_reply_to;
Junio C Hamano2186d562006-05-29 23:53:13 -0700670$references = $initial_reply_to || '';
Ryan Anderson83b24432005-07-31 04:17:25 -0400671$subject = $initial_subject;
672
673foreach my $t (@files) {
Ryan Anderson83b24432005-07-31 04:17:25 -0400674 open(F,"<",$t) or die "can't open file $t";
675
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200676 my $author = undef;
Jeff King8291db62007-11-16 05:49:09 -0500677 my $author_encoding;
678 my $has_content_type;
679 my $body_encoding;
Ryan Andersonda140f82006-02-13 03:05:15 -0500680 @cc = @initial_cc;
Junio C Hamanoce91c2f2006-10-05 16:36:49 -0700681 @xh = ();
Junio C Hamanoe6b09642006-10-07 03:09:05 -0700682 my $input_format = undef;
Ryan Anderson83b24432005-07-31 04:17:25 -0400683 my $header_done = 0;
684 $message = "";
685 while(<F>) {
686 if (!$header_done) {
Junio C Hamanoe6b09642006-10-07 03:09:05 -0700687 if (/^From /) {
688 $input_format = 'mbox';
689 next;
690 }
Ryan Anderson83b24432005-07-31 04:17:25 -0400691 chomp;
Junio C Hamanoe6b09642006-10-07 03:09:05 -0700692 if (!defined $input_format && /^[-A-Za-z]+:\s/) {
693 $input_format = 'mbox';
694 }
Ryan Anderson83b24432005-07-31 04:17:25 -0400695
Junio C Hamanoe6b09642006-10-07 03:09:05 -0700696 if (defined $input_format && $input_format eq 'mbox') {
Ryan Anderson83b24432005-07-31 04:17:25 -0400697 if (/^Subject:\s+(.*)$/) {
698 $subject = $1;
699
700 } elsif (/^(Cc|From):\s+(.*)$/) {
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200701 if (unquote_rfc2047($2) eq $sender) {
Junio C Hamano8a8e6232006-03-23 23:43:52 -0800702 next if ($suppress_from);
703 }
Haavard Skinnemoen68d42c42006-08-23 03:02:59 -0700704 elsif ($1 eq 'From') {
Jeff King8291db62007-11-16 05:49:09 -0500705 ($author, $author_encoding)
706 = unquote_rfc2047($2);
Junio C Hamano8a8e6232006-03-23 23:43:52 -0800707 }
Ryan Anderson83b24432005-07-31 04:17:25 -0400708 printf("(mbox) Adding cc: %s from line '%s'\n",
Ryan Anderson27184352006-02-05 20:13:52 -0500709 $2, $_) unless $quiet;
Ryan Anderson83b24432005-07-31 04:17:25 -0400710 push @cc, $2;
711 }
Jeff King8291db62007-11-16 05:49:09 -0500712 elsif (/^Content-type:/i) {
713 $has_content_type = 1;
714 if (/charset="?[^ "]+/) {
715 $body_encoding = $1;
716 }
717 push @xh, $_;
718 }
Eric Wong1d6a0032006-10-23 00:46:37 -0700719 elsif (!/^Date:\s/ && /^[-A-Za-z]+:\s+\S/) {
Junio C Hamanoce91c2f2006-10-05 16:36:49 -0700720 push @xh, $_;
721 }
Ryan Anderson83b24432005-07-31 04:17:25 -0400722
723 } else {
724 # In the traditional
725 # "send lots of email" format,
726 # line 1 = cc
727 # line 2 = subject
728 # So let's support that, too.
Junio C Hamanoe6b09642006-10-07 03:09:05 -0700729 $input_format = 'lots';
Ryan Anderson83b24432005-07-31 04:17:25 -0400730 if (@cc == 0) {
731 printf("(non-mbox) Adding cc: %s from line '%s'\n",
Ryan Anderson27184352006-02-05 20:13:52 -0500732 $_, $_) unless $quiet;
Ryan Anderson83b24432005-07-31 04:17:25 -0400733
734 push @cc, $_;
735
736 } elsif (!defined $subject) {
737 $subject = $_;
738 }
739 }
Junio C Hamano5825e5b2005-07-31 23:05:16 -0700740
Ryan Anderson83b24432005-07-31 04:17:25 -0400741 # A whitespace line will terminate the headers
742 if (m/^\s*$/) {
743 $header_done = 1;
744 }
745 } else {
746 $message .= $_;
Adam Roben5483c712007-06-27 20:59:37 -0700747 if (/^(Signed-off-by|Cc): (.*)$/i && $signed_off_cc) {
J. Bruce Fieldsabec1002007-03-18 21:37:53 -0400748 my $c = $2;
Ryan Anderson83b24432005-07-31 04:17:25 -0400749 chomp $c;
Uwe Kleine-König620bb242007-11-07 08:34:12 +0100750 next if ($c eq $sender and $suppress_from);
Ryan Anderson83b24432005-07-31 04:17:25 -0400751 push @cc, $c;
752 printf("(sob) Adding cc: %s from line '%s'\n",
Ryan Anderson27184352006-02-05 20:13:52 -0500753 $c, $_) unless $quiet;
Ryan Anderson83b24432005-07-31 04:17:25 -0400754 }
755 }
756 }
757 close F;
Joe Perches324a8bd2007-08-17 18:51:12 -0700758
Douglas Stockwell34cc60c2007-09-03 03:06:25 +0900759 if (defined $cc_cmd) {
Joe Perches324a8bd2007-08-17 18:51:12 -0700760 open(F, "$cc_cmd $t |")
761 or die "(cc-cmd) Could not execute '$cc_cmd'";
762 while(<F>) {
763 my $c = $_;
764 $c =~ s/^\s*//g;
765 $c =~ s/\n$//g;
Uwe Kleine-König620bb242007-11-07 08:34:12 +0100766 next if ($c eq $sender and $suppress_from);
Joe Perches324a8bd2007-08-17 18:51:12 -0700767 push @cc, $c;
768 printf("(cc-cmd) Adding cc: %s from: '%s'\n",
769 $c, $cc_cmd) unless $quiet;
770 }
771 close F
772 or die "(cc-cmd) failed to close pipe to '$cc_cmd'";
773 }
774
Uwe Kleine-König94638f82007-08-09 15:27:58 +0200775 if (defined $author) {
776 $message = "From: $author\n\n$message";
Jeff King8291db62007-11-16 05:49:09 -0500777 if (defined $author_encoding) {
778 if ($has_content_type) {
779 if ($body_encoding eq $author_encoding) {
780 # ok, we already have the right encoding
781 }
782 else {
783 # uh oh, we should re-encode
784 }
785 }
786 else {
787 push @xh,
788 'MIME-Version: 1.0',
Jeff King8641ee32007-11-20 07:54:04 -0500789 "Content-Type: text/plain; charset=$author_encoding",
790 'Content-Transfer-Encoding: 8bit';
Jeff King8291db62007-11-16 05:49:09 -0500791 }
792 }
Junio C Hamano8a8e6232006-03-23 23:43:52 -0800793 }
Ryan Anderson83b24432005-07-31 04:17:25 -0400794
Ryan Anderson83b24432005-07-31 04:17:25 -0400795 send_message();
796
797 # set up for the next message
Junio C Hamanobc108f62006-10-05 16:36:15 -0700798 if ($chain_reply_to || !defined $reply_to || length($reply_to) == 0) {
Ryan Anderson78488b22005-07-31 20:04:24 -0400799 $reply_to = $message_id;
Ryan Anderson7ccf7922006-05-29 12:30:12 -0700800 if (length $references > 0) {
YOSHIFUJI Hideaki / 吉藤英明a925b892007-04-06 08:50:24 +0900801 $references .= "\n $message_id";
Ryan Anderson7ccf7922006-05-29 12:30:12 -0700802 } else {
803 $references = "$message_id";
804 }
Ryan Anderson78488b22005-07-31 20:04:24 -0400805 }
Ryan Anderson83b24432005-07-31 04:17:25 -0400806}
Ryan Andersone2057352005-08-02 21:45:22 -0400807
Ryan Anderson1f038a02005-09-05 01:13:07 -0400808if ($compose) {
809 cleanup_compose_files();
810}
811
812sub cleanup_compose_files() {
813 unlink($compose_filename, $compose_filename . ".final");
814
815}
816
Eric Wong4bc87a22006-03-25 17:20:48 -0800817$smtp->quit if $smtp;
Ryan Andersone2057352005-08-02 21:45:22 -0400818
819sub unique_email_list(@) {
820 my %seen;
821 my @emails;
822
823 foreach my $entry (@_) {
Eric Wongdb3106b2006-05-15 02:41:01 -0700824 if (my $clean = extract_valid_address($entry)) {
825 $seen{$clean} ||= 0;
826 next if $seen{$clean}++;
827 push @emails, $entry;
828 } else {
829 print STDERR "W: unable to extract a valid address",
830 " from: $entry\n";
831 }
Ryan Andersone2057352005-08-02 21:45:22 -0400832 }
833 return @emails;
834}