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