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