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