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