Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 1 | #!/usr/bin/perl -w |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 2 | # |
Ryan Anderson | f3d9f35 | 2005-07-31 20:04:24 -0400 | [diff] [blame] | 3 | # Copyright 2002,2005 Greg Kroah-Hartman <greg@kroah.com> |
| 4 | # Copyright 2005 Ryan Anderson <ryan@michonline.com> |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 5 | # |
| 6 | # GPL v2 (See COPYING) |
Junio C Hamano | 5825e5b | 2005-07-31 23:05:16 -0700 | [diff] [blame] | 7 | # |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 8 | # Ported to support git "mbox" format files by Ryan Anderson <ryan@michonline.com> |
| 9 | # |
Ryan Anderson | f3d9f35 | 2005-07-31 20:04:24 -0400 | [diff] [blame] | 10 | # Sends a collection of emails to the given email addresses, disturbingly fast. |
Junio C Hamano | 5825e5b | 2005-07-31 23:05:16 -0700 | [diff] [blame] | 11 | # |
Ryan Anderson | f3d9f35 | 2005-07-31 20:04:24 -0400 | [diff] [blame] | 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: |
Junio C Hamano | 5825e5b | 2005-07-31 23:05:16 -0700 | [diff] [blame] | 15 | # first line of the message is who to CC, |
Ryan Anderson | f3d9f35 | 2005-07-31 20:04:24 -0400 | [diff] [blame] | 16 | # and second line is the subject of the message. |
Junio C Hamano | 5825e5b | 2005-07-31 23:05:16 -0700 | [diff] [blame] | 17 | # |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 18 | |
| 19 | use strict; |
| 20 | use warnings; |
| 21 | use Term::ReadLine; |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 22 | use Getopt::Long; |
| 23 | use Data::Dumper; |
Petr Baudis | 3cb8caf | 2006-07-03 22:47:58 +0200 | [diff] [blame] | 24 | use Git; |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 25 | |
Junio C Hamano | 280242d | 2006-07-02 16:03:59 -0700 | [diff] [blame] | 26 | package FakeTerm; |
| 27 | sub new { |
| 28 | my ($class, $reason) = @_; |
| 29 | return bless \$reason, shift; |
| 30 | } |
| 31 | sub readline { |
| 32 | my $self = shift; |
| 33 | die "Cannot use readline on FakeTerm: $$self"; |
| 34 | } |
| 35 | package main; |
| 36 | |
Michael Coleman | 1b0baf1 | 2007-02-27 22:47:54 -0600 | [diff] [blame] | 37 | |
| 38 | sub usage { |
| 39 | print <<EOT; |
| 40 | git-send-email [options] <file | directory>... |
| 41 | Options: |
| 42 | --from Specify the "From:" line of the email to be sent. |
| 43 | |
| 44 | --to Specify the primary "To:" line of the email. |
| 45 | |
| 46 | --cc Specify an initial "Cc:" list for the entire series |
| 47 | of emails. |
| 48 | |
| 49 | --bcc Specify a list of email addresses that should be Bcc: |
| 50 | on all the emails. |
| 51 | |
| 52 | --compose Use \$EDITOR to edit an introductory message for the |
| 53 | patch series. |
| 54 | |
| 55 | --subject Specify the initial "Subject:" line. |
| 56 | Only necessary if --compose is also set. If --compose |
| 57 | is not set, this will be prompted for. |
| 58 | |
| 59 | --in-reply-to Specify the first "In-Reply-To:" header line. |
| 60 | Only used if --compose is also set. If --compose is not |
| 61 | set, this will be prompted for. |
| 62 | |
| 63 | --chain-reply-to If set, the replies will all be to the previous |
| 64 | email sent, rather than to the first email sent. |
| 65 | Defaults to on. |
| 66 | |
Adam Roben | 5483c71 | 2007-06-27 20:59:37 -0700 | [diff] [blame] | 67 | --signed-off-cc Automatically add email addresses that appear in |
| 68 | Signed-off-by: or Cc: lines to the cc: list. Defaults to on. |
Michael Coleman | 1b0baf1 | 2007-02-27 22:47:54 -0600 | [diff] [blame] | 69 | |
| 70 | --smtp-server If set, specifies the outgoing SMTP server to use. |
| 71 | Defaults to localhost. |
| 72 | |
| 73 | --suppress-from Suppress sending emails to yourself if your address |
Adam Roben | 5483c71 | 2007-06-27 20:59:37 -0700 | [diff] [blame] | 74 | appears in a From: line. Defaults to off. |
Michael Coleman | 1b0baf1 | 2007-02-27 22:47:54 -0600 | [diff] [blame] | 75 | |
Adam Roben | 5483c71 | 2007-06-27 20:59:37 -0700 | [diff] [blame] | 76 | --thread Specify that the "In-Reply-To:" header should be set on all |
Adam Roben | e46f7a0 | 2007-06-26 15:48:30 -0700 | [diff] [blame] | 77 | emails. Defaults to on. |
| 78 | |
Michael Coleman | 1b0baf1 | 2007-02-27 22:47:54 -0600 | [diff] [blame] | 79 | --quiet Make git-send-email less verbose. One line per email |
| 80 | should be all that is output. |
| 81 | |
Robin H. Johnson | 238cc63 | 2007-04-25 19:37:15 -0700 | [diff] [blame] | 82 | --dry-run Do everything except actually send the emails. |
| 83 | |
Robin H. Johnson | f073a59 | 2007-04-25 19:37:22 -0700 | [diff] [blame] | 84 | --envelope-sender Specify the envelope sender used to send the emails. |
| 85 | |
Michael Coleman | 1b0baf1 | 2007-02-27 22:47:54 -0600 | [diff] [blame] | 86 | EOT |
| 87 | exit(1); |
| 88 | } |
| 89 | |
Eric Wong | 4bc87a2 | 2006-03-25 17:20:48 -0800 | [diff] [blame] | 90 | # most mail servers generate the Date: header, but not all... |
Jakub Narebski | 6bdca89 | 2006-07-07 20:57:55 +0200 | [diff] [blame] | 91 | sub format_2822_time { |
| 92 | my ($time) = @_; |
| 93 | my @localtm = localtime($time); |
| 94 | my @gmttm = gmtime($time); |
| 95 | my $localmin = $localtm[1] + $localtm[2] * 60; |
| 96 | my $gmtmin = $gmttm[1] + $gmttm[2] * 60; |
| 97 | if ($localtm[0] != $gmttm[0]) { |
| 98 | die "local zone differs from GMT by a non-minute interval\n"; |
| 99 | } |
| 100 | if ((($gmttm[6] + 1) % 7) == $localtm[6]) { |
| 101 | $localmin += 1440; |
| 102 | } elsif ((($gmttm[6] - 1) % 7) == $localtm[6]) { |
| 103 | $localmin -= 1440; |
| 104 | } elsif ($gmttm[6] != $localtm[6]) { |
| 105 | die "local time offset greater than or equal to 24 hours\n"; |
| 106 | } |
| 107 | my $offset = $localmin - $gmtmin; |
| 108 | my $offhour = $offset / 60; |
| 109 | my $offmin = abs($offset % 60); |
| 110 | if (abs($offhour) >= 24) { |
| 111 | die ("local time offset greater than or equal to 24 hours\n"); |
| 112 | } |
| 113 | |
| 114 | return sprintf("%s, %2d %s %d %02d:%02d:%02d %s%02d%02d", |
| 115 | qw(Sun Mon Tue Wed Thu Fri Sat)[$localtm[6]], |
| 116 | $localtm[3], |
| 117 | qw(Jan Feb Mar Apr May Jun |
| 118 | Jul Aug Sep Oct Nov Dec)[$localtm[4]], |
| 119 | $localtm[5]+1900, |
| 120 | $localtm[2], |
| 121 | $localtm[1], |
| 122 | $localtm[0], |
| 123 | ($offset >= 0) ? '+' : '-', |
| 124 | abs($offhour), |
| 125 | $offmin, |
| 126 | ); |
| 127 | } |
Eric Wong | 4bc87a2 | 2006-03-25 17:20:48 -0800 | [diff] [blame] | 128 | |
Eric Wong | 567ffeb | 2006-03-25 16:47:12 -0800 | [diff] [blame] | 129 | my $have_email_valid = eval { require Email::Valid; 1 }; |
Eric Wong | 4bc87a2 | 2006-03-25 17:20:48 -0800 | [diff] [blame] | 130 | my $smtp; |
| 131 | |
Ryan Anderson | e205735 | 2005-08-02 21:45:22 -0400 | [diff] [blame] | 132 | sub unique_email_list(@); |
Ryan Anderson | 1f038a0 | 2005-09-05 01:13:07 -0400 | [diff] [blame] | 133 | sub cleanup_compose_files(); |
| 134 | |
| 135 | # Constants (essentially) |
| 136 | my $compose_filename = ".msg.$$"; |
Ryan Anderson | e205735 | 2005-08-02 21:45:22 -0400 | [diff] [blame] | 137 | |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 138 | # Variables we fill in automatically, or via prompting: |
Junio C Hamano | ce91c2f | 2006-10-05 16:36:49 -0700 | [diff] [blame] | 139 | my (@to,@cc,@initial_cc,@bcclist,@xh, |
Ryan Anderson | 5806324 | 2006-05-29 12:30:13 -0700 | [diff] [blame] | 140 | $initial_reply_to,$initial_subject,@files,$from,$compose,$time); |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 141 | |
Eric Wong | aca7ad7 | 2006-05-15 02:34:44 -0700 | [diff] [blame] | 142 | my $smtp_server; |
Robin H. Johnson | f073a59 | 2007-04-25 19:37:22 -0700 | [diff] [blame] | 143 | my $envelope_sender; |
Ryan Anderson | 78488b2 | 2005-07-31 20:04:24 -0400 | [diff] [blame] | 144 | |
Ryan Anderson | 9133261 | 2005-07-31 20:04:24 -0400 | [diff] [blame] | 145 | # Example reply to: |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 146 | #$initial_reply_to = ''; #<20050203173208.GA23964@foobar.com>'; |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 147 | |
Petr Baudis | 3cb8caf | 2006-07-03 22:47:58 +0200 | [diff] [blame] | 148 | my $repo = Git->repository(); |
Junio C Hamano | 280242d | 2006-07-02 16:03:59 -0700 | [diff] [blame] | 149 | my $term = eval { |
| 150 | new Term::ReadLine 'git-send-email'; |
| 151 | }; |
| 152 | if ($@) { |
| 153 | $term = new FakeTerm "$@: going non-interactive"; |
| 154 | } |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 155 | |
Adam Roben | 5483c71 | 2007-06-27 20:59:37 -0700 | [diff] [blame] | 156 | # Behavior modification variables |
| 157 | my ($quiet, $dry_run) = (0, 0); |
| 158 | |
| 159 | # Variables with corresponding config settings |
| 160 | my ($thread, $chain_reply_to, $suppress_from, $signed_off_cc); |
| 161 | |
Adam Roben | e46f7a0 | 2007-06-26 15:48:30 -0700 | [diff] [blame] | 162 | my %config_settings = ( |
Adam Roben | 5483c71 | 2007-06-27 20:59:37 -0700 | [diff] [blame] | 163 | "thread" => [\$thread, 1], |
| 164 | "chainreplyto" => [\$chain_reply_to, 1], |
| 165 | "suppressfrom" => [\$suppress_from, 0], |
| 166 | "signedoffcc" => [\$signed_off_cc, 1], |
Adam Roben | e46f7a0 | 2007-06-26 15:48:30 -0700 | [diff] [blame] | 167 | ); |
| 168 | |
| 169 | foreach my $setting (keys %config_settings) { |
Adam Roben | 5483c71 | 2007-06-27 20:59:37 -0700 | [diff] [blame] | 170 | my $config = $repo->config_bool("sendemail.$setting"); |
| 171 | ${$config_settings{$setting}->[0]} = (defined $config) ? $config : $config_settings{$setting}->[1]; |
Avi Kivity | 4a62d3f | 2007-03-11 19:19:44 +0200 | [diff] [blame] | 172 | } |
| 173 | |
| 174 | @bcclist = $repo->config('sendemail.bcc'); |
| 175 | if (!@bcclist or !$bcclist[0]) { |
| 176 | @bcclist = (); |
| 177 | } |
| 178 | |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 179 | # Begin by accumulating all the variables (defined above), that we will end up |
| 180 | # needing, first, from the command line: |
| 181 | |
| 182 | my $rc = GetOptions("from=s" => \$from, |
| 183 | "in-reply-to=s" => \$initial_reply_to, |
| 184 | "subject=s" => \$initial_subject, |
| 185 | "to=s" => \@to, |
Ryan Anderson | da140f8 | 2006-02-13 03:05:15 -0500 | [diff] [blame] | 186 | "cc=s" => \@initial_cc, |
Ryan Anderson | 5806324 | 2006-05-29 12:30:13 -0700 | [diff] [blame] | 187 | "bcc=s" => \@bcclist, |
Ryan Anderson | 78488b2 | 2005-07-31 20:04:24 -0400 | [diff] [blame] | 188 | "chain-reply-to!" => \$chain_reply_to, |
Ryan Anderson | 3342d85 | 2005-07-31 20:04:24 -0400 | [diff] [blame] | 189 | "smtp-server=s" => \$smtp_server, |
Ryan Anderson | 1f038a0 | 2005-09-05 01:13:07 -0400 | [diff] [blame] | 190 | "compose" => \$compose, |
Ryan Anderson | 30d08b3 | 2006-02-02 11:56:06 -0500 | [diff] [blame] | 191 | "quiet" => \$quiet, |
Adam Roben | 5483c71 | 2007-06-27 20:59:37 -0700 | [diff] [blame] | 192 | "suppress-from!" => \$suppress_from, |
| 193 | "signed-off-cc|signed-off-by-cc!" => \$signed_off_cc, |
Matthew Wilcox | 6130259 | 2006-10-10 08:58:23 -0600 | [diff] [blame] | 194 | "dry-run" => \$dry_run, |
Robin H. Johnson | f073a59 | 2007-04-25 19:37:22 -0700 | [diff] [blame] | 195 | "envelope-sender=s" => \$envelope_sender, |
Adam Roben | 5483c71 | 2007-06-27 20:59:37 -0700 | [diff] [blame] | 196 | "thread!" => \$thread, |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 197 | ); |
| 198 | |
Michael Coleman | 1b0baf1 | 2007-02-27 22:47:54 -0600 | [diff] [blame] | 199 | unless ($rc) { |
| 200 | usage(); |
| 201 | } |
| 202 | |
Eric W. Biederman | 79ee555 | 2006-06-21 07:17:31 -0600 | [diff] [blame] | 203 | # Verify the user input |
| 204 | |
| 205 | foreach my $entry (@to) { |
| 206 | die "Comma in --to entry: $entry'\n" unless $entry !~ m/,/; |
| 207 | } |
| 208 | |
| 209 | foreach my $entry (@initial_cc) { |
| 210 | die "Comma in --cc entry: $entry'\n" unless $entry !~ m/,/; |
| 211 | } |
| 212 | |
| 213 | foreach my $entry (@bcclist) { |
| 214 | die "Comma in --bcclist entry: $entry'\n" unless $entry !~ m/,/; |
| 215 | } |
| 216 | |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 217 | # Now, let's fill any that aren't set in with defaults: |
| 218 | |
Petr Baudis | c7a30e5 | 2006-07-03 22:48:01 +0200 | [diff] [blame] | 219 | my ($author) = $repo->ident_person('author'); |
| 220 | my ($committer) = $repo->ident_person('committer'); |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 221 | |
Eric Wong | 994d6c6 | 2006-05-14 19:13:44 -0700 | [diff] [blame] | 222 | my %aliases; |
Petr Baudis | 3cb8caf | 2006-07-03 22:47:58 +0200 | [diff] [blame] | 223 | my @alias_files = $repo->config('sendemail.aliasesfile'); |
| 224 | my $aliasfiletype = $repo->config('sendemail.aliasfiletype'); |
Eric Wong | 994d6c6 | 2006-05-14 19:13:44 -0700 | [diff] [blame] | 225 | my %parse_alias = ( |
| 226 | # multiline formats can be supported in the future |
| 227 | mutt => sub { my $fh = shift; while (<$fh>) { |
Michael Hendricks | 504ceab | 2007-05-16 23:15:16 -0600 | [diff] [blame] | 228 | if (/^\s*alias\s+(\S+)\s+(.*)$/) { |
Eric Wong | 994d6c6 | 2006-05-14 19:13:44 -0700 | [diff] [blame] | 229 | my ($alias, $addr) = ($1, $2); |
| 230 | $addr =~ s/#.*$//; # mutt allows # comments |
| 231 | # commas delimit multiple addresses |
| 232 | $aliases{$alias} = [ split(/\s*,\s*/, $addr) ]; |
| 233 | }}}, |
| 234 | mailrc => sub { my $fh = shift; while (<$fh>) { |
| 235 | if (/^alias\s+(\S+)\s+(.*)$/) { |
| 236 | # spaces delimit multiple addresses |
| 237 | $aliases{$1} = [ split(/\s+/, $2) ]; |
| 238 | }}}, |
| 239 | pine => sub { my $fh = shift; while (<$fh>) { |
| 240 | if (/^(\S+)\s+(.*)$/) { |
| 241 | $aliases{$1} = [ split(/\s*,\s*/, $2) ]; |
| 242 | }}}, |
| 243 | gnus => sub { my $fh = shift; while (<$fh>) { |
| 244 | if (/\(define-mail-alias\s+"(\S+?)"\s+"(\S+?)"\)/) { |
| 245 | $aliases{$1} = [ $2 ]; |
| 246 | }}} |
| 247 | ); |
| 248 | |
Petr Baudis | 3cb8caf | 2006-07-03 22:47:58 +0200 | [diff] [blame] | 249 | if (@alias_files and $aliasfiletype and defined $parse_alias{$aliasfiletype}) { |
Eric Wong | 994d6c6 | 2006-05-14 19:13:44 -0700 | [diff] [blame] | 250 | foreach my $file (@alias_files) { |
| 251 | open my $fh, '<', $file or die "opening $file: $!\n"; |
| 252 | $parse_alias{$aliasfiletype}->($fh); |
| 253 | close $fh; |
| 254 | } |
| 255 | } |
| 256 | |
Ryan Anderson | 1f038a0 | 2005-09-05 01:13:07 -0400 | [diff] [blame] | 257 | my $prompting = 0; |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 258 | if (!defined $from) { |
| 259 | $from = $author || $committer; |
Ryan Anderson | 8037d1a | 2005-07-31 20:04:24 -0400 | [diff] [blame] | 260 | do { |
Quy Tonthat | 2ef5805 | 2006-12-28 01:16:21 +1100 | [diff] [blame] | 261 | $_ = $term->readline("Who should the emails appear to be from? [$from] "); |
Ryan Anderson | ca9a7d6 | 2005-07-31 20:04:25 -0400 | [diff] [blame] | 262 | } while (!defined $_); |
Ryan Anderson | 8037d1a | 2005-07-31 20:04:24 -0400 | [diff] [blame] | 263 | |
Quy Tonthat | 2ef5805 | 2006-12-28 01:16:21 +1100 | [diff] [blame] | 264 | $from = $_ if ($_); |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 265 | print "Emails will be sent from: ", $from, "\n"; |
Ryan Anderson | 1f038a0 | 2005-09-05 01:13:07 -0400 | [diff] [blame] | 266 | $prompting++; |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 267 | } |
| 268 | |
| 269 | if (!@to) { |
Ryan Anderson | 8037d1a | 2005-07-31 20:04:24 -0400 | [diff] [blame] | 270 | do { |
Junio C Hamano | 5825e5b | 2005-07-31 23:05:16 -0700 | [diff] [blame] | 271 | $_ = $term->readline("Who should the emails be sent to? ", |
Ryan Anderson | 8037d1a | 2005-07-31 20:04:24 -0400 | [diff] [blame] | 272 | ""); |
| 273 | } while (!defined $_); |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 274 | my $to = $_; |
| 275 | push @to, split /,/, $to; |
Ryan Anderson | 1f038a0 | 2005-09-05 01:13:07 -0400 | [diff] [blame] | 276 | $prompting++; |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 277 | } |
| 278 | |
Eric Wong | 994d6c6 | 2006-05-14 19:13:44 -0700 | [diff] [blame] | 279 | sub expand_aliases { |
| 280 | my @cur = @_; |
| 281 | my @last; |
| 282 | do { |
| 283 | @last = @cur; |
| 284 | @cur = map { $aliases{$_} ? @{$aliases{$_}} : $_ } @last; |
| 285 | } while (join(',',@cur) ne join(',',@last)); |
| 286 | return @cur; |
| 287 | } |
| 288 | |
| 289 | @to = expand_aliases(@to); |
Robin H. Johnson | bf7af11 | 2007-04-25 21:53:22 -0700 | [diff] [blame] | 290 | @to = (map { sanitize_address_rfc822($_) } @to); |
Eric Wong | 994d6c6 | 2006-05-14 19:13:44 -0700 | [diff] [blame] | 291 | @initial_cc = expand_aliases(@initial_cc); |
Ryan Anderson | 5806324 | 2006-05-29 12:30:13 -0700 | [diff] [blame] | 292 | @bcclist = expand_aliases(@bcclist); |
Eric Wong | 994d6c6 | 2006-05-14 19:13:44 -0700 | [diff] [blame] | 293 | |
Ryan Anderson | 1f038a0 | 2005-09-05 01:13:07 -0400 | [diff] [blame] | 294 | if (!defined $initial_subject && $compose) { |
Ryan Anderson | 8037d1a | 2005-07-31 20:04:24 -0400 | [diff] [blame] | 295 | do { |
Junio C Hamano | 5825e5b | 2005-07-31 23:05:16 -0700 | [diff] [blame] | 296 | $_ = $term->readline("What subject should the emails start with? ", |
Ryan Anderson | 8037d1a | 2005-07-31 20:04:24 -0400 | [diff] [blame] | 297 | $initial_subject); |
| 298 | } while (!defined $_); |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 299 | $initial_subject = $_; |
Ryan Anderson | 1f038a0 | 2005-09-05 01:13:07 -0400 | [diff] [blame] | 300 | $prompting++; |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 301 | } |
| 302 | |
Adam Roben | 5483c71 | 2007-06-27 20:59:37 -0700 | [diff] [blame] | 303 | if ($thread && !defined $initial_reply_to && $prompting) { |
Ryan Anderson | 8037d1a | 2005-07-31 20:04:24 -0400 | [diff] [blame] | 304 | do { |
Ryan Anderson | 1f038a0 | 2005-09-05 01:13:07 -0400 | [diff] [blame] | 305 | $_= $term->readline("Message-ID to be used as In-Reply-To for the first email? ", |
Ryan Anderson | 8037d1a | 2005-07-31 20:04:24 -0400 | [diff] [blame] | 306 | $initial_reply_to); |
| 307 | } while (!defined $_); |
| 308 | |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 309 | $initial_reply_to = $_; |
Ryan Anderson | 78488b2 | 2005-07-31 20:04:24 -0400 | [diff] [blame] | 310 | $initial_reply_to =~ s/(^\s+|\s+$)//g; |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 311 | } |
| 312 | |
Eric Wong | aca7ad7 | 2006-05-15 02:34:44 -0700 | [diff] [blame] | 313 | if (!$smtp_server) { |
Sergey Vlasov | 6dcfa30 | 2006-10-29 22:31:39 +0300 | [diff] [blame] | 314 | $smtp_server = $repo->config('sendemail.smtpserver'); |
| 315 | } |
| 316 | if (!$smtp_server) { |
Eric Wong | aca7ad7 | 2006-05-15 02:34:44 -0700 | [diff] [blame] | 317 | foreach (qw( /usr/sbin/sendmail /usr/lib/sendmail )) { |
| 318 | if (-x $_) { |
| 319 | $smtp_server = $_; |
| 320 | last; |
| 321 | } |
| 322 | } |
| 323 | $smtp_server ||= 'localhost'; # could be 127.0.0.1, too... *shrug* |
Ryan Anderson | 3342d85 | 2005-07-31 20:04:24 -0400 | [diff] [blame] | 324 | } |
| 325 | |
Ryan Anderson | 1f038a0 | 2005-09-05 01:13:07 -0400 | [diff] [blame] | 326 | if ($compose) { |
| 327 | # Note that this does not need to be secure, but we will make a small |
| 328 | # effort to have it be unique |
| 329 | open(C,">",$compose_filename) |
| 330 | or die "Failed to open for writing $compose_filename: $!"; |
Ryan Anderson | d366c70 | 2006-02-02 11:56:06 -0500 | [diff] [blame] | 331 | print C "From $from # This line is ignored.\n"; |
Ryan Anderson | 1f038a0 | 2005-09-05 01:13:07 -0400 | [diff] [blame] | 332 | printf C "Subject: %s\n\n", $initial_subject; |
| 333 | printf C <<EOT; |
| 334 | GIT: Please enter your email below. |
| 335 | GIT: Lines beginning in "GIT: " will be removed. |
| 336 | GIT: Consider including an overall diffstat or table of contents |
| 337 | GIT: for the patch you are writing. |
| 338 | |
| 339 | EOT |
| 340 | close(C); |
| 341 | |
| 342 | my $editor = $ENV{EDITOR}; |
| 343 | $editor = 'vi' unless defined $editor; |
| 344 | system($editor, $compose_filename); |
| 345 | |
| 346 | open(C2,">",$compose_filename . ".final") |
| 347 | or die "Failed to open $compose_filename.final : " . $!; |
| 348 | |
| 349 | open(C,"<",$compose_filename) |
| 350 | or die "Failed to open $compose_filename : " . $!; |
| 351 | |
| 352 | while(<C>) { |
| 353 | next if m/^GIT: /; |
| 354 | print C2 $_; |
| 355 | } |
| 356 | close(C); |
| 357 | close(C2); |
| 358 | |
| 359 | do { |
| 360 | $_ = $term->readline("Send this email? (y|n) "); |
| 361 | } while (!defined $_); |
| 362 | |
| 363 | if (uc substr($_,0,1) ne 'Y') { |
| 364 | cleanup_compose_files(); |
| 365 | exit(0); |
| 366 | } |
| 367 | |
| 368 | @files = ($compose_filename . ".final"); |
| 369 | } |
| 370 | |
| 371 | |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 372 | # Now that all the defaults are set, process the rest of the command line |
| 373 | # arguments and collect up the files that need to be processed. |
| 374 | for my $f (@ARGV) { |
| 375 | if (-d $f) { |
| 376 | opendir(DH,$f) |
| 377 | or die "Failed to opendir $f: $!"; |
| 378 | |
Junio C Hamano | 5825e5b | 2005-07-31 23:05:16 -0700 | [diff] [blame] | 379 | push @files, grep { -f $_ } map { +$f . "/" . $_ } |
Ryan Anderson | 8037d1a | 2005-07-31 20:04:24 -0400 | [diff] [blame] | 380 | sort readdir(DH); |
| 381 | |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 382 | } elsif (-f $f) { |
| 383 | push @files, $f; |
| 384 | |
| 385 | } else { |
| 386 | print STDERR "Skipping $f - not found.\n"; |
| 387 | } |
| 388 | } |
| 389 | |
| 390 | if (@files) { |
Ryan Anderson | 2718435 | 2006-02-05 20:13:52 -0500 | [diff] [blame] | 391 | unless ($quiet) { |
| 392 | print $_,"\n" for (@files); |
| 393 | } |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 394 | } else { |
Michael Coleman | 1b0baf1 | 2007-02-27 22:47:54 -0600 | [diff] [blame] | 395 | print STDERR "\nNo patch files specified!\n\n"; |
| 396 | usage(); |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 397 | } |
| 398 | |
| 399 | # Variables we set as part of the loop over files |
Robin H. Johnson | af068d2 | 2007-04-25 19:37:18 -0700 | [diff] [blame] | 400 | our ($message_id, %mail, $subject, $reply_to, $references, $message); |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 401 | |
Eric Wong | 567ffeb | 2006-03-25 16:47:12 -0800 | [diff] [blame] | 402 | sub extract_valid_address { |
| 403 | my $address = shift; |
Junio C Hamano | ad9c18f | 2006-06-06 00:05:56 -0700 | [diff] [blame] | 404 | my $local_part_regexp = '[^<>"\s@]+'; |
Junio C Hamano | 09302e1 | 2006-06-06 14:12:46 -0700 | [diff] [blame] | 405 | my $domain_regexp = '[^.<>"\s@]+(?:\.[^.<>"\s@]+)+'; |
Eric Wong | db3106b | 2006-05-15 02:41:01 -0700 | [diff] [blame] | 406 | |
| 407 | # check for a local address: |
Junio C Hamano | ad9c18f | 2006-06-06 00:05:56 -0700 | [diff] [blame] | 408 | return $address if ($address =~ /^($local_part_regexp)$/); |
Eric Wong | db3106b | 2006-05-15 02:41:01 -0700 | [diff] [blame] | 409 | |
Eric Wong | 567ffeb | 2006-03-25 16:47:12 -0800 | [diff] [blame] | 410 | if ($have_email_valid) { |
Junio C Hamano | ad9c18f | 2006-06-06 00:05:56 -0700 | [diff] [blame] | 411 | return scalar Email::Valid->address($address); |
Eric Wong | 567ffeb | 2006-03-25 16:47:12 -0800 | [diff] [blame] | 412 | } else { |
| 413 | # less robust/correct than the monster regexp in Email::Valid, |
| 414 | # but still does a 99% job, and one less dependency |
Junio C Hamano | ad9c18f | 2006-06-06 00:05:56 -0700 | [diff] [blame] | 415 | $address =~ /($local_part_regexp\@$domain_regexp)/; |
Horst H. von Brand | e96fd30 | 2006-06-03 13:11:48 -0400 | [diff] [blame] | 416 | return $1; |
Eric Wong | 567ffeb | 2006-03-25 16:47:12 -0800 | [diff] [blame] | 417 | } |
| 418 | } |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 419 | |
| 420 | # Usually don't need to change anything below here. |
| 421 | |
| 422 | # we make a "fake" message id by taking the current number |
| 423 | # of seconds since the beginning of Unix time and tacking on |
| 424 | # a random number to the end, in case we are called quicker than |
| 425 | # 1 second since the last time we were called. |
Ryan Anderson | 8037d1a | 2005-07-31 20:04:24 -0400 | [diff] [blame] | 426 | |
| 427 | # We'll setup a template for the message id, using the "from" address: |
Ryan Anderson | 8037d1a | 2005-07-31 20:04:24 -0400 | [diff] [blame] | 428 | |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 429 | sub make_message_id |
| 430 | { |
Eric Wong | 72095d5 | 2006-03-25 02:43:31 -0800 | [diff] [blame] | 431 | my $date = time; |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 432 | my $pseudo_rand = int (rand(4200)); |
Junio C Hamano | aeb5932 | 2007-06-20 13:47:34 -0700 | [diff] [blame] | 433 | my $du_part; |
| 434 | for ($from, $committer, $author) { |
| 435 | $du_part = extract_valid_address($_); |
| 436 | last if ($du_part ne ''); |
| 437 | } |
| 438 | if ($du_part eq '') { |
| 439 | use Sys::Hostname qw(); |
| 440 | $du_part = 'user@' . Sys::Hostname::hostname(); |
| 441 | } |
| 442 | my $message_id_template = "<%s-git-send-email-$du_part>"; |
Ryan Anderson | 8037d1a | 2005-07-31 20:04:24 -0400 | [diff] [blame] | 443 | $message_id = sprintf $message_id_template, "$date$pseudo_rand"; |
| 444 | #print "new message id = $message_id\n"; # Was useful for debugging |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 445 | } |
| 446 | |
| 447 | |
| 448 | |
Eric Wong | a5370b1 | 2006-03-25 03:01:01 -0800 | [diff] [blame] | 449 | $time = time - scalar $#files; |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 450 | |
Jürgen Rühle | 374c590 | 2007-01-10 13:36:39 -0800 | [diff] [blame] | 451 | sub unquote_rfc2047 { |
| 452 | local ($_) = @_; |
| 453 | if (s/=\?utf-8\?q\?(.*)\?=/$1/g) { |
| 454 | s/_/ /g; |
| 455 | s/=([0-9A-F]{2})/chr(hex($1))/eg; |
| 456 | } |
Junio C Hamano | 3740b04 | 2007-01-30 02:22:37 -0800 | [diff] [blame] | 457 | return "$_"; |
Jürgen Rühle | 374c590 | 2007-01-10 13:36:39 -0800 | [diff] [blame] | 458 | } |
| 459 | |
Robin H. Johnson | 732263d | 2007-04-25 19:37:19 -0700 | [diff] [blame] | 460 | # If an address contains a . in the name portion, the name must be quoted. |
| 461 | sub sanitize_address_rfc822 |
| 462 | { |
| 463 | my ($recipient) = @_; |
| 464 | my ($recipient_name) = ($recipient =~ /^(.*?)\s+</); |
| 465 | if ($recipient_name && $recipient_name =~ /\./ && $recipient_name !~ /^".*"$/) { |
| 466 | my ($name, $addr) = ($recipient =~ /^(.*?)(\s+<.*)/); |
| 467 | $recipient = "\"$name\"$addr"; |
| 468 | } |
| 469 | return $recipient; |
| 470 | } |
| 471 | |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 472 | sub send_message |
| 473 | { |
Eric Wong | 4bc87a2 | 2006-03-25 17:20:48 -0800 | [diff] [blame] | 474 | my @recipients = unique_email_list(@to); |
Robin H. Johnson | 732263d | 2007-04-25 19:37:19 -0700 | [diff] [blame] | 475 | @cc = (map { sanitize_address_rfc822($_) } @cc); |
Eric Wong | 4bc87a2 | 2006-03-25 17:20:48 -0800 | [diff] [blame] | 476 | my $to = join (",\n\t", @recipients); |
Ryan Anderson | 5806324 | 2006-05-29 12:30:13 -0700 | [diff] [blame] | 477 | @recipients = unique_email_list(@recipients,@cc,@bcclist); |
Robin H. Johnson | c38f024 | 2007-04-25 19:37:20 -0700 | [diff] [blame] | 478 | @recipients = (map { extract_valid_address($_) } @recipients); |
Jakub Narebski | 6bdca89 | 2006-07-07 20:57:55 +0200 | [diff] [blame] | 479 | my $date = format_2822_time($time++); |
Martin Langhoff | e923eff | 2006-05-03 09:44:36 +1200 | [diff] [blame] | 480 | my $gitversion = '@@GIT_VERSION@@'; |
| 481 | if ($gitversion =~ m/..GIT_VERSION../) { |
Petr Baudis | 3cb8caf | 2006-07-03 22:47:58 +0200 | [diff] [blame] | 482 | $gitversion = Git::version(); |
Martin Langhoff | e923eff | 2006-05-03 09:44:36 +1200 | [diff] [blame] | 483 | } |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 484 | |
Robin H. Johnson | af068d2 | 2007-04-25 19:37:18 -0700 | [diff] [blame] | 485 | my $cc = join(", ", unique_email_list(@cc)); |
Junio C Hamano | f06a6a4 | 2007-04-16 16:51:47 -0700 | [diff] [blame] | 486 | my $ccline = ""; |
| 487 | if ($cc ne '') { |
| 488 | $ccline = "\nCc: $cc"; |
| 489 | } |
Robin H. Johnson | 732263d | 2007-04-25 19:37:19 -0700 | [diff] [blame] | 490 | $from = sanitize_address_rfc822($from); |
Junio C Hamano | aeb5932 | 2007-06-20 13:47:34 -0700 | [diff] [blame] | 491 | make_message_id(); |
| 492 | |
Eric Wong | 4bc87a2 | 2006-03-25 17:20:48 -0800 | [diff] [blame] | 493 | my $header = "From: $from |
Junio C Hamano | f06a6a4 | 2007-04-16 16:51:47 -0700 | [diff] [blame] | 494 | To: $to${ccline} |
Eric Wong | 4bc87a2 | 2006-03-25 17:20:48 -0800 | [diff] [blame] | 495 | Subject: $subject |
Eric Wong | 4bc87a2 | 2006-03-25 17:20:48 -0800 | [diff] [blame] | 496 | Date: $date |
| 497 | Message-Id: $message_id |
Martin Langhoff | e923eff | 2006-05-03 09:44:36 +1200 | [diff] [blame] | 498 | X-Mailer: git-send-email $gitversion |
Eric Wong | 4bc87a2 | 2006-03-25 17:20:48 -0800 | [diff] [blame] | 499 | "; |
Adam Roben | 5483c71 | 2007-06-27 20:59:37 -0700 | [diff] [blame] | 500 | if ($thread && $reply_to) { |
Ryan Anderson | 7ccf792 | 2006-05-29 12:30:12 -0700 | [diff] [blame] | 501 | |
| 502 | $header .= "In-Reply-To: $reply_to\n"; |
| 503 | $header .= "References: $references\n"; |
| 504 | } |
Junio C Hamano | ce91c2f | 2006-10-05 16:36:49 -0700 | [diff] [blame] | 505 | if (@xh) { |
| 506 | $header .= join("\n", @xh) . "\n"; |
| 507 | } |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 508 | |
Robin H. Johnson | c38f024 | 2007-04-25 19:37:20 -0700 | [diff] [blame] | 509 | my @sendmail_parameters = ('-i', @recipients); |
Robin H. Johnson | f073a59 | 2007-04-25 19:37:22 -0700 | [diff] [blame] | 510 | my $raw_from = $from; |
| 511 | $raw_from = $envelope_sender if (defined $envelope_sender); |
| 512 | $raw_from = extract_valid_address($raw_from); |
| 513 | unshift (@sendmail_parameters, |
| 514 | '-f', $raw_from) if(defined $envelope_sender); |
Robin H. Johnson | 8e3d436 | 2007-04-25 19:37:17 -0700 | [diff] [blame] | 515 | |
Matthew Wilcox | 6130259 | 2006-10-10 08:58:23 -0600 | [diff] [blame] | 516 | if ($dry_run) { |
| 517 | # We don't want to send the email. |
| 518 | } elsif ($smtp_server =~ m#^/#) { |
Eric Wong | aca7ad7 | 2006-05-15 02:34:44 -0700 | [diff] [blame] | 519 | my $pid = open my $sm, '|-'; |
| 520 | defined $pid or die $!; |
| 521 | if (!$pid) { |
Robin H. Johnson | 8e3d436 | 2007-04-25 19:37:17 -0700 | [diff] [blame] | 522 | exec($smtp_server, @sendmail_parameters) or die $!; |
Eric Wong | aca7ad7 | 2006-05-15 02:34:44 -0700 | [diff] [blame] | 523 | } |
| 524 | print $sm "$header\n$message"; |
| 525 | close $sm or die $?; |
| 526 | } else { |
Johannes Schindelin | 8784062 | 2006-06-01 00:55:47 +0200 | [diff] [blame] | 527 | require Net::SMTP; |
Eric Wong | aca7ad7 | 2006-05-15 02:34:44 -0700 | [diff] [blame] | 528 | $smtp ||= Net::SMTP->new( $smtp_server ); |
Robin H. Johnson | 2b69bfc | 2007-04-25 19:37:21 -0700 | [diff] [blame] | 529 | $smtp->mail( $raw_from ) or die $smtp->message; |
Eric Wong | aca7ad7 | 2006-05-15 02:34:44 -0700 | [diff] [blame] | 530 | $smtp->to( @recipients ) or die $smtp->message; |
| 531 | $smtp->data or die $smtp->message; |
| 532 | $smtp->datasend("$header\n$message") or die $smtp->message; |
| 533 | $smtp->dataend() or die $smtp->message; |
| 534 | $smtp->ok or die "Failed to send $subject\n".$smtp->message; |
| 535 | } |
Ryan Anderson | 2718435 | 2006-02-05 20:13:52 -0500 | [diff] [blame] | 536 | if ($quiet) { |
Robin H. Johnson | 71c7da9 | 2007-04-25 19:37:16 -0700 | [diff] [blame] | 537 | printf (($dry_run ? "Dry-" : "")."Sent %s\n", $subject); |
Ryan Anderson | 2718435 | 2006-02-05 20:13:52 -0500 | [diff] [blame] | 538 | } else { |
Robin H. Johnson | 71c7da9 | 2007-04-25 19:37:16 -0700 | [diff] [blame] | 539 | print (($dry_run ? "Dry-" : "")."OK. Log says:\nDate: $date\n"); |
Robin H. Johnson | 2b69bfc | 2007-04-25 19:37:21 -0700 | [diff] [blame] | 540 | if ($smtp_server !~ m#^/#) { |
Eric Wong | aca7ad7 | 2006-05-15 02:34:44 -0700 | [diff] [blame] | 541 | print "Server: $smtp_server\n"; |
Robin H. Johnson | 2b69bfc | 2007-04-25 19:37:21 -0700 | [diff] [blame] | 542 | print "MAIL FROM:<$raw_from>\n"; |
| 543 | print "RCPT TO:".join(',',(map { "<$_>" } @recipients))."\n"; |
Eric Wong | aca7ad7 | 2006-05-15 02:34:44 -0700 | [diff] [blame] | 544 | } else { |
Robin H. Johnson | 8e3d436 | 2007-04-25 19:37:17 -0700 | [diff] [blame] | 545 | print "Sendmail: $smtp_server ".join(' ',@sendmail_parameters)."\n"; |
Eric Wong | aca7ad7 | 2006-05-15 02:34:44 -0700 | [diff] [blame] | 546 | } |
| 547 | print "From: $from\nSubject: $subject\nCc: $cc\nTo: $to\n\n"; |
| 548 | if ($smtp) { |
| 549 | print "Result: ", $smtp->code, ' ', |
| 550 | ($smtp->message =~ /\n([^\n]+\n)$/s), "\n"; |
| 551 | } else { |
| 552 | print "Result: OK\n"; |
| 553 | } |
Ryan Anderson | 30d08b3 | 2006-02-02 11:56:06 -0500 | [diff] [blame] | 554 | } |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 555 | } |
| 556 | |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 557 | $reply_to = $initial_reply_to; |
Junio C Hamano | 2186d56 | 2006-05-29 23:53:13 -0700 | [diff] [blame] | 558 | $references = $initial_reply_to || ''; |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 559 | $subject = $initial_subject; |
| 560 | |
| 561 | foreach my $t (@files) { |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 562 | open(F,"<",$t) or die "can't open file $t"; |
| 563 | |
Junio C Hamano | 8a8e623 | 2006-03-23 23:43:52 -0800 | [diff] [blame] | 564 | my $author_not_sender = undef; |
Ryan Anderson | da140f8 | 2006-02-13 03:05:15 -0500 | [diff] [blame] | 565 | @cc = @initial_cc; |
Junio C Hamano | ce91c2f | 2006-10-05 16:36:49 -0700 | [diff] [blame] | 566 | @xh = (); |
Junio C Hamano | e6b0964 | 2006-10-07 03:09:05 -0700 | [diff] [blame] | 567 | my $input_format = undef; |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 568 | my $header_done = 0; |
| 569 | $message = ""; |
| 570 | while(<F>) { |
| 571 | if (!$header_done) { |
Junio C Hamano | e6b0964 | 2006-10-07 03:09:05 -0700 | [diff] [blame] | 572 | if (/^From /) { |
| 573 | $input_format = 'mbox'; |
| 574 | next; |
| 575 | } |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 576 | chomp; |
Junio C Hamano | e6b0964 | 2006-10-07 03:09:05 -0700 | [diff] [blame] | 577 | if (!defined $input_format && /^[-A-Za-z]+:\s/) { |
| 578 | $input_format = 'mbox'; |
| 579 | } |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 580 | |
Junio C Hamano | e6b0964 | 2006-10-07 03:09:05 -0700 | [diff] [blame] | 581 | if (defined $input_format && $input_format eq 'mbox') { |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 582 | if (/^Subject:\s+(.*)$/) { |
| 583 | $subject = $1; |
| 584 | |
| 585 | } elsif (/^(Cc|From):\s+(.*)$/) { |
Kristian Høgsberg | 2cf69cf | 2007-06-11 13:04:40 -0400 | [diff] [blame] | 586 | if (unquote_rfc2047($2) eq $from) { |
| 587 | $from = $2; |
Junio C Hamano | 8a8e623 | 2006-03-23 23:43:52 -0800 | [diff] [blame] | 588 | next if ($suppress_from); |
| 589 | } |
Haavard Skinnemoen | 68d42c4 | 2006-08-23 03:02:59 -0700 | [diff] [blame] | 590 | elsif ($1 eq 'From') { |
Junio C Hamano | 8a8e623 | 2006-03-23 23:43:52 -0800 | [diff] [blame] | 591 | $author_not_sender = $2; |
| 592 | } |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 593 | printf("(mbox) Adding cc: %s from line '%s'\n", |
Ryan Anderson | 2718435 | 2006-02-05 20:13:52 -0500 | [diff] [blame] | 594 | $2, $_) unless $quiet; |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 595 | push @cc, $2; |
| 596 | } |
Eric Wong | 1d6a003 | 2006-10-23 00:46:37 -0700 | [diff] [blame] | 597 | elsif (!/^Date:\s/ && /^[-A-Za-z]+:\s+\S/) { |
Junio C Hamano | ce91c2f | 2006-10-05 16:36:49 -0700 | [diff] [blame] | 598 | push @xh, $_; |
| 599 | } |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 600 | |
| 601 | } else { |
| 602 | # In the traditional |
| 603 | # "send lots of email" format, |
| 604 | # line 1 = cc |
| 605 | # line 2 = subject |
| 606 | # So let's support that, too. |
Junio C Hamano | e6b0964 | 2006-10-07 03:09:05 -0700 | [diff] [blame] | 607 | $input_format = 'lots'; |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 608 | if (@cc == 0) { |
| 609 | printf("(non-mbox) Adding cc: %s from line '%s'\n", |
Ryan Anderson | 2718435 | 2006-02-05 20:13:52 -0500 | [diff] [blame] | 610 | $_, $_) unless $quiet; |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 611 | |
| 612 | push @cc, $_; |
| 613 | |
| 614 | } elsif (!defined $subject) { |
| 615 | $subject = $_; |
| 616 | } |
| 617 | } |
Junio C Hamano | 5825e5b | 2005-07-31 23:05:16 -0700 | [diff] [blame] | 618 | |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 619 | # A whitespace line will terminate the headers |
| 620 | if (m/^\s*$/) { |
| 621 | $header_done = 1; |
| 622 | } |
| 623 | } else { |
| 624 | $message .= $_; |
Adam Roben | 5483c71 | 2007-06-27 20:59:37 -0700 | [diff] [blame] | 625 | if (/^(Signed-off-by|Cc): (.*)$/i && $signed_off_cc) { |
J. Bruce Fields | abec100 | 2007-03-18 21:37:53 -0400 | [diff] [blame] | 626 | my $c = $2; |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 627 | chomp $c; |
| 628 | push @cc, $c; |
| 629 | printf("(sob) Adding cc: %s from line '%s'\n", |
Ryan Anderson | 2718435 | 2006-02-05 20:13:52 -0500 | [diff] [blame] | 630 | $c, $_) unless $quiet; |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 631 | } |
| 632 | } |
| 633 | } |
| 634 | close F; |
Junio C Hamano | 8a8e623 | 2006-03-23 23:43:52 -0800 | [diff] [blame] | 635 | if (defined $author_not_sender) { |
Jürgen Rühle | 374c590 | 2007-01-10 13:36:39 -0800 | [diff] [blame] | 636 | $author_not_sender = unquote_rfc2047($author_not_sender); |
Junio C Hamano | 8a8e623 | 2006-03-23 23:43:52 -0800 | [diff] [blame] | 637 | $message = "From: $author_not_sender\n\n$message"; |
| 638 | } |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 639 | |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 640 | |
| 641 | send_message(); |
| 642 | |
| 643 | # set up for the next message |
Junio C Hamano | bc108f6 | 2006-10-05 16:36:15 -0700 | [diff] [blame] | 644 | if ($chain_reply_to || !defined $reply_to || length($reply_to) == 0) { |
Ryan Anderson | 78488b2 | 2005-07-31 20:04:24 -0400 | [diff] [blame] | 645 | $reply_to = $message_id; |
Ryan Anderson | 7ccf792 | 2006-05-29 12:30:12 -0700 | [diff] [blame] | 646 | if (length $references > 0) { |
YOSHIFUJI Hideaki / 吉藤英明 | a925b89 | 2007-04-06 08:50:24 +0900 | [diff] [blame] | 647 | $references .= "\n $message_id"; |
Ryan Anderson | 7ccf792 | 2006-05-29 12:30:12 -0700 | [diff] [blame] | 648 | } else { |
| 649 | $references = "$message_id"; |
| 650 | } |
Ryan Anderson | 78488b2 | 2005-07-31 20:04:24 -0400 | [diff] [blame] | 651 | } |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 652 | } |
Ryan Anderson | e205735 | 2005-08-02 21:45:22 -0400 | [diff] [blame] | 653 | |
Ryan Anderson | 1f038a0 | 2005-09-05 01:13:07 -0400 | [diff] [blame] | 654 | if ($compose) { |
| 655 | cleanup_compose_files(); |
| 656 | } |
| 657 | |
| 658 | sub cleanup_compose_files() { |
| 659 | unlink($compose_filename, $compose_filename . ".final"); |
| 660 | |
| 661 | } |
| 662 | |
Eric Wong | 4bc87a2 | 2006-03-25 17:20:48 -0800 | [diff] [blame] | 663 | $smtp->quit if $smtp; |
Ryan Anderson | e205735 | 2005-08-02 21:45:22 -0400 | [diff] [blame] | 664 | |
| 665 | sub unique_email_list(@) { |
| 666 | my %seen; |
| 667 | my @emails; |
| 668 | |
| 669 | foreach my $entry (@_) { |
Eric Wong | db3106b | 2006-05-15 02:41:01 -0700 | [diff] [blame] | 670 | if (my $clean = extract_valid_address($entry)) { |
| 671 | $seen{$clean} ||= 0; |
| 672 | next if $seen{$clean}++; |
| 673 | push @emails, $entry; |
| 674 | } else { |
| 675 | print STDERR "W: unable to extract a valid address", |
| 676 | " from: $entry\n"; |
| 677 | } |
Ryan Anderson | e205735 | 2005-08-02 21:45:22 -0400 | [diff] [blame] | 678 | } |
| 679 | return @emails; |
| 680 | } |