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; |
Wu Fengguang | 0e73b3e | 2008-12-19 16:10:10 +0800 | [diff] [blame] | 23 | use Text::ParseWords; |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 24 | use Data::Dumper; |
Sean Estabrooks | 412876d | 2007-08-17 17:38:25 -0400 | [diff] [blame] | 25 | use Term::ANSIColor; |
Jay Soffian | eed6ca7 | 2009-02-14 23:32:13 -0500 | [diff] [blame] | 26 | use File::Temp qw/ tempdir tempfile /; |
Pierre Habouzit | 5df9fcf | 2008-11-11 00:54:00 +0100 | [diff] [blame] | 27 | use Error qw(:try); |
Petr Baudis | 3cb8caf | 2006-07-03 22:47:58 +0200 | [diff] [blame] | 28 | use Git; |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 29 | |
Pierre Habouzit | 5df9fcf | 2008-11-11 00:54:00 +0100 | [diff] [blame] | 30 | Getopt::Long::Configure qw/ pass_through /; |
| 31 | |
Junio C Hamano | 280242d | 2006-07-02 16:03:59 -0700 | [diff] [blame] | 32 | package FakeTerm; |
| 33 | sub new { |
| 34 | my ($class, $reason) = @_; |
| 35 | return bless \$reason, shift; |
| 36 | } |
| 37 | sub readline { |
| 38 | my $self = shift; |
| 39 | die "Cannot use readline on FakeTerm: $$self"; |
| 40 | } |
| 41 | package main; |
| 42 | |
Michael Coleman | 1b0baf1 | 2007-02-27 22:47:54 -0600 | [diff] [blame] | 43 | |
| 44 | sub usage { |
| 45 | print <<EOT; |
Pierre Habouzit | 5df9fcf | 2008-11-11 00:54:00 +0100 | [diff] [blame] | 46 | git send-email [options] <file | directory | rev-list options > |
Michael Witten | 4ed62b0 | 2008-09-30 07:58:30 -0500 | [diff] [blame] | 47 | |
| 48 | Composing: |
| 49 | --from <str> * Email From: |
| 50 | --to <str> * Email To: |
| 51 | --cc <str> * Email Cc: |
| 52 | --bcc <str> * Email Bcc: |
| 53 | --subject <str> * Email "Subject:" |
| 54 | --in-reply-to <str> * Email "In-Reply-To:" |
Pierre Habouzit | 8fd5bb7 | 2008-11-11 00:54:01 +0100 | [diff] [blame] | 55 | --annotate * Review each patch that will be sent in an editor. |
Michael Witten | 4ed62b0 | 2008-09-30 07:58:30 -0500 | [diff] [blame] | 56 | --compose * Open an editor for introduction. |
| 57 | |
| 58 | Sending: |
| 59 | --envelope-sender <str> * Email envelope sender. |
| 60 | --smtp-server <str:int> * Outgoing SMTP server to use. The port |
| 61 | is optional. Default 'localhost'. |
| 62 | --smtp-server-port <int> * Outgoing SMTP server port. |
| 63 | --smtp-user <str> * Username for SMTP-AUTH. |
| 64 | --smtp-pass <str> * Password for SMTP-AUTH; not necessary. |
| 65 | --smtp-encryption <str> * tls or ssl; anything else disables. |
| 66 | --smtp-ssl * Deprecated. Use '--smtp-encryption ssl'. |
| 67 | |
| 68 | Automating: |
| 69 | --identity <str> * Use the sendemail.<id> options. |
| 70 | --cc-cmd <str> * Email Cc: via `<str> \$patch_path` |
Jay Soffian | 3531e27 | 2009-02-14 23:32:15 -0500 | [diff] [blame] | 71 | --suppress-cc <str> * author, self, sob, cc, cccmd, body, bodycc, all. |
| 72 | --[no-]signed-off-by-cc * Send to Signed-off-by: addresses. Default on. |
Michael Witten | 4ed62b0 | 2008-09-30 07:58:30 -0500 | [diff] [blame] | 73 | --[no-]suppress-from * Send to self. Default off. |
| 74 | --[no-]chain-reply-to * Chain In-Reply-To: fields. Default on. |
| 75 | --[no-]thread * Use In-Reply-To: field. Default on. |
| 76 | |
| 77 | Administering: |
Jay Soffian | c1f2aa4 | 2009-03-02 23:52:18 -0500 | [diff] [blame] | 78 | --confirm <str> * Confirm recipients before sending; |
| 79 | auto, cc, compose, always, or never. |
Michael Witten | 4ed62b0 | 2008-09-30 07:58:30 -0500 | [diff] [blame] | 80 | --quiet * Output one line of info per email. |
| 81 | --dry-run * Don't actually send the emails. |
| 82 | --[no-]validate * Perform patch sanity checks. Default on. |
Pierre Habouzit | 5df9fcf | 2008-11-11 00:54:00 +0100 | [diff] [blame] | 83 | --[no-]format-patch * understand any non optional arguments as |
| 84 | `git format-patch` ones. |
Jeff King | c764a0c | 2008-01-18 09:20:10 -0500 | [diff] [blame] | 85 | |
Michael Coleman | 1b0baf1 | 2007-02-27 22:47:54 -0600 | [diff] [blame] | 86 | EOT |
| 87 | exit(1); |
| 88 | } |
| 89 | |
Eric Wong | 4bc87a2 | 2006-03-25 17:20:48 -0800 | [diff] [blame] | 90 | # most mail servers generate the Date: header, but not all... |
Jakub Narebski | 6bdca89 | 2006-07-07 20:57:55 +0200 | [diff] [blame] | 91 | sub format_2822_time { |
| 92 | my ($time) = @_; |
| 93 | my @localtm = localtime($time); |
| 94 | my @gmttm = gmtime($time); |
| 95 | my $localmin = $localtm[1] + $localtm[2] * 60; |
| 96 | my $gmtmin = $gmttm[1] + $gmttm[2] * 60; |
| 97 | if ($localtm[0] != $gmttm[0]) { |
| 98 | die "local zone differs from GMT by a non-minute interval\n"; |
| 99 | } |
| 100 | if ((($gmttm[6] + 1) % 7) == $localtm[6]) { |
| 101 | $localmin += 1440; |
| 102 | } elsif ((($gmttm[6] - 1) % 7) == $localtm[6]) { |
| 103 | $localmin -= 1440; |
| 104 | } elsif ($gmttm[6] != $localtm[6]) { |
| 105 | die "local time offset greater than or equal to 24 hours\n"; |
| 106 | } |
| 107 | my $offset = $localmin - $gmtmin; |
| 108 | my $offhour = $offset / 60; |
| 109 | my $offmin = abs($offset % 60); |
| 110 | if (abs($offhour) >= 24) { |
| 111 | die ("local time offset greater than or equal to 24 hours\n"); |
| 112 | } |
| 113 | |
| 114 | return sprintf("%s, %2d %s %d %02d:%02d:%02d %s%02d%02d", |
| 115 | qw(Sun Mon Tue Wed Thu Fri Sat)[$localtm[6]], |
| 116 | $localtm[3], |
| 117 | qw(Jan Feb Mar Apr May Jun |
| 118 | Jul Aug Sep Oct Nov Dec)[$localtm[4]], |
| 119 | $localtm[5]+1900, |
| 120 | $localtm[2], |
| 121 | $localtm[1], |
| 122 | $localtm[0], |
| 123 | ($offset >= 0) ? '+' : '-', |
| 124 | abs($offhour), |
| 125 | $offmin, |
| 126 | ); |
| 127 | } |
Eric Wong | 4bc87a2 | 2006-03-25 17:20:48 -0800 | [diff] [blame] | 128 | |
Eric Wong | 567ffeb | 2006-03-25 16:47:12 -0800 | [diff] [blame] | 129 | my $have_email_valid = eval { require Email::Valid; 1 }; |
Jay Soffian | 5012699 | 2009-02-14 23:32:14 -0500 | [diff] [blame] | 130 | my $have_mail_address = eval { require Mail::Address; 1 }; |
Eric Wong | 4bc87a2 | 2006-03-25 17:20:48 -0800 | [diff] [blame] | 131 | my $smtp; |
Wincent Colaiuta | 5f5b611 | 2007-11-21 13:35:05 +0100 | [diff] [blame] | 132 | my $auth; |
Eric Wong | 4bc87a2 | 2006-03-25 17:20:48 -0800 | [diff] [blame] | 133 | |
Ryan Anderson | e205735 | 2005-08-02 21:45:22 -0400 | [diff] [blame] | 134 | sub unique_email_list(@); |
Ryan Anderson | 1f038a0 | 2005-09-05 01:13:07 -0400 | [diff] [blame] | 135 | sub cleanup_compose_files(); |
| 136 | |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 137 | # Variables we fill in automatically, or via prompting: |
Junio C Hamano | ce91c2f | 2006-10-05 16:36:49 -0700 | [diff] [blame] | 138 | my (@to,@cc,@initial_cc,@bcclist,@xh, |
Pierre Habouzit | 8fd5bb7 | 2008-11-11 00:54:01 +0100 | [diff] [blame] | 139 | $initial_reply_to,$initial_subject,@files, |
| 140 | $author,$sender,$smtp_authpass,$annotate,$compose,$time); |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 141 | |
Robin H. Johnson | f073a59 | 2007-04-25 19:37:22 -0700 | [diff] [blame] | 142 | my $envelope_sender; |
Ryan Anderson | 78488b2 | 2005-07-31 20:04:24 -0400 | [diff] [blame] | 143 | |
Ryan Anderson | 9133261 | 2005-07-31 20:04:24 -0400 | [diff] [blame] | 144 | # Example reply to: |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 145 | #$initial_reply_to = ''; #<20050203173208.GA23964@foobar.com>'; |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 146 | |
Frank Lichtenheld | ad79c02 | 2008-03-14 18:29:30 +0100 | [diff] [blame] | 147 | my $repo = eval { Git->repository() }; |
| 148 | my @repo = $repo ? ($repo) : (); |
Junio C Hamano | 280242d | 2006-07-02 16:03:59 -0700 | [diff] [blame] | 149 | my $term = eval { |
Jay Soffian | 0fb7fc7 | 2008-02-21 19:16:04 -0500 | [diff] [blame] | 150 | $ENV{"GIT_SEND_EMAIL_NOTTY"} |
| 151 | ? new Term::ReadLine 'git-send-email', \*STDIN, \*STDOUT |
| 152 | : new Term::ReadLine 'git-send-email'; |
Junio C Hamano | 280242d | 2006-07-02 16:03:59 -0700 | [diff] [blame] | 153 | }; |
| 154 | if ($@) { |
| 155 | $term = new FakeTerm "$@: going non-interactive"; |
| 156 | } |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 157 | |
Adam Roben | 5483c71 | 2007-06-27 20:59:37 -0700 | [diff] [blame] | 158 | # Behavior modification variables |
| 159 | my ($quiet, $dry_run) = (0, 0); |
Pierre Habouzit | 5df9fcf | 2008-11-11 00:54:00 +0100 | [diff] [blame] | 160 | my $format_patch; |
Jay Soffian | afe756c | 2009-02-23 13:51:37 -0500 | [diff] [blame] | 161 | my $compose_filename; |
Adam Roben | 5483c71 | 2007-06-27 20:59:37 -0700 | [diff] [blame] | 162 | |
Pierre Habouzit | 8fd5bb7 | 2008-11-11 00:54:01 +0100 | [diff] [blame] | 163 | # Handle interactive edition of files. |
| 164 | my $multiedit; |
Jonathan Nieder | b4479f0 | 2009-10-30 20:42:34 -0500 | [diff] [blame] | 165 | my $editor = Git::command_oneline('var', 'GIT_EDITOR'); |
| 166 | |
Pierre Habouzit | 8fd5bb7 | 2008-11-11 00:54:01 +0100 | [diff] [blame] | 167 | sub do_edit { |
| 168 | if (defined($multiedit) && !$multiedit) { |
Pierre Habouzit | beece9d | 2008-11-11 00:54:02 +0100 | [diff] [blame] | 169 | map { |
| 170 | system('sh', '-c', $editor.' "$@"', $editor, $_); |
| 171 | if (($? & 127) || ($? >> 8)) { |
| 172 | die("the editor exited uncleanly, aborting everything"); |
| 173 | } |
| 174 | } @_; |
Pierre Habouzit | 8fd5bb7 | 2008-11-11 00:54:01 +0100 | [diff] [blame] | 175 | } else { |
| 176 | system('sh', '-c', $editor.' "$@"', $editor, @_); |
Pierre Habouzit | beece9d | 2008-11-11 00:54:02 +0100 | [diff] [blame] | 177 | if (($? & 127) || ($? >> 8)) { |
| 178 | die("the editor exited uncleanly, aborting everything"); |
| 179 | } |
Pierre Habouzit | 8fd5bb7 | 2008-11-11 00:54:01 +0100 | [diff] [blame] | 180 | } |
| 181 | } |
Adam Roben | 5483c71 | 2007-06-27 20:59:37 -0700 | [diff] [blame] | 182 | |
| 183 | # Variables with corresponding config settings |
Michael Witten | ddc3d4f | 2008-09-30 07:58:32 -0500 | [diff] [blame] | 184 | my ($thread, $chain_reply_to, $suppress_from, $signed_off_by_cc, $cc_cmd); |
Thomas Rast | f6bebd1 | 2008-06-25 21:42:43 +0200 | [diff] [blame] | 185 | my ($smtp_server, $smtp_server_port, $smtp_authuser, $smtp_encryption); |
Junio C Hamano | 44b2476 | 2007-09-25 17:27:54 -0700 | [diff] [blame] | 186 | my ($identity, $aliasfiletype, @alias_files, @smtp_host_parts); |
Jay Soffian | c1f2aa4 | 2009-03-02 23:52:18 -0500 | [diff] [blame] | 187 | my ($validate, $confirm); |
David Brown | 6564828 | 2007-12-25 19:56:29 -0800 | [diff] [blame] | 188 | my (@suppress_cc); |
Adam Roben | 5483c71 | 2007-06-27 20:59:37 -0700 | [diff] [blame] | 189 | |
Nanako Shiraishi | 528fb08 | 2009-11-29 12:24:48 +0900 | [diff] [blame] | 190 | my $not_set_by_user = "true but not set by the user"; |
| 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], |
Nanako Shiraishi | 528fb08 | 2009-11-29 12:24:48 +0900 | [diff] [blame] | 194 | "chainreplyto" => [\$chain_reply_to, $not_set_by_user], |
David Brown | 6564828 | 2007-12-25 19:56:29 -0800 | [diff] [blame] | 195 | "suppressfrom" => [\$suppress_from, undef], |
Michael Witten | ddc3d4f | 2008-09-30 07:58:32 -0500 | [diff] [blame] | 196 | "signedoffbycc" => [\$signed_off_by_cc, undef], |
| 197 | "signedoffcc" => [\$signed_off_by_cc, undef], # Deprecated |
Michael Witten | dbf5e1e | 2008-09-30 07:58:27 -0500 | [diff] [blame] | 198 | "validate" => [\$validate, 1], |
Adam Roben | e46f7a0 | 2007-06-26 15:48:30 -0700 | [diff] [blame] | 199 | ); |
| 200 | |
Douglas Stockwell | 34cc60c | 2007-09-03 03:06:25 +0900 | [diff] [blame] | 201 | my %config_settings = ( |
| 202 | "smtpserver" => \$smtp_server, |
Junio C Hamano | 44b2476 | 2007-09-25 17:27:54 -0700 | [diff] [blame] | 203 | "smtpserverport" => \$smtp_server_port, |
Douglas Stockwell | 34cc60c | 2007-09-03 03:06:25 +0900 | [diff] [blame] | 204 | "smtpuser" => \$smtp_authuser, |
| 205 | "smtppass" => \$smtp_authpass, |
Miklos Vajna | 2db9b49 | 2007-10-01 14:42:42 +0200 | [diff] [blame] | 206 | "to" => \@to, |
Miklos Vajna | 5f8b9fc | 2008-04-27 14:14:58 +0200 | [diff] [blame] | 207 | "cc" => \@initial_cc, |
Douglas Stockwell | 34cc60c | 2007-09-03 03:06:25 +0900 | [diff] [blame] | 208 | "cccmd" => \$cc_cmd, |
| 209 | "aliasfiletype" => \$aliasfiletype, |
| 210 | "bcc" => \@bcclist, |
| 211 | "aliasesfile" => \@alias_files, |
David Brown | 6564828 | 2007-12-25 19:56:29 -0800 | [diff] [blame] | 212 | "suppresscc" => \@suppress_cc, |
Ask Bjørn Hansen | 9f7820a | 2008-06-07 00:33:42 -0700 | [diff] [blame] | 213 | "envelopesender" => \$envelope_sender, |
Pierre Habouzit | 8fd5bb7 | 2008-11-11 00:54:01 +0100 | [diff] [blame] | 214 | "multiedit" => \$multiedit, |
Jay Soffian | c1f2aa4 | 2009-03-02 23:52:18 -0500 | [diff] [blame] | 215 | "confirm" => \$confirm, |
Trent Piepho | 09caa24 | 2009-05-12 15:48:56 -0700 | [diff] [blame] | 216 | "from" => \$sender, |
Douglas Stockwell | 34cc60c | 2007-09-03 03:06:25 +0900 | [diff] [blame] | 217 | ); |
Avi Kivity | 4a62d3f | 2007-03-11 19:19:44 +0200 | [diff] [blame] | 218 | |
Nanako Shiraishi | 528fb08 | 2009-11-29 12:24:48 +0900 | [diff] [blame] | 219 | # Help users prepare for 1.7.0 |
| 220 | sub chain_reply_to { |
| 221 | if (defined $chain_reply_to && |
| 222 | $chain_reply_to eq $not_set_by_user) { |
| 223 | print STDERR |
| 224 | "In git 1.7.0, the default will be changed to --no-chain-reply-to\n" . |
| 225 | "Set sendemail.chainreplyto configuration variable to true if\n" . |
| 226 | "you want to keep --chain-reply-to as your default.\n"; |
| 227 | $chain_reply_to = 1; |
| 228 | } |
| 229 | return $chain_reply_to; |
| 230 | } |
| 231 | |
Michael Witten | 8742997 | 2008-02-03 19:53:57 -0500 | [diff] [blame] | 232 | # Handle Uncouth Termination |
| 233 | sub signal_handler { |
| 234 | |
| 235 | # Make text normal |
| 236 | print color("reset"), "\n"; |
| 237 | |
| 238 | # SMTP password masked |
| 239 | system "stty echo"; |
| 240 | |
| 241 | # tmp files from --compose |
Jay Soffian | afe756c | 2009-02-23 13:51:37 -0500 | [diff] [blame] | 242 | if (defined $compose_filename) { |
| 243 | if (-e $compose_filename) { |
| 244 | print "'$compose_filename' contains an intermediate version of the email you were composing.\n"; |
| 245 | } |
| 246 | if (-e ($compose_filename . ".final")) { |
| 247 | print "'$compose_filename.final' contains the composed email.\n" |
| 248 | } |
Michael Witten | 8742997 | 2008-02-03 19:53:57 -0500 | [diff] [blame] | 249 | } |
| 250 | |
| 251 | exit; |
| 252 | }; |
| 253 | |
| 254 | $SIG{TERM} = \&signal_handler; |
| 255 | $SIG{INT} = \&signal_handler; |
| 256 | |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 257 | # Begin by accumulating all the variables (defined above), that we will end up |
| 258 | # needing, first, from the command line: |
| 259 | |
Uwe Kleine-König | 94638f8 | 2007-08-09 15:27:58 +0200 | [diff] [blame] | 260 | my $rc = GetOptions("sender|from=s" => \$sender, |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 261 | "in-reply-to=s" => \$initial_reply_to, |
| 262 | "subject=s" => \$initial_subject, |
| 263 | "to=s" => \@to, |
Ryan Anderson | da140f8 | 2006-02-13 03:05:15 -0500 | [diff] [blame] | 264 | "cc=s" => \@initial_cc, |
Ryan Anderson | 5806324 | 2006-05-29 12:30:13 -0700 | [diff] [blame] | 265 | "bcc=s" => \@bcclist, |
Ryan Anderson | 78488b2 | 2005-07-31 20:04:24 -0400 | [diff] [blame] | 266 | "chain-reply-to!" => \$chain_reply_to, |
Ryan Anderson | 3342d85 | 2005-07-31 20:04:24 -0400 | [diff] [blame] | 267 | "smtp-server=s" => \$smtp_server, |
Junio C Hamano | 44b2476 | 2007-09-25 17:27:54 -0700 | [diff] [blame] | 268 | "smtp-server-port=s" => \$smtp_server_port, |
Douglas Stockwell | 34cc60c | 2007-09-03 03:06:25 +0900 | [diff] [blame] | 269 | "smtp-user=s" => \$smtp_authuser, |
Michael Witten | 2363d74 | 2008-02-03 19:53:56 -0500 | [diff] [blame] | 270 | "smtp-pass:s" => \$smtp_authpass, |
Thomas Rast | f6bebd1 | 2008-06-25 21:42:43 +0200 | [diff] [blame] | 271 | "smtp-ssl" => sub { $smtp_encryption = 'ssl' }, |
| 272 | "smtp-encryption=s" => \$smtp_encryption, |
Douglas Stockwell | 34cc60c | 2007-09-03 03:06:25 +0900 | [diff] [blame] | 273 | "identity=s" => \$identity, |
Pierre Habouzit | 8fd5bb7 | 2008-11-11 00:54:01 +0100 | [diff] [blame] | 274 | "annotate" => \$annotate, |
Ryan Anderson | 1f038a0 | 2005-09-05 01:13:07 -0400 | [diff] [blame] | 275 | "compose" => \$compose, |
Ryan Anderson | 30d08b3 | 2006-02-02 11:56:06 -0500 | [diff] [blame] | 276 | "quiet" => \$quiet, |
Joe Perches | 324a8bd | 2007-08-17 18:51:12 -0700 | [diff] [blame] | 277 | "cc-cmd=s" => \$cc_cmd, |
Adam Roben | 5483c71 | 2007-06-27 20:59:37 -0700 | [diff] [blame] | 278 | "suppress-from!" => \$suppress_from, |
David Brown | 6564828 | 2007-12-25 19:56:29 -0800 | [diff] [blame] | 279 | "suppress-cc=s" => \@suppress_cc, |
Michael Witten | ddc3d4f | 2008-09-30 07:58:32 -0500 | [diff] [blame] | 280 | "signed-off-cc|signed-off-by-cc!" => \$signed_off_by_cc, |
Jay Soffian | c1f2aa4 | 2009-03-02 23:52:18 -0500 | [diff] [blame] | 281 | "confirm=s" => \$confirm, |
Matthew Wilcox | 6130259 | 2006-10-10 08:58:23 -0600 | [diff] [blame] | 282 | "dry-run" => \$dry_run, |
Robin H. Johnson | f073a59 | 2007-04-25 19:37:22 -0700 | [diff] [blame] | 283 | "envelope-sender=s" => \$envelope_sender, |
Adam Roben | 5483c71 | 2007-06-27 20:59:37 -0700 | [diff] [blame] | 284 | "thread!" => \$thread, |
Michael Witten | dbf5e1e | 2008-09-30 07:58:27 -0500 | [diff] [blame] | 285 | "validate!" => \$validate, |
Pierre Habouzit | 5df9fcf | 2008-11-11 00:54:00 +0100 | [diff] [blame] | 286 | "format-patch!" => \$format_patch, |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 287 | ); |
| 288 | |
Michael Coleman | 1b0baf1 | 2007-02-27 22:47:54 -0600 | [diff] [blame] | 289 | unless ($rc) { |
| 290 | usage(); |
| 291 | } |
| 292 | |
Jay Soffian | eed6ca7 | 2009-02-14 23:32:13 -0500 | [diff] [blame] | 293 | die "Cannot run git format-patch from outside a repository\n" |
| 294 | if $format_patch and not $repo; |
| 295 | |
Douglas Stockwell | 34cc60c | 2007-09-03 03:06:25 +0900 | [diff] [blame] | 296 | # Now, let's fill any that aren't set in with defaults: |
| 297 | |
| 298 | sub read_config { |
| 299 | my ($prefix) = @_; |
| 300 | |
| 301 | foreach my $setting (keys %config_bool_settings) { |
| 302 | my $target = $config_bool_settings{$setting}->[0]; |
Frank Lichtenheld | ad79c02 | 2008-03-14 18:29:30 +0100 | [diff] [blame] | 303 | $$target = Git::config_bool(@repo, "$prefix.$setting") unless (defined $$target); |
Douglas Stockwell | 34cc60c | 2007-09-03 03:06:25 +0900 | [diff] [blame] | 304 | } |
| 305 | |
| 306 | foreach my $setting (keys %config_settings) { |
| 307 | my $target = $config_settings{$setting}; |
| 308 | if (ref($target) eq "ARRAY") { |
| 309 | unless (@$target) { |
Frank Lichtenheld | ad79c02 | 2008-03-14 18:29:30 +0100 | [diff] [blame] | 310 | my @values = Git::config(@repo, "$prefix.$setting"); |
Douglas Stockwell | 34cc60c | 2007-09-03 03:06:25 +0900 | [diff] [blame] | 311 | @$target = @values if (@values && defined $values[0]); |
| 312 | } |
| 313 | } |
| 314 | else { |
Frank Lichtenheld | ad79c02 | 2008-03-14 18:29:30 +0100 | [diff] [blame] | 315 | $$target = Git::config(@repo, "$prefix.$setting") unless (defined $$target); |
Douglas Stockwell | 34cc60c | 2007-09-03 03:06:25 +0900 | [diff] [blame] | 316 | } |
| 317 | } |
Thomas Rast | f6bebd1 | 2008-06-25 21:42:43 +0200 | [diff] [blame] | 318 | |
| 319 | if (!defined $smtp_encryption) { |
| 320 | my $enc = Git::config(@repo, "$prefix.smtpencryption"); |
| 321 | if (defined $enc) { |
| 322 | $smtp_encryption = $enc; |
| 323 | } elsif (Git::config_bool(@repo, "$prefix.smtpssl")) { |
| 324 | $smtp_encryption = 'ssl'; |
| 325 | } |
| 326 | } |
Douglas Stockwell | 34cc60c | 2007-09-03 03:06:25 +0900 | [diff] [blame] | 327 | } |
| 328 | |
| 329 | # read configuration from [sendemail "$identity"], fall back on [sendemail] |
Frank Lichtenheld | ad79c02 | 2008-03-14 18:29:30 +0100 | [diff] [blame] | 330 | $identity = Git::config(@repo, "sendemail.identity") unless (defined $identity); |
Douglas Stockwell | 34cc60c | 2007-09-03 03:06:25 +0900 | [diff] [blame] | 331 | read_config("sendemail.$identity") if (defined $identity); |
| 332 | read_config("sendemail"); |
| 333 | |
| 334 | # fall back on builtin bool defaults |
| 335 | foreach my $setting (values %config_bool_settings) { |
| 336 | ${$setting->[0]} = $setting->[1] unless (defined (${$setting->[0]})); |
| 337 | } |
| 338 | |
Thomas Rast | fa835cd | 2008-06-26 23:03:21 +0200 | [diff] [blame] | 339 | # 'default' encryption is none -- this only prevents a warning |
| 340 | $smtp_encryption = '' unless (defined $smtp_encryption); |
| 341 | |
David Brown | 6564828 | 2007-12-25 19:56:29 -0800 | [diff] [blame] | 342 | # Set CC suppressions |
| 343 | my(%suppress_cc); |
| 344 | if (@suppress_cc) { |
| 345 | foreach my $entry (@suppress_cc) { |
| 346 | die "Unknown --suppress-cc field: '$entry'\n" |
Jay Soffian | 3531e27 | 2009-02-14 23:32:15 -0500 | [diff] [blame] | 347 | unless $entry =~ /^(all|cccmd|cc|author|self|sob|body|bodycc)$/; |
David Brown | 6564828 | 2007-12-25 19:56:29 -0800 | [diff] [blame] | 348 | $suppress_cc{$entry} = 1; |
| 349 | } |
| 350 | } |
| 351 | |
| 352 | if ($suppress_cc{'all'}) { |
Paolo Bonzini | cb8a9bd | 2009-06-18 14:31:32 +0200 | [diff] [blame] | 353 | foreach my $entry (qw (cccmd cc author self sob body bodycc)) { |
David Brown | 6564828 | 2007-12-25 19:56:29 -0800 | [diff] [blame] | 354 | $suppress_cc{$entry} = 1; |
| 355 | } |
| 356 | delete $suppress_cc{'all'}; |
| 357 | } |
| 358 | |
| 359 | # If explicit old-style ones are specified, they trump --suppress-cc. |
| 360 | $suppress_cc{'self'} = $suppress_from if defined $suppress_from; |
Michael Witten | ddc3d4f | 2008-09-30 07:58:32 -0500 | [diff] [blame] | 361 | $suppress_cc{'sob'} = !$signed_off_by_cc if defined $signed_off_by_cc; |
David Brown | 6564828 | 2007-12-25 19:56:29 -0800 | [diff] [blame] | 362 | |
Jay Soffian | 3531e27 | 2009-02-14 23:32:15 -0500 | [diff] [blame] | 363 | if ($suppress_cc{'body'}) { |
| 364 | foreach my $entry (qw (sob bodycc)) { |
| 365 | $suppress_cc{$entry} = 1; |
| 366 | } |
| 367 | delete $suppress_cc{'body'}; |
| 368 | } |
| 369 | |
Jay Soffian | c1f2aa4 | 2009-03-02 23:52:18 -0500 | [diff] [blame] | 370 | # Set confirm's default value |
| 371 | my $confirm_unconfigured = !defined $confirm; |
| 372 | if ($confirm_unconfigured) { |
| 373 | $confirm = scalar %suppress_cc ? 'compose' : 'auto'; |
| 374 | }; |
| 375 | die "Unknown --confirm setting: '$confirm'\n" |
| 376 | unless $confirm =~ /^(?:auto|cc|compose|always|never)/; |
| 377 | |
David Brown | 6564828 | 2007-12-25 19:56:29 -0800 | [diff] [blame] | 378 | # Debugging, print out the suppressions. |
| 379 | if (0) { |
| 380 | print "suppressions:\n"; |
| 381 | foreach my $entry (keys %suppress_cc) { |
| 382 | printf " %-5s -> $suppress_cc{$entry}\n", $entry; |
| 383 | } |
| 384 | } |
| 385 | |
Frank Lichtenheld | ad79c02 | 2008-03-14 18:29:30 +0100 | [diff] [blame] | 386 | my ($repoauthor, $repocommitter); |
| 387 | ($repoauthor) = Git::ident_person(@repo, 'author'); |
| 388 | ($repocommitter) = Git::ident_person(@repo, 'committer'); |
Douglas Stockwell | 34cc60c | 2007-09-03 03:06:25 +0900 | [diff] [blame] | 389 | |
Eric W. Biederman | 79ee555 | 2006-06-21 07:17:31 -0600 | [diff] [blame] | 390 | # Verify the user input |
| 391 | |
| 392 | foreach my $entry (@to) { |
| 393 | die "Comma in --to entry: $entry'\n" unless $entry !~ m/,/; |
| 394 | } |
| 395 | |
| 396 | foreach my $entry (@initial_cc) { |
| 397 | die "Comma in --cc entry: $entry'\n" unless $entry !~ m/,/; |
| 398 | } |
| 399 | |
| 400 | foreach my $entry (@bcclist) { |
| 401 | die "Comma in --bcclist entry: $entry'\n" unless $entry !~ m/,/; |
| 402 | } |
| 403 | |
Jay Soffian | 5012699 | 2009-02-14 23:32:14 -0500 | [diff] [blame] | 404 | sub parse_address_line { |
| 405 | if ($have_mail_address) { |
| 406 | return map { $_->format } Mail::Address->parse($_[0]); |
| 407 | } else { |
| 408 | return split_addrs($_[0]); |
| 409 | } |
| 410 | } |
| 411 | |
Wu Fengguang | 0e73b3e | 2008-12-19 16:10:10 +0800 | [diff] [blame] | 412 | sub split_addrs { |
Junio C Hamano | 2f0e7cb | 2008-12-21 01:57:59 -0800 | [diff] [blame] | 413 | return quotewords('\s*,\s*', 1, @_); |
Wu Fengguang | 0e73b3e | 2008-12-19 16:10:10 +0800 | [diff] [blame] | 414 | } |
| 415 | |
Eric Wong | 994d6c6 | 2006-05-14 19:13:44 -0700 | [diff] [blame] | 416 | my %aliases; |
Eric Wong | 994d6c6 | 2006-05-14 19:13:44 -0700 | [diff] [blame] | 417 | my %parse_alias = ( |
| 418 | # multiline formats can be supported in the future |
| 419 | mutt => sub { my $fh = shift; while (<$fh>) { |
Felipe Contreras | ffc01f9 | 2009-09-30 17:49:36 +0300 | [diff] [blame] | 420 | if (/^\s*alias\s+(?:-group\s+\S+\s+)*(\S+)\s+(.*)$/) { |
Eric Wong | 994d6c6 | 2006-05-14 19:13:44 -0700 | [diff] [blame] | 421 | my ($alias, $addr) = ($1, $2); |
| 422 | $addr =~ s/#.*$//; # mutt allows # comments |
| 423 | # commas delimit multiple addresses |
Wu Fengguang | 0e73b3e | 2008-12-19 16:10:10 +0800 | [diff] [blame] | 424 | $aliases{$alias} = [ split_addrs($addr) ]; |
Eric Wong | 994d6c6 | 2006-05-14 19:13:44 -0700 | [diff] [blame] | 425 | }}}, |
| 426 | mailrc => sub { my $fh = shift; while (<$fh>) { |
| 427 | if (/^alias\s+(\S+)\s+(.*)$/) { |
| 428 | # spaces delimit multiple addresses |
Eric W. Biederman | fe87c92 | 2009-05-20 19:45:53 -0700 | [diff] [blame] | 429 | $aliases{$1} = [ quotewords('\s+', 0, $2) ]; |
Eric Wong | 994d6c6 | 2006-05-14 19:13:44 -0700 | [diff] [blame] | 430 | }}}, |
Trent Piepho | 73c427e | 2008-11-25 18:55:00 -0800 | [diff] [blame] | 431 | pine => sub { my $fh = shift; my $f='\t[^\t]*'; |
| 432 | for (my $x = ''; defined($x); $x = $_) { |
| 433 | chomp $x; |
| 434 | $x .= $1 while(defined($_ = <$fh>) && /^ +(.*)$/); |
| 435 | $x =~ /^(\S+)$f\t\(?([^\t]+?)\)?(:?$f){0,2}$/ or next; |
Wu Fengguang | 0e73b3e | 2008-12-19 16:10:10 +0800 | [diff] [blame] | 436 | $aliases{$1} = [ split_addrs($2) ]; |
Trent Piepho | 73c427e | 2008-11-25 18:55:00 -0800 | [diff] [blame] | 437 | }}, |
Bill Pemberton | 7613ea3 | 2009-04-22 09:41:29 -0400 | [diff] [blame] | 438 | elm => sub { my $fh = shift; |
| 439 | while (<$fh>) { |
| 440 | if (/^(\S+)\s+=\s+[^=]+=\s(\S+)/) { |
| 441 | my ($alias, $addr) = ($1, $2); |
| 442 | $aliases{$alias} = [ split_addrs($addr) ]; |
| 443 | } |
| 444 | } }, |
| 445 | |
Eric Wong | 994d6c6 | 2006-05-14 19:13:44 -0700 | [diff] [blame] | 446 | gnus => sub { my $fh = shift; while (<$fh>) { |
| 447 | if (/\(define-mail-alias\s+"(\S+?)"\s+"(\S+?)"\)/) { |
| 448 | $aliases{$1} = [ $2 ]; |
| 449 | }}} |
| 450 | ); |
| 451 | |
Petr Baudis | 3cb8caf | 2006-07-03 22:47:58 +0200 | [diff] [blame] | 452 | if (@alias_files and $aliasfiletype and defined $parse_alias{$aliasfiletype}) { |
Eric Wong | 994d6c6 | 2006-05-14 19:13:44 -0700 | [diff] [blame] | 453 | foreach my $file (@alias_files) { |
| 454 | open my $fh, '<', $file or die "opening $file: $!\n"; |
| 455 | $parse_alias{$aliasfiletype}->($fh); |
| 456 | close $fh; |
| 457 | } |
| 458 | } |
| 459 | |
Uwe Kleine-König | 94638f8 | 2007-08-09 15:27:58 +0200 | [diff] [blame] | 460 | ($sender) = expand_aliases($sender) if defined $sender; |
Michael Hendricks | ae740a5 | 2007-07-04 19:11:36 -0600 | [diff] [blame] | 461 | |
Pierre Habouzit | 5df9fcf | 2008-11-11 00:54:00 +0100 | [diff] [blame] | 462 | # returns 1 if the conflict must be solved using it as a format-patch argument |
| 463 | sub check_file_rev_conflict($) { |
Jay Soffian | eed6ca7 | 2009-02-14 23:32:13 -0500 | [diff] [blame] | 464 | return unless $repo; |
Pierre Habouzit | 5df9fcf | 2008-11-11 00:54:00 +0100 | [diff] [blame] | 465 | my $f = shift; |
| 466 | try { |
| 467 | $repo->command('rev-parse', '--verify', '--quiet', $f); |
| 468 | if (defined($format_patch)) { |
Pierre Habouzit | 5df9fcf | 2008-11-11 00:54:00 +0100 | [diff] [blame] | 469 | return $format_patch; |
| 470 | } |
| 471 | die(<<EOF); |
| 472 | File '$f' exists but it could also be the range of commits |
| 473 | to produce patches for. Please disambiguate by... |
| 474 | |
| 475 | * Saying "./$f" if you mean a file; or |
| 476 | * Giving --format-patch option if you mean a range. |
| 477 | EOF |
| 478 | } catch Git::Error::Command with { |
| 479 | return 0; |
| 480 | } |
| 481 | } |
| 482 | |
Jeff King | aa54892 | 2008-01-18 09:19:36 -0500 | [diff] [blame] | 483 | # Now that all the defaults are set, process the rest of the command line |
| 484 | # arguments and collect up the files that need to be processed. |
Pierre Habouzit | 5df9fcf | 2008-11-11 00:54:00 +0100 | [diff] [blame] | 485 | my @rev_list_opts; |
Junio C Hamano | 69f4ce5 | 2008-11-30 22:38:20 -0800 | [diff] [blame] | 486 | while (defined(my $f = shift @ARGV)) { |
Pierre Habouzit | 5df9fcf | 2008-11-11 00:54:00 +0100 | [diff] [blame] | 487 | if ($f eq "--") { |
| 488 | push @rev_list_opts, "--", @ARGV; |
| 489 | @ARGV = (); |
| 490 | } elsif (-d $f and !check_file_rev_conflict($f)) { |
Jeff King | aa54892 | 2008-01-18 09:19:36 -0500 | [diff] [blame] | 491 | opendir(DH,$f) |
| 492 | or die "Failed to opendir $f: $!"; |
| 493 | |
| 494 | push @files, grep { -f $_ } map { +$f . "/" . $_ } |
| 495 | sort readdir(DH); |
Pierre Habouzit | 8c17868 | 2008-10-31 18:57:10 +0000 | [diff] [blame] | 496 | closedir(DH); |
Pierre Habouzit | 5df9fcf | 2008-11-11 00:54:00 +0100 | [diff] [blame] | 497 | } elsif ((-f $f or -p $f) and !check_file_rev_conflict($f)) { |
Jeff King | aa54892 | 2008-01-18 09:19:36 -0500 | [diff] [blame] | 498 | push @files, $f; |
Jeff King | aa54892 | 2008-01-18 09:19:36 -0500 | [diff] [blame] | 499 | } else { |
Pierre Habouzit | 5df9fcf | 2008-11-11 00:54:00 +0100 | [diff] [blame] | 500 | push @rev_list_opts, $f; |
Jeff King | aa54892 | 2008-01-18 09:19:36 -0500 | [diff] [blame] | 501 | } |
| 502 | } |
| 503 | |
Pierre Habouzit | 5df9fcf | 2008-11-11 00:54:00 +0100 | [diff] [blame] | 504 | if (@rev_list_opts) { |
Jay Soffian | eed6ca7 | 2009-02-14 23:32:13 -0500 | [diff] [blame] | 505 | die "Cannot run git format-patch from outside a repository\n" |
| 506 | unless $repo; |
Pierre Habouzit | 5df9fcf | 2008-11-11 00:54:00 +0100 | [diff] [blame] | 507 | push @files, $repo->command('format-patch', '-o', tempdir(CLEANUP => 1), @rev_list_opts); |
| 508 | } |
| 509 | |
Michael Witten | dbf5e1e | 2008-09-30 07:58:27 -0500 | [diff] [blame] | 510 | if ($validate) { |
Jeff King | c764a0c | 2008-01-18 09:20:10 -0500 | [diff] [blame] | 511 | foreach my $f (@files) { |
Kevin Ballard | 300913b | 2008-06-25 15:44:40 -0700 | [diff] [blame] | 512 | unless (-p $f) { |
| 513 | my $error = validate_patch($f); |
| 514 | $error and die "fatal: $f: $error\nwarning: no patches were sent\n"; |
| 515 | } |
Jeff King | c764a0c | 2008-01-18 09:20:10 -0500 | [diff] [blame] | 516 | } |
Jeff King | 747bbff | 2008-01-18 09:19:48 -0500 | [diff] [blame] | 517 | } |
| 518 | |
Jeff King | aa54892 | 2008-01-18 09:19:36 -0500 | [diff] [blame] | 519 | if (@files) { |
| 520 | unless ($quiet) { |
| 521 | print $_,"\n" for (@files); |
| 522 | } |
| 523 | } else { |
| 524 | print STDERR "\nNo patch files specified!\n\n"; |
| 525 | usage(); |
| 526 | } |
| 527 | |
Pierre Habouzit | beece9d | 2008-11-11 00:54:02 +0100 | [diff] [blame] | 528 | sub get_patch_subject($) { |
| 529 | my $fn = shift; |
| 530 | open (my $fh, '<', $fn); |
| 531 | while (my $line = <$fh>) { |
| 532 | next unless ($line =~ /^Subject: (.*)$/); |
| 533 | close $fh; |
| 534 | return "GIT: $1\n"; |
| 535 | } |
| 536 | close $fh; |
| 537 | die "No subject line in $fn ?"; |
| 538 | } |
| 539 | |
| 540 | if ($compose) { |
| 541 | # Note that this does not need to be secure, but we will make a small |
| 542 | # effort to have it be unique |
Jay Soffian | afe756c | 2009-02-23 13:51:37 -0500 | [diff] [blame] | 543 | $compose_filename = ($repo ? |
| 544 | tempfile(".gitsendemail.msg.XXXXXX", DIR => $repo->repo_path()) : |
| 545 | tempfile(".gitsendemail.msg.XXXXXX", DIR => "."))[1]; |
Pierre Habouzit | beece9d | 2008-11-11 00:54:02 +0100 | [diff] [blame] | 546 | open(C,">",$compose_filename) |
| 547 | or die "Failed to open for writing $compose_filename: $!"; |
| 548 | |
| 549 | |
| 550 | my $tpl_sender = $sender || $repoauthor || $repocommitter || ''; |
| 551 | my $tpl_subject = $initial_subject || ''; |
| 552 | my $tpl_reply_to = $initial_reply_to || ''; |
| 553 | |
| 554 | print C <<EOT; |
| 555 | From $tpl_sender # This line is ignored. |
Michael Witten | 40e6e8a | 2009-04-13 13:23:50 -0500 | [diff] [blame] | 556 | GIT: Lines beginning in "GIT:" will be removed. |
Pierre Habouzit | beece9d | 2008-11-11 00:54:02 +0100 | [diff] [blame] | 557 | GIT: Consider including an overall diffstat or table of contents |
| 558 | GIT: for the patch you are writing. |
| 559 | GIT: |
| 560 | GIT: Clear the body content if you don't wish to send a summary. |
| 561 | From: $tpl_sender |
| 562 | Subject: $tpl_subject |
| 563 | In-Reply-To: $tpl_reply_to |
| 564 | |
| 565 | EOT |
| 566 | for my $f (@files) { |
| 567 | print C get_patch_subject($f); |
| 568 | } |
| 569 | close(C); |
| 570 | |
Pierre Habouzit | beece9d | 2008-11-11 00:54:02 +0100 | [diff] [blame] | 571 | if ($annotate) { |
| 572 | do_edit($compose_filename, @files); |
| 573 | } else { |
| 574 | do_edit($compose_filename); |
| 575 | } |
| 576 | |
| 577 | open(C2,">",$compose_filename . ".final") |
| 578 | or die "Failed to open $compose_filename.final : " . $!; |
| 579 | |
| 580 | open(C,"<",$compose_filename) |
| 581 | or die "Failed to open $compose_filename : " . $!; |
| 582 | |
| 583 | my $need_8bit_cte = file_has_nonascii($compose_filename); |
| 584 | my $in_body = 0; |
| 585 | my $summary_empty = 1; |
| 586 | while(<C>) { |
Michael Witten | 40e6e8a | 2009-04-13 13:23:50 -0500 | [diff] [blame] | 587 | next if m/^GIT:/; |
Pierre Habouzit | beece9d | 2008-11-11 00:54:02 +0100 | [diff] [blame] | 588 | if ($in_body) { |
| 589 | $summary_empty = 0 unless (/^\n$/); |
| 590 | } elsif (/^\n$/) { |
| 591 | $in_body = 1; |
| 592 | if ($need_8bit_cte) { |
| 593 | print C2 "MIME-Version: 1.0\n", |
| 594 | "Content-Type: text/plain; ", |
Brandon Casey | d1fff6f | 2009-06-06 20:12:31 -0500 | [diff] [blame] | 595 | "charset=UTF-8\n", |
Pierre Habouzit | beece9d | 2008-11-11 00:54:02 +0100 | [diff] [blame] | 596 | "Content-Transfer-Encoding: 8bit\n"; |
| 597 | } |
| 598 | } elsif (/^MIME-Version:/i) { |
| 599 | $need_8bit_cte = 0; |
| 600 | } elsif (/^Subject:\s*(.+)\s*$/i) { |
| 601 | $initial_subject = $1; |
| 602 | my $subject = $initial_subject; |
| 603 | $_ = "Subject: " . |
| 604 | ($subject =~ /[^[:ascii:]]/ ? |
| 605 | quote_rfc2047($subject) : |
| 606 | $subject) . |
| 607 | "\n"; |
| 608 | } elsif (/^In-Reply-To:\s*(.+)\s*$/i) { |
| 609 | $initial_reply_to = $1; |
| 610 | next; |
| 611 | } elsif (/^From:\s*(.+)\s*$/i) { |
| 612 | $sender = $1; |
| 613 | next; |
| 614 | } elsif (/^(?:To|Cc|Bcc):/i) { |
| 615 | print "To/Cc/Bcc fields are not interpreted yet, they have been ignored\n"; |
| 616 | next; |
| 617 | } |
| 618 | print C2 $_; |
| 619 | } |
| 620 | close(C); |
| 621 | close(C2); |
| 622 | |
| 623 | if ($summary_empty) { |
| 624 | print "Summary email is empty, skipping it\n"; |
| 625 | $compose = -1; |
| 626 | } |
| 627 | } elsif ($annotate) { |
| 628 | do_edit(@files); |
| 629 | } |
| 630 | |
Jay Soffian | 6e18251 | 2009-03-28 21:39:10 -0400 | [diff] [blame] | 631 | sub ask { |
| 632 | my ($prompt, %arg) = @_; |
Jay Soffian | 0da43a6 | 2009-04-04 23:23:21 -0400 | [diff] [blame] | 633 | my $valid_re = $arg{valid_re}; |
Jay Soffian | 6e18251 | 2009-03-28 21:39:10 -0400 | [diff] [blame] | 634 | my $default = $arg{default}; |
| 635 | my $resp; |
| 636 | my $i = 0; |
Jay Soffian | 5906f54 | 2009-03-31 12:22:11 -0400 | [diff] [blame] | 637 | return defined $default ? $default : undef |
| 638 | unless defined $term->IN and defined fileno($term->IN) and |
| 639 | defined $term->OUT and defined fileno($term->OUT); |
Jay Soffian | 6e18251 | 2009-03-28 21:39:10 -0400 | [diff] [blame] | 640 | while ($i++ < 10) { |
| 641 | $resp = $term->readline($prompt); |
| 642 | if (!defined $resp) { # EOF |
| 643 | print "\n"; |
| 644 | return defined $default ? $default : undef; |
| 645 | } |
| 646 | if ($resp eq '' and defined $default) { |
| 647 | return $default; |
| 648 | } |
Jay Soffian | 0da43a6 | 2009-04-04 23:23:21 -0400 | [diff] [blame] | 649 | if (!defined $valid_re or $resp =~ /$valid_re/) { |
Jay Soffian | 6e18251 | 2009-03-28 21:39:10 -0400 | [diff] [blame] | 650 | return $resp; |
| 651 | } |
| 652 | } |
| 653 | return undef; |
| 654 | } |
| 655 | |
Ryan Anderson | 1f038a0 | 2005-09-05 01:13:07 -0400 | [diff] [blame] | 656 | my $prompting = 0; |
Uwe Kleine-König | 94638f8 | 2007-08-09 15:27:58 +0200 | [diff] [blame] | 657 | if (!defined $sender) { |
Frank Lichtenheld | ad79c02 | 2008-03-14 18:29:30 +0100 | [diff] [blame] | 658 | $sender = $repoauthor || $repocommitter || ''; |
Jay Soffian | 6e18251 | 2009-03-28 21:39:10 -0400 | [diff] [blame] | 659 | $sender = ask("Who should the emails appear to be from? [$sender] ", |
| 660 | default => $sender); |
Uwe Kleine-König | 94638f8 | 2007-08-09 15:27:58 +0200 | [diff] [blame] | 661 | print "Emails will be sent from: ", $sender, "\n"; |
Ryan Anderson | 1f038a0 | 2005-09-05 01:13:07 -0400 | [diff] [blame] | 662 | $prompting++; |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 663 | } |
| 664 | |
| 665 | if (!@to) { |
Jay Soffian | 6e18251 | 2009-03-28 21:39:10 -0400 | [diff] [blame] | 666 | my $to = ask("Who should the emails be sent to? "); |
| 667 | push @to, parse_address_line($to) if defined $to; # sanitized/validated later |
Ryan Anderson | 1f038a0 | 2005-09-05 01:13:07 -0400 | [diff] [blame] | 668 | $prompting++; |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 669 | } |
| 670 | |
Eric Wong | 994d6c6 | 2006-05-14 19:13:44 -0700 | [diff] [blame] | 671 | sub expand_aliases { |
Jeff King | 302e04e | 2009-07-23 07:09:29 -0400 | [diff] [blame] | 672 | return map { expand_one_alias($_) } @_; |
| 673 | } |
| 674 | |
| 675 | my %EXPANDED_ALIASES; |
| 676 | sub expand_one_alias { |
| 677 | my $alias = shift; |
| 678 | if ($EXPANDED_ALIASES{$alias}) { |
| 679 | die "fatal: alias '$alias' expands to itself\n"; |
| 680 | } |
| 681 | local $EXPANDED_ALIASES{$alias} = 1; |
| 682 | return $aliases{$alias} ? expand_aliases(@{$aliases{$alias}}) : $alias; |
Eric Wong | 994d6c6 | 2006-05-14 19:13:44 -0700 | [diff] [blame] | 683 | } |
| 684 | |
| 685 | @to = expand_aliases(@to); |
Uwe Kleine-K,Av(Bnig | 5b56aaa | 2007-08-06 22:34:50 +0200 | [diff] [blame] | 686 | @to = (map { sanitize_address($_) } @to); |
Eric Wong | 994d6c6 | 2006-05-14 19:13:44 -0700 | [diff] [blame] | 687 | @initial_cc = expand_aliases(@initial_cc); |
Ryan Anderson | 5806324 | 2006-05-29 12:30:13 -0700 | [diff] [blame] | 688 | @bcclist = expand_aliases(@bcclist); |
Eric Wong | 994d6c6 | 2006-05-14 19:13:44 -0700 | [diff] [blame] | 689 | |
Adam Roben | 5483c71 | 2007-06-27 20:59:37 -0700 | [diff] [blame] | 690 | if ($thread && !defined $initial_reply_to && $prompting) { |
Jay Soffian | 6e18251 | 2009-03-28 21:39:10 -0400 | [diff] [blame] | 691 | $initial_reply_to = ask( |
| 692 | "Message-ID to be used as In-Reply-To for the first email? "); |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 693 | } |
Jay Soffian | 1ca3d6e | 2008-02-20 00:55:07 -0500 | [diff] [blame] | 694 | if (defined $initial_reply_to) { |
Jay Soffian | 0fb7fc7 | 2008-02-21 19:16:04 -0500 | [diff] [blame] | 695 | $initial_reply_to =~ s/^\s*<?//; |
| 696 | $initial_reply_to =~ s/>?\s*$//; |
| 697 | $initial_reply_to = "<$initial_reply_to>" if $initial_reply_to ne ''; |
Junio C Hamano | ace9c2a | 2007-12-10 21:44:42 -0800 | [diff] [blame] | 698 | } |
Mike Hommey | ace7208 | 2007-12-09 18:17:28 +0100 | [diff] [blame] | 699 | |
Douglas Stockwell | 34cc60c | 2007-09-03 03:06:25 +0900 | [diff] [blame] | 700 | if (!defined $smtp_server) { |
Eric Wong | aca7ad7 | 2006-05-15 02:34:44 -0700 | [diff] [blame] | 701 | foreach (qw( /usr/sbin/sendmail /usr/lib/sendmail )) { |
| 702 | if (-x $_) { |
| 703 | $smtp_server = $_; |
| 704 | last; |
| 705 | } |
| 706 | } |
| 707 | $smtp_server ||= 'localhost'; # could be 127.0.0.1, too... *shrug* |
Ryan Anderson | 3342d85 | 2005-07-31 20:04:24 -0400 | [diff] [blame] | 708 | } |
| 709 | |
Jay Soffian | c1f2aa4 | 2009-03-02 23:52:18 -0500 | [diff] [blame] | 710 | if ($compose && $compose > 0) { |
| 711 | @files = ($compose_filename . ".final", @files); |
Ryan Anderson | 1f038a0 | 2005-09-05 01:13:07 -0400 | [diff] [blame] | 712 | } |
| 713 | |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 714 | # Variables we set as part of the loop over files |
Jay Soffian | c1f2aa4 | 2009-03-02 23:52:18 -0500 | [diff] [blame] | 715 | our ($message_id, %mail, $subject, $reply_to, $references, $message, |
Jay Soffian | dc1460a | 2009-03-31 12:22:12 -0400 | [diff] [blame] | 716 | $needs_confirm, $message_num, $ask_default); |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 717 | |
Eric Wong | 567ffeb | 2006-03-25 16:47:12 -0800 | [diff] [blame] | 718 | sub extract_valid_address { |
| 719 | my $address = shift; |
Junio C Hamano | ad9c18f | 2006-06-06 00:05:56 -0700 | [diff] [blame] | 720 | my $local_part_regexp = '[^<>"\s@]+'; |
Junio C Hamano | 09302e1 | 2006-06-06 14:12:46 -0700 | [diff] [blame] | 721 | my $domain_regexp = '[^.<>"\s@]+(?:\.[^.<>"\s@]+)+'; |
Eric Wong | db3106b | 2006-05-15 02:41:01 -0700 | [diff] [blame] | 722 | |
| 723 | # check for a local address: |
Junio C Hamano | ad9c18f | 2006-06-06 00:05:56 -0700 | [diff] [blame] | 724 | return $address if ($address =~ /^($local_part_regexp)$/); |
Eric Wong | db3106b | 2006-05-15 02:41:01 -0700 | [diff] [blame] | 725 | |
Uwe Kleine-König | 155197e | 2007-08-09 15:27:57 +0200 | [diff] [blame] | 726 | $address =~ s/^\s*<(.*)>\s*$/$1/; |
Eric Wong | 567ffeb | 2006-03-25 16:47:12 -0800 | [diff] [blame] | 727 | if ($have_email_valid) { |
Junio C Hamano | ad9c18f | 2006-06-06 00:05:56 -0700 | [diff] [blame] | 728 | return scalar Email::Valid->address($address); |
Eric Wong | 567ffeb | 2006-03-25 16:47:12 -0800 | [diff] [blame] | 729 | } else { |
| 730 | # less robust/correct than the monster regexp in Email::Valid, |
| 731 | # but still does a 99% job, and one less dependency |
Junio C Hamano | ad9c18f | 2006-06-06 00:05:56 -0700 | [diff] [blame] | 732 | $address =~ /($local_part_regexp\@$domain_regexp)/; |
Horst H. von Brand | e96fd30 | 2006-06-03 13:11:48 -0400 | [diff] [blame] | 733 | return $1; |
Eric Wong | 567ffeb | 2006-03-25 16:47:12 -0800 | [diff] [blame] | 734 | } |
| 735 | } |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 736 | |
| 737 | # Usually don't need to change anything below here. |
| 738 | |
| 739 | # we make a "fake" message id by taking the current number |
| 740 | # of seconds since the beginning of Unix time and tacking on |
| 741 | # a random number to the end, in case we are called quicker than |
| 742 | # 1 second since the last time we were called. |
Ryan Anderson | 8037d1a | 2005-07-31 20:04:24 -0400 | [diff] [blame] | 743 | |
| 744 | # 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] | 745 | |
Junio C Hamano | be510cf | 2007-09-17 21:18:20 -0700 | [diff] [blame] | 746 | my ($message_id_stamp, $message_id_serial); |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 747 | sub make_message_id |
| 748 | { |
Junio C Hamano | be510cf | 2007-09-17 21:18:20 -0700 | [diff] [blame] | 749 | my $uniq; |
| 750 | if (!defined $message_id_stamp) { |
| 751 | $message_id_stamp = sprintf("%s-%s", time, $$); |
| 752 | $message_id_serial = 0; |
| 753 | } |
| 754 | $message_id_serial++; |
| 755 | $uniq = "$message_id_stamp-$message_id_serial"; |
| 756 | |
Junio C Hamano | aeb5932 | 2007-06-20 13:47:34 -0700 | [diff] [blame] | 757 | my $du_part; |
Uwe Kleine-König | 94638f8 | 2007-08-09 15:27:58 +0200 | [diff] [blame] | 758 | for ($sender, $repocommitter, $repoauthor) { |
| 759 | $du_part = extract_valid_address(sanitize_address($_)); |
| 760 | last if (defined $du_part and $du_part ne ''); |
Junio C Hamano | aeb5932 | 2007-06-20 13:47:34 -0700 | [diff] [blame] | 761 | } |
Uwe Kleine-König | 94638f8 | 2007-08-09 15:27:58 +0200 | [diff] [blame] | 762 | if (not defined $du_part or $du_part eq '') { |
Junio C Hamano | aeb5932 | 2007-06-20 13:47:34 -0700 | [diff] [blame] | 763 | use Sys::Hostname qw(); |
| 764 | $du_part = 'user@' . Sys::Hostname::hostname(); |
| 765 | } |
Junio C Hamano | be510cf | 2007-09-17 21:18:20 -0700 | [diff] [blame] | 766 | my $message_id_template = "<%s-git-send-email-%s>"; |
| 767 | $message_id = sprintf($message_id_template, $uniq, $du_part); |
Ryan Anderson | 8037d1a | 2005-07-31 20:04:24 -0400 | [diff] [blame] | 768 | #print "new message id = $message_id\n"; # Was useful for debugging |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 769 | } |
| 770 | |
| 771 | |
| 772 | |
Eric Wong | a5370b1 | 2006-03-25 03:01:01 -0800 | [diff] [blame] | 773 | $time = time - scalar $#files; |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 774 | |
Jürgen Rühle | 374c590 | 2007-01-10 13:36:39 -0800 | [diff] [blame] | 775 | sub unquote_rfc2047 { |
| 776 | local ($_) = @_; |
Jeff King | 8291db6 | 2007-11-16 05:49:09 -0500 | [diff] [blame] | 777 | my $encoding; |
| 778 | if (s/=\?([^?]+)\?q\?(.*)\?=/$2/g) { |
| 779 | $encoding = $1; |
Jürgen Rühle | 374c590 | 2007-01-10 13:36:39 -0800 | [diff] [blame] | 780 | s/_/ /g; |
| 781 | s/=([0-9A-F]{2})/chr(hex($1))/eg; |
| 782 | } |
Jeff King | 8291db6 | 2007-11-16 05:49:09 -0500 | [diff] [blame] | 783 | return wantarray ? ($_, $encoding) : $_; |
Jürgen Rühle | 374c590 | 2007-01-10 13:36:39 -0800 | [diff] [blame] | 784 | } |
| 785 | |
Jeff King | d54eaaa | 2008-03-28 17:29:01 -0400 | [diff] [blame] | 786 | sub quote_rfc2047 { |
| 787 | local $_ = shift; |
Brandon Casey | d1fff6f | 2009-06-06 20:12:31 -0500 | [diff] [blame] | 788 | my $encoding = shift || 'UTF-8'; |
Jeff King | d54eaaa | 2008-03-28 17:29:01 -0400 | [diff] [blame] | 789 | s/([^-a-zA-Z0-9!*+\/])/sprintf("=%02X", ord($1))/eg; |
| 790 | s/(.*)/=\?$encoding\?q\?$1\?=/; |
| 791 | return $_; |
| 792 | } |
| 793 | |
Brandon Casey | a3a8262 | 2009-06-07 19:25:58 -0500 | [diff] [blame] | 794 | sub is_rfc2047_quoted { |
| 795 | my $s = shift; |
| 796 | my $token = '[^][()<>@,;:"\/?.= \000-\037\177-\377]+'; |
| 797 | my $encoded_text = '[!->@-~]+'; |
| 798 | length($s) <= 75 && |
| 799 | $s =~ m/^(?:"[[:ascii:]]*"|=\?$token\?$token\?$encoded_text\?=)$/o; |
| 800 | } |
| 801 | |
Uwe Kleine-K,Av(Bnig | 5b56aaa | 2007-08-06 22:34:50 +0200 | [diff] [blame] | 802 | # use the simplest quoting being able to handle the recipient |
| 803 | sub sanitize_address |
Robin H. Johnson | 732263d | 2007-04-25 19:37:19 -0700 | [diff] [blame] | 804 | { |
| 805 | my ($recipient) = @_; |
Uwe Kleine-K,Av(Bnig | 5b56aaa | 2007-08-06 22:34:50 +0200 | [diff] [blame] | 806 | my ($recipient_name, $recipient_addr) = ($recipient =~ /^(.*?)\s*(<.*)/); |
| 807 | |
| 808 | if (not $recipient_name) { |
| 809 | return "$recipient"; |
Robin H. Johnson | 732263d | 2007-04-25 19:37:19 -0700 | [diff] [blame] | 810 | } |
Uwe Kleine-K,Av(Bnig | 5b56aaa | 2007-08-06 22:34:50 +0200 | [diff] [blame] | 811 | |
| 812 | # if recipient_name is already quoted, do nothing |
Brandon Casey | a3a8262 | 2009-06-07 19:25:58 -0500 | [diff] [blame] | 813 | if (is_rfc2047_quoted($recipient_name)) { |
Uwe Kleine-K,Av(Bnig | 5b56aaa | 2007-08-06 22:34:50 +0200 | [diff] [blame] | 814 | return $recipient; |
| 815 | } |
| 816 | |
| 817 | # rfc2047 is needed if a non-ascii char is included |
| 818 | if ($recipient_name =~ /[^[:ascii:]]/) { |
Jay Soffian | a61c0ff | 2009-03-31 12:22:14 -0400 | [diff] [blame] | 819 | $recipient_name =~ s/^"(.*)"$/$1/; |
Jeff King | d54eaaa | 2008-03-28 17:29:01 -0400 | [diff] [blame] | 820 | $recipient_name = quote_rfc2047($recipient_name); |
Uwe Kleine-K,Av(Bnig | 5b56aaa | 2007-08-06 22:34:50 +0200 | [diff] [blame] | 821 | } |
| 822 | |
| 823 | # double quotes are needed if specials or CTLs are included |
| 824 | elsif ($recipient_name =~ /[][()<>@,;:\\".\000-\037\177]/) { |
Horst H. von Brand | 18023c2 | 2008-03-28 11:09:04 -0300 | [diff] [blame] | 825 | $recipient_name =~ s/(["\\\r])/\\$1/g; |
Uwe Kleine-K,Av(Bnig | 5b56aaa | 2007-08-06 22:34:50 +0200 | [diff] [blame] | 826 | $recipient_name = "\"$recipient_name\""; |
| 827 | } |
| 828 | |
| 829 | return "$recipient_name $recipient_addr"; |
| 830 | |
Robin H. Johnson | 732263d | 2007-04-25 19:37:19 -0700 | [diff] [blame] | 831 | } |
| 832 | |
Michael Witten | 15da108 | 2009-04-13 13:23:51 -0500 | [diff] [blame] | 833 | # Returns 1 if the message was sent, and 0 otherwise. |
Markus Heidelberg | a1b5b37 | 2009-06-12 12:51:42 +0200 | [diff] [blame] | 834 | # In actuality, the whole program dies when there |
Michael Witten | 15da108 | 2009-04-13 13:23:51 -0500 | [diff] [blame] | 835 | # is an error sending a message. |
| 836 | |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 837 | sub send_message |
| 838 | { |
Eric Wong | 4bc87a2 | 2006-03-25 17:20:48 -0800 | [diff] [blame] | 839 | my @recipients = unique_email_list(@to); |
Ask Bjørn Hansen | 7ac1752 | 2007-11-19 03:00:26 -0800 | [diff] [blame] | 840 | @cc = (grep { my $cc = extract_valid_address($_); |
| 841 | not grep { $cc eq $_ } @recipients |
| 842 | } |
| 843 | map { sanitize_address($_) } |
| 844 | @cc); |
Eric Wong | 4bc87a2 | 2006-03-25 17:20:48 -0800 | [diff] [blame] | 845 | my $to = join (",\n\t", @recipients); |
Ryan Anderson | 5806324 | 2006-05-29 12:30:13 -0700 | [diff] [blame] | 846 | @recipients = unique_email_list(@recipients,@cc,@bcclist); |
Robin H. Johnson | c38f024 | 2007-04-25 19:37:20 -0700 | [diff] [blame] | 847 | @recipients = (map { extract_valid_address($_) } @recipients); |
Jakub Narebski | 6bdca89 | 2006-07-07 20:57:55 +0200 | [diff] [blame] | 848 | my $date = format_2822_time($time++); |
Martin Langhoff | e923eff | 2006-05-03 09:44:36 +1200 | [diff] [blame] | 849 | my $gitversion = '@@GIT_VERSION@@'; |
| 850 | if ($gitversion =~ m/..GIT_VERSION../) { |
Petr Baudis | 3cb8caf | 2006-07-03 22:47:58 +0200 | [diff] [blame] | 851 | $gitversion = Git::version(); |
Martin Langhoff | e923eff | 2006-05-03 09:44:36 +1200 | [diff] [blame] | 852 | } |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 853 | |
Joe Perches | 02461e0 | 2009-10-08 10:03:26 -0700 | [diff] [blame] | 854 | my $cc = join(",\n\t", unique_email_list(@cc)); |
Junio C Hamano | f06a6a4 | 2007-04-16 16:51:47 -0700 | [diff] [blame] | 855 | my $ccline = ""; |
| 856 | if ($cc ne '') { |
| 857 | $ccline = "\nCc: $cc"; |
| 858 | } |
Uwe Kleine-König | 94638f8 | 2007-08-09 15:27:58 +0200 | [diff] [blame] | 859 | my $sanitized_sender = sanitize_address($sender); |
Jeff King | 4f3d370 | 2007-12-17 15:51:34 -0500 | [diff] [blame] | 860 | make_message_id() unless defined($message_id); |
Junio C Hamano | aeb5932 | 2007-06-20 13:47:34 -0700 | [diff] [blame] | 861 | |
Uwe Kleine-König | 94638f8 | 2007-08-09 15:27:58 +0200 | [diff] [blame] | 862 | my $header = "From: $sanitized_sender |
Junio C Hamano | f06a6a4 | 2007-04-16 16:51:47 -0700 | [diff] [blame] | 863 | To: $to${ccline} |
Eric Wong | 4bc87a2 | 2006-03-25 17:20:48 -0800 | [diff] [blame] | 864 | Subject: $subject |
Eric Wong | 4bc87a2 | 2006-03-25 17:20:48 -0800 | [diff] [blame] | 865 | Date: $date |
| 866 | Message-Id: $message_id |
Martin Langhoff | e923eff | 2006-05-03 09:44:36 +1200 | [diff] [blame] | 867 | X-Mailer: git-send-email $gitversion |
Eric Wong | 4bc87a2 | 2006-03-25 17:20:48 -0800 | [diff] [blame] | 868 | "; |
Thomas Rast | 3e0c4ff | 2009-03-01 23:45:41 +0100 | [diff] [blame] | 869 | if ($reply_to) { |
Ryan Anderson | 7ccf792 | 2006-05-29 12:30:12 -0700 | [diff] [blame] | 870 | |
| 871 | $header .= "In-Reply-To: $reply_to\n"; |
| 872 | $header .= "References: $references\n"; |
| 873 | } |
Junio C Hamano | ce91c2f | 2006-10-05 16:36:49 -0700 | [diff] [blame] | 874 | if (@xh) { |
| 875 | $header .= join("\n", @xh) . "\n"; |
| 876 | } |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 877 | |
Robin H. Johnson | c38f024 | 2007-04-25 19:37:20 -0700 | [diff] [blame] | 878 | my @sendmail_parameters = ('-i', @recipients); |
Uwe Kleine-König | 94638f8 | 2007-08-09 15:27:58 +0200 | [diff] [blame] | 879 | my $raw_from = $sanitized_sender; |
Felipe Contreras | c89e324 | 2009-11-26 21:04:29 +0200 | [diff] [blame] | 880 | if (defined $envelope_sender && $envelope_sender ne "auto") { |
| 881 | $raw_from = $envelope_sender; |
| 882 | } |
Robin H. Johnson | f073a59 | 2007-04-25 19:37:22 -0700 | [diff] [blame] | 883 | $raw_from = extract_valid_address($raw_from); |
| 884 | unshift (@sendmail_parameters, |
| 885 | '-f', $raw_from) if(defined $envelope_sender); |
Robin H. Johnson | 8e3d436 | 2007-04-25 19:37:17 -0700 | [diff] [blame] | 886 | |
Jay Soffian | c1f2aa4 | 2009-03-02 23:52:18 -0500 | [diff] [blame] | 887 | if ($needs_confirm && !$dry_run) { |
| 888 | print "\n$header\n"; |
| 889 | if ($needs_confirm eq "inform") { |
| 890 | $confirm_unconfigured = 0; # squelch this message for the rest of this run |
Jay Soffian | 6e18251 | 2009-03-28 21:39:10 -0400 | [diff] [blame] | 891 | $ask_default = "y"; # assume yes on EOF since user hasn't explicitly asked for confirmation |
Jay Soffian | c1f2aa4 | 2009-03-02 23:52:18 -0500 | [diff] [blame] | 892 | print " The Cc list above has been expanded by additional\n"; |
| 893 | print " addresses found in the patch commit message. By default\n"; |
| 894 | print " send-email prompts before sending whenever this occurs.\n"; |
| 895 | print " This behavior is controlled by the sendemail.confirm\n"; |
| 896 | print " configuration setting.\n"; |
| 897 | print "\n"; |
| 898 | print " For additional information, run 'git send-email --help'.\n"; |
| 899 | print " To retain the current behavior, but squelch this message,\n"; |
| 900 | print " run 'git config --global sendemail.confirm auto'.\n\n"; |
| 901 | } |
Jay Soffian | 6e18251 | 2009-03-28 21:39:10 -0400 | [diff] [blame] | 902 | $_ = ask("Send this email? ([y]es|[n]o|[q]uit|[a]ll): ", |
| 903 | valid_re => qr/^(?:yes|y|no|n|quit|q|all|a)/i, |
| 904 | default => $ask_default); |
| 905 | die "Send this email reply required" unless defined $_; |
Jay Soffian | c1f2aa4 | 2009-03-02 23:52:18 -0500 | [diff] [blame] | 906 | if (/^n/i) { |
Michael Witten | 15da108 | 2009-04-13 13:23:51 -0500 | [diff] [blame] | 907 | return 0; |
Jay Soffian | c1f2aa4 | 2009-03-02 23:52:18 -0500 | [diff] [blame] | 908 | } elsif (/^q/i) { |
| 909 | cleanup_compose_files(); |
| 910 | exit(0); |
| 911 | } elsif (/^a/i) { |
| 912 | $confirm = 'never'; |
| 913 | } |
| 914 | } |
| 915 | |
Matthew Wilcox | 6130259 | 2006-10-10 08:58:23 -0600 | [diff] [blame] | 916 | if ($dry_run) { |
| 917 | # We don't want to send the email. |
| 918 | } elsif ($smtp_server =~ m#^/#) { |
Eric Wong | aca7ad7 | 2006-05-15 02:34:44 -0700 | [diff] [blame] | 919 | my $pid = open my $sm, '|-'; |
| 920 | defined $pid or die $!; |
| 921 | if (!$pid) { |
Robin H. Johnson | 8e3d436 | 2007-04-25 19:37:17 -0700 | [diff] [blame] | 922 | exec($smtp_server, @sendmail_parameters) or die $!; |
Eric Wong | aca7ad7 | 2006-05-15 02:34:44 -0700 | [diff] [blame] | 923 | } |
| 924 | print $sm "$header\n$message"; |
| 925 | close $sm or die $?; |
| 926 | } else { |
Junio C Hamano | 44b2476 | 2007-09-25 17:27:54 -0700 | [diff] [blame] | 927 | |
| 928 | if (!defined $smtp_server) { |
| 929 | die "The required SMTP server is not properly defined." |
| 930 | } |
| 931 | |
Thomas Rast | f6bebd1 | 2008-06-25 21:42:43 +0200 | [diff] [blame] | 932 | if ($smtp_encryption eq 'ssl') { |
Junio C Hamano | 44b2476 | 2007-09-25 17:27:54 -0700 | [diff] [blame] | 933 | $smtp_server_port ||= 465; # ssmtp |
Douglas Stockwell | 34cc60c | 2007-09-03 03:06:25 +0900 | [diff] [blame] | 934 | require Net::SMTP::SSL; |
Junio C Hamano | 44b2476 | 2007-09-25 17:27:54 -0700 | [diff] [blame] | 935 | $smtp ||= Net::SMTP::SSL->new($smtp_server, Port => $smtp_server_port); |
Douglas Stockwell | 34cc60c | 2007-09-03 03:06:25 +0900 | [diff] [blame] | 936 | } |
| 937 | else { |
| 938 | require Net::SMTP; |
Junio C Hamano | 44b2476 | 2007-09-25 17:27:54 -0700 | [diff] [blame] | 939 | $smtp ||= Net::SMTP->new((defined $smtp_server_port) |
| 940 | ? "$smtp_server:$smtp_server_port" |
| 941 | : $smtp_server); |
Yakov Lerner | fb3650e | 2009-09-25 15:10:21 -0700 | [diff] [blame] | 942 | if ($smtp_encryption eq 'tls' && $smtp) { |
Thomas Rast | f6bebd1 | 2008-06-25 21:42:43 +0200 | [diff] [blame] | 943 | require Net::SMTP::SSL; |
| 944 | $smtp->command('STARTTLS'); |
| 945 | $smtp->response(); |
| 946 | if ($smtp->code == 220) { |
| 947 | $smtp = Net::SMTP::SSL->start_SSL($smtp) |
| 948 | or die "STARTTLS failed! ".$smtp->message; |
Thomas Rast | 6cbf8b0 | 2008-07-03 00:11:31 +0200 | [diff] [blame] | 949 | $smtp_encryption = ''; |
Robert Shearman | 9d1ccf5 | 2008-07-09 22:39:40 +0100 | [diff] [blame] | 950 | # Send EHLO again to receive fresh |
| 951 | # supported commands |
| 952 | $smtp->hello(); |
Thomas Rast | f6bebd1 | 2008-06-25 21:42:43 +0200 | [diff] [blame] | 953 | } else { |
| 954 | die "Server does not support STARTTLS! ".$smtp->message; |
| 955 | } |
| 956 | } |
Douglas Stockwell | 34cc60c | 2007-09-03 03:06:25 +0900 | [diff] [blame] | 957 | } |
Junio C Hamano | 44b2476 | 2007-09-25 17:27:54 -0700 | [diff] [blame] | 958 | |
| 959 | if (!$smtp) { |
| 960 | die "Unable to initialize SMTP properly. Is there something wrong with your config?"; |
| 961 | } |
| 962 | |
Michael Witten | 2363d74 | 2008-02-03 19:53:56 -0500 | [diff] [blame] | 963 | if (defined $smtp_authuser) { |
| 964 | |
| 965 | if (!defined $smtp_authpass) { |
| 966 | |
| 967 | system "stty -echo"; |
| 968 | |
| 969 | do { |
| 970 | print "Password: "; |
| 971 | $_ = <STDIN>; |
| 972 | print "\n"; |
| 973 | } while (!defined $_); |
| 974 | |
| 975 | chomp($smtp_authpass = $_); |
| 976 | |
| 977 | system "stty echo"; |
| 978 | } |
| 979 | |
Wincent Colaiuta | 5f5b611 | 2007-11-21 13:35:05 +0100 | [diff] [blame] | 980 | $auth ||= $smtp->auth( $smtp_authuser, $smtp_authpass ) or die $smtp->message; |
Junio C Hamano | 44b2476 | 2007-09-25 17:27:54 -0700 | [diff] [blame] | 981 | } |
Michael Witten | 2363d74 | 2008-02-03 19:53:56 -0500 | [diff] [blame] | 982 | |
Robin H. Johnson | 2b69bfc | 2007-04-25 19:37:21 -0700 | [diff] [blame] | 983 | $smtp->mail( $raw_from ) or die $smtp->message; |
Eric Wong | aca7ad7 | 2006-05-15 02:34:44 -0700 | [diff] [blame] | 984 | $smtp->to( @recipients ) or die $smtp->message; |
| 985 | $smtp->data or die $smtp->message; |
| 986 | $smtp->datasend("$header\n$message") or die $smtp->message; |
| 987 | $smtp->dataend() or die $smtp->message; |
Michael Witten | 15da108 | 2009-04-13 13:23:51 -0500 | [diff] [blame] | 988 | $smtp->code =~ /250|200/ or die "Failed to send $subject\n".$smtp->message; |
Eric Wong | aca7ad7 | 2006-05-15 02:34:44 -0700 | [diff] [blame] | 989 | } |
Ryan Anderson | 2718435 | 2006-02-05 20:13:52 -0500 | [diff] [blame] | 990 | if ($quiet) { |
Robin H. Johnson | 71c7da9 | 2007-04-25 19:37:16 -0700 | [diff] [blame] | 991 | printf (($dry_run ? "Dry-" : "")."Sent %s\n", $subject); |
Ryan Anderson | 2718435 | 2006-02-05 20:13:52 -0500 | [diff] [blame] | 992 | } else { |
David D. Kilzer | b7f30e0 | 2007-11-18 20:14:55 -0800 | [diff] [blame] | 993 | print (($dry_run ? "Dry-" : "")."OK. Log says:\n"); |
Robin H. Johnson | 2b69bfc | 2007-04-25 19:37:21 -0700 | [diff] [blame] | 994 | if ($smtp_server !~ m#^/#) { |
Eric Wong | aca7ad7 | 2006-05-15 02:34:44 -0700 | [diff] [blame] | 995 | print "Server: $smtp_server\n"; |
Robin H. Johnson | 2b69bfc | 2007-04-25 19:37:21 -0700 | [diff] [blame] | 996 | print "MAIL FROM:<$raw_from>\n"; |
Joe Perches | 02461e0 | 2009-10-08 10:03:26 -0700 | [diff] [blame] | 997 | foreach my $entry (@recipients) { |
| 998 | print "RCPT TO:<$entry>\n"; |
| 999 | } |
Eric Wong | aca7ad7 | 2006-05-15 02:34:44 -0700 | [diff] [blame] | 1000 | } else { |
Robin H. Johnson | 8e3d436 | 2007-04-25 19:37:17 -0700 | [diff] [blame] | 1001 | print "Sendmail: $smtp_server ".join(' ',@sendmail_parameters)."\n"; |
Eric Wong | aca7ad7 | 2006-05-15 02:34:44 -0700 | [diff] [blame] | 1002 | } |
David D. Kilzer | b7f30e0 | 2007-11-18 20:14:55 -0800 | [diff] [blame] | 1003 | print $header, "\n"; |
Eric Wong | aca7ad7 | 2006-05-15 02:34:44 -0700 | [diff] [blame] | 1004 | if ($smtp) { |
| 1005 | print "Result: ", $smtp->code, ' ', |
| 1006 | ($smtp->message =~ /\n([^\n]+\n)$/s), "\n"; |
| 1007 | } else { |
| 1008 | print "Result: OK\n"; |
| 1009 | } |
Ryan Anderson | 30d08b3 | 2006-02-02 11:56:06 -0500 | [diff] [blame] | 1010 | } |
Michael Witten | 15da108 | 2009-04-13 13:23:51 -0500 | [diff] [blame] | 1011 | |
| 1012 | return 1; |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 1013 | } |
| 1014 | |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 1015 | $reply_to = $initial_reply_to; |
Junio C Hamano | 2186d56 | 2006-05-29 23:53:13 -0700 | [diff] [blame] | 1016 | $references = $initial_reply_to || ''; |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 1017 | $subject = $initial_subject; |
Jay Soffian | c1f2aa4 | 2009-03-02 23:52:18 -0500 | [diff] [blame] | 1018 | $message_num = 0; |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 1019 | |
| 1020 | foreach my $t (@files) { |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 1021 | open(F,"<",$t) or die "can't open file $t"; |
| 1022 | |
Uwe Kleine-König | 94638f8 | 2007-08-09 15:27:58 +0200 | [diff] [blame] | 1023 | my $author = undef; |
Jeff King | 8291db6 | 2007-11-16 05:49:09 -0500 | [diff] [blame] | 1024 | my $author_encoding; |
| 1025 | my $has_content_type; |
| 1026 | my $body_encoding; |
Jay Soffian | c1f2aa4 | 2009-03-02 23:52:18 -0500 | [diff] [blame] | 1027 | @cc = (); |
Junio C Hamano | ce91c2f | 2006-10-05 16:36:49 -0700 | [diff] [blame] | 1028 | @xh = (); |
Junio C Hamano | e6b0964 | 2006-10-07 03:09:05 -0700 | [diff] [blame] | 1029 | my $input_format = undef; |
Jay Soffian | 5012699 | 2009-02-14 23:32:14 -0500 | [diff] [blame] | 1030 | my @header = (); |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 1031 | $message = ""; |
Jay Soffian | c1f2aa4 | 2009-03-02 23:52:18 -0500 | [diff] [blame] | 1032 | $message_num++; |
Jay Soffian | 5012699 | 2009-02-14 23:32:14 -0500 | [diff] [blame] | 1033 | # First unfold multiline header fields |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 1034 | while(<F>) { |
Jay Soffian | 5012699 | 2009-02-14 23:32:14 -0500 | [diff] [blame] | 1035 | last if /^\s*$/; |
| 1036 | if (/^\s+\S/ and @header) { |
| 1037 | chomp($header[$#header]); |
| 1038 | s/^\s+/ /; |
| 1039 | $header[$#header] .= $_; |
| 1040 | } else { |
| 1041 | push(@header, $_); |
| 1042 | } |
| 1043 | } |
| 1044 | # Now parse the header |
| 1045 | foreach(@header) { |
| 1046 | if (/^From /) { |
| 1047 | $input_format = 'mbox'; |
| 1048 | next; |
| 1049 | } |
| 1050 | chomp; |
| 1051 | if (!defined $input_format && /^[-A-Za-z]+:\s/) { |
| 1052 | $input_format = 'mbox'; |
| 1053 | } |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 1054 | |
Jay Soffian | 5012699 | 2009-02-14 23:32:14 -0500 | [diff] [blame] | 1055 | if (defined $input_format && $input_format eq 'mbox') { |
| 1056 | if (/^Subject:\s+(.*)$/) { |
| 1057 | $subject = $1; |
| 1058 | } |
| 1059 | elsif (/^From:\s+(.*)$/) { |
| 1060 | ($author, $author_encoding) = unquote_rfc2047($1); |
| 1061 | next if $suppress_cc{'author'}; |
| 1062 | next if $suppress_cc{'self'} and $author eq $sender; |
| 1063 | printf("(mbox) Adding cc: %s from line '%s'\n", |
| 1064 | $1, $_) unless $quiet; |
| 1065 | push @cc, $1; |
| 1066 | } |
| 1067 | elsif (/^Cc:\s+(.*)$/) { |
| 1068 | foreach my $addr (parse_address_line($1)) { |
| 1069 | if (unquote_rfc2047($addr) eq $sender) { |
David Brown | 6564828 | 2007-12-25 19:56:29 -0800 | [diff] [blame] | 1070 | next if ($suppress_cc{'self'}); |
David Brown | 6564828 | 2007-12-25 19:56:29 -0800 | [diff] [blame] | 1071 | } else { |
| 1072 | next if ($suppress_cc{'cc'}); |
Junio C Hamano | 8a8e623 | 2006-03-23 23:43:52 -0800 | [diff] [blame] | 1073 | } |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 1074 | printf("(mbox) Adding cc: %s from line '%s'\n", |
Jay Soffian | 5012699 | 2009-02-14 23:32:14 -0500 | [diff] [blame] | 1075 | $addr, $_) unless $quiet; |
| 1076 | push @cc, $addr; |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 1077 | } |
| 1078 | } |
Jay Soffian | 5012699 | 2009-02-14 23:32:14 -0500 | [diff] [blame] | 1079 | elsif (/^Content-type:/i) { |
| 1080 | $has_content_type = 1; |
| 1081 | if (/charset="?([^ "]+)/) { |
| 1082 | $body_encoding = $1; |
| 1083 | } |
| 1084 | push @xh, $_; |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 1085 | } |
Jay Soffian | 5012699 | 2009-02-14 23:32:14 -0500 | [diff] [blame] | 1086 | elsif (/^Message-Id: (.*)/i) { |
| 1087 | $message_id = $1; |
| 1088 | } |
| 1089 | elsif (!/^Date:\s/ && /^[-A-Za-z]+:\s+\S/) { |
| 1090 | push @xh, $_; |
| 1091 | } |
| 1092 | |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 1093 | } else { |
Jay Soffian | 5012699 | 2009-02-14 23:32:14 -0500 | [diff] [blame] | 1094 | # In the traditional |
| 1095 | # "send lots of email" format, |
| 1096 | # line 1 = cc |
| 1097 | # line 2 = subject |
| 1098 | # So let's support that, too. |
| 1099 | $input_format = 'lots'; |
| 1100 | if (@cc == 0 && !$suppress_cc{'cc'}) { |
| 1101 | printf("(non-mbox) Adding cc: %s from line '%s'\n", |
| 1102 | $_, $_) unless $quiet; |
| 1103 | push @cc, $_; |
| 1104 | } elsif (!defined $subject) { |
| 1105 | $subject = $_; |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 1106 | } |
| 1107 | } |
| 1108 | } |
Jay Soffian | 5012699 | 2009-02-14 23:32:14 -0500 | [diff] [blame] | 1109 | # Now parse the message body |
| 1110 | while(<F>) { |
| 1111 | $message .= $_; |
| 1112 | if (/^(Signed-off-by|Cc): (.*)$/i) { |
Jay Soffian | 5012699 | 2009-02-14 23:32:14 -0500 | [diff] [blame] | 1113 | chomp; |
Jay Soffian | 3531e27 | 2009-02-14 23:32:15 -0500 | [diff] [blame] | 1114 | my ($what, $c) = ($1, $2); |
Jay Soffian | 5012699 | 2009-02-14 23:32:14 -0500 | [diff] [blame] | 1115 | chomp $c; |
Jay Soffian | 3531e27 | 2009-02-14 23:32:15 -0500 | [diff] [blame] | 1116 | if ($c eq $sender) { |
| 1117 | next if ($suppress_cc{'self'}); |
| 1118 | } else { |
| 1119 | next if $suppress_cc{'sob'} and $what =~ /Signed-off-by/i; |
| 1120 | next if $suppress_cc{'bodycc'} and $what =~ /Cc/i; |
| 1121 | } |
Jay Soffian | 5012699 | 2009-02-14 23:32:14 -0500 | [diff] [blame] | 1122 | push @cc, $c; |
Jay Soffian | 3531e27 | 2009-02-14 23:32:15 -0500 | [diff] [blame] | 1123 | printf("(body) Adding cc: %s from line '%s'\n", |
Jay Soffian | 5012699 | 2009-02-14 23:32:14 -0500 | [diff] [blame] | 1124 | $c, $_) unless $quiet; |
| 1125 | } |
| 1126 | } |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 1127 | close F; |
Joe Perches | 324a8bd | 2007-08-17 18:51:12 -0700 | [diff] [blame] | 1128 | |
David Brown | 6564828 | 2007-12-25 19:56:29 -0800 | [diff] [blame] | 1129 | if (defined $cc_cmd && !$suppress_cc{'cccmd'}) { |
Paolo Bonzini | cb8a9bd | 2009-06-18 14:31:32 +0200 | [diff] [blame] | 1130 | open(F, "$cc_cmd \Q$t\E |") |
Joe Perches | 324a8bd | 2007-08-17 18:51:12 -0700 | [diff] [blame] | 1131 | or die "(cc-cmd) Could not execute '$cc_cmd'"; |
| 1132 | while(<F>) { |
| 1133 | my $c = $_; |
| 1134 | $c =~ s/^\s*//g; |
| 1135 | $c =~ s/\n$//g; |
Uwe Kleine-König | 620bb24 | 2007-11-07 08:34:12 +0100 | [diff] [blame] | 1136 | next if ($c eq $sender and $suppress_from); |
Joe Perches | 324a8bd | 2007-08-17 18:51:12 -0700 | [diff] [blame] | 1137 | push @cc, $c; |
| 1138 | printf("(cc-cmd) Adding cc: %s from: '%s'\n", |
| 1139 | $c, $cc_cmd) unless $quiet; |
| 1140 | } |
| 1141 | close F |
| 1142 | or die "(cc-cmd) failed to close pipe to '$cc_cmd'"; |
| 1143 | } |
| 1144 | |
Jay Soffian | 5012699 | 2009-02-14 23:32:14 -0500 | [diff] [blame] | 1145 | if (defined $author and $author ne $sender) { |
Uwe Kleine-König | 94638f8 | 2007-08-09 15:27:58 +0200 | [diff] [blame] | 1146 | $message = "From: $author\n\n$message"; |
Jeff King | 8291db6 | 2007-11-16 05:49:09 -0500 | [diff] [blame] | 1147 | if (defined $author_encoding) { |
| 1148 | if ($has_content_type) { |
| 1149 | if ($body_encoding eq $author_encoding) { |
| 1150 | # ok, we already have the right encoding |
| 1151 | } |
| 1152 | else { |
| 1153 | # uh oh, we should re-encode |
| 1154 | } |
| 1155 | } |
| 1156 | else { |
| 1157 | push @xh, |
| 1158 | 'MIME-Version: 1.0', |
Jeff King | 8641ee3 | 2007-11-20 07:54:04 -0500 | [diff] [blame] | 1159 | "Content-Type: text/plain; charset=$author_encoding", |
| 1160 | 'Content-Transfer-Encoding: 8bit'; |
Jeff King | 8291db6 | 2007-11-16 05:49:09 -0500 | [diff] [blame] | 1161 | } |
| 1162 | } |
Junio C Hamano | 8a8e623 | 2006-03-23 23:43:52 -0800 | [diff] [blame] | 1163 | } |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 1164 | |
Jay Soffian | c1f2aa4 | 2009-03-02 23:52:18 -0500 | [diff] [blame] | 1165 | $needs_confirm = ( |
| 1166 | $confirm eq "always" or |
| 1167 | ($confirm =~ /^(?:auto|cc)$/ && @cc) or |
| 1168 | ($confirm =~ /^(?:auto|compose)$/ && $compose && $message_num == 1)); |
| 1169 | $needs_confirm = "inform" if ($needs_confirm && $confirm_unconfigured && @cc); |
| 1170 | |
| 1171 | @cc = (@initial_cc, @cc); |
| 1172 | |
Michael Witten | 15da108 | 2009-04-13 13:23:51 -0500 | [diff] [blame] | 1173 | my $message_was_sent = send_message(); |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 1174 | |
| 1175 | # set up for the next message |
Junio C Hamano | 95a877a | 2009-06-12 09:23:43 -0700 | [diff] [blame] | 1176 | if ($thread && $message_was_sent && |
Nanako Shiraishi | 528fb08 | 2009-11-29 12:24:48 +0900 | [diff] [blame] | 1177 | (chain_reply_to() || !defined $reply_to || length($reply_to) == 0)) { |
Ryan Anderson | 78488b2 | 2005-07-31 20:04:24 -0400 | [diff] [blame] | 1178 | $reply_to = $message_id; |
Ryan Anderson | 7ccf792 | 2006-05-29 12:30:12 -0700 | [diff] [blame] | 1179 | if (length $references > 0) { |
YOSHIFUJI Hideaki / 吉藤英明 | a925b89 | 2007-04-06 08:50:24 +0900 | [diff] [blame] | 1180 | $references .= "\n $message_id"; |
Ryan Anderson | 7ccf792 | 2006-05-29 12:30:12 -0700 | [diff] [blame] | 1181 | } else { |
| 1182 | $references = "$message_id"; |
| 1183 | } |
Ryan Anderson | 78488b2 | 2005-07-31 20:04:24 -0400 | [diff] [blame] | 1184 | } |
Jeff King | 4f3d370 | 2007-12-17 15:51:34 -0500 | [diff] [blame] | 1185 | $message_id = undef; |
Ryan Anderson | 83b2443 | 2005-07-31 04:17:25 -0400 | [diff] [blame] | 1186 | } |
Ryan Anderson | e205735 | 2005-08-02 21:45:22 -0400 | [diff] [blame] | 1187 | |
Jay Soffian | c1f2aa4 | 2009-03-02 23:52:18 -0500 | [diff] [blame] | 1188 | cleanup_compose_files(); |
Ryan Anderson | 1f038a0 | 2005-09-05 01:13:07 -0400 | [diff] [blame] | 1189 | |
| 1190 | sub cleanup_compose_files() { |
Jay Soffian | c1f2aa4 | 2009-03-02 23:52:18 -0500 | [diff] [blame] | 1191 | unlink($compose_filename, $compose_filename . ".final") if $compose; |
Ryan Anderson | 1f038a0 | 2005-09-05 01:13:07 -0400 | [diff] [blame] | 1192 | } |
| 1193 | |
Eric Wong | 4bc87a2 | 2006-03-25 17:20:48 -0800 | [diff] [blame] | 1194 | $smtp->quit if $smtp; |
Ryan Anderson | e205735 | 2005-08-02 21:45:22 -0400 | [diff] [blame] | 1195 | |
| 1196 | sub unique_email_list(@) { |
| 1197 | my %seen; |
| 1198 | my @emails; |
| 1199 | |
| 1200 | foreach my $entry (@_) { |
Eric Wong | db3106b | 2006-05-15 02:41:01 -0700 | [diff] [blame] | 1201 | if (my $clean = extract_valid_address($entry)) { |
| 1202 | $seen{$clean} ||= 0; |
| 1203 | next if $seen{$clean}++; |
| 1204 | push @emails, $entry; |
| 1205 | } else { |
| 1206 | print STDERR "W: unable to extract a valid address", |
| 1207 | " from: $entry\n"; |
| 1208 | } |
Ryan Anderson | e205735 | 2005-08-02 21:45:22 -0400 | [diff] [blame] | 1209 | } |
| 1210 | return @emails; |
| 1211 | } |
Jeff King | 747bbff | 2008-01-18 09:19:48 -0500 | [diff] [blame] | 1212 | |
| 1213 | sub validate_patch { |
| 1214 | my $fn = shift; |
| 1215 | open(my $fh, '<', $fn) |
| 1216 | or die "unable to open $fn: $!\n"; |
| 1217 | while (my $line = <$fh>) { |
| 1218 | if (length($line) > 998) { |
| 1219 | return "$.: patch contains a line longer than 998 characters"; |
| 1220 | } |
| 1221 | } |
| 1222 | return undef; |
| 1223 | } |
Jeff King | 0706bd1 | 2008-03-28 17:28:33 -0400 | [diff] [blame] | 1224 | |
| 1225 | sub file_has_nonascii { |
| 1226 | my $fn = shift; |
| 1227 | open(my $fh, '<', $fn) |
| 1228 | or die "unable to open $fn: $!\n"; |
| 1229 | while (my $line = <$fh>) { |
| 1230 | return 1 if $line =~ /[^[:ascii:]]/; |
| 1231 | } |
| 1232 | return 0; |
| 1233 | } |