Skip to content

Commit

Permalink
Merge branch 'sb/send-email-reconfirm-fix' into maint
Browse files Browse the repository at this point in the history
* sb/send-email-reconfirm-fix:
  send-email: initial_to and initial_reply_to are both optional
  • Loading branch information
Junio C Hamano committed Sep 15, 2012
2 parents 448e370 + 6183749 commit c13a5ac
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions git-send-email.perl
Original file line number Diff line number Diff line change
Expand Up @@ -759,7 +759,8 @@ sub file_declares_8bit_cte {
}

if (!@initial_to && !defined $to_cmd) {
my $to = ask("Who should the emails be sent to? ",
my $to = ask("Who should the emails be sent to (if any)? ",
default => "",
valid_re => qr/\@.*\./, confirm_only => 1);
push @initial_to, parse_address_line($to) if defined $to; # sanitized/validated later
$prompting++;
Expand All @@ -786,7 +787,8 @@ sub expand_one_alias {

if ($thread && !defined $initial_reply_to && $prompting) {
$initial_reply_to = ask(
"Message-ID to be used as In-Reply-To for the first email? ",
"Message-ID to be used as In-Reply-To for the first email (if any)? ",
default => "",
valid_re => qr/\@.*\./, confirm_only => 1);
}
if (defined $initial_reply_to) {
Expand Down

0 comments on commit c13a5ac

Please sign in to comment.