File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -759,7 +759,8 @@ sub file_declares_8bit_cte {
759
759
}
760
760
761
761
if (!@initial_to && !defined $to_cmd ) {
762
- my $to = ask(" Who should the emails be sent to? " ,
762
+ my $to = ask(" Who should the emails be sent to (if any)? " ,
763
+ default => " " ,
763
764
valid_re => qr /\@ .*\. / , confirm_only => 1);
764
765
push @initial_to , parse_address_line($to ) if defined $to ; # sanitized/validated later
765
766
$prompting ++;
@@ -786,7 +787,8 @@ sub expand_one_alias {
786
787
787
788
if ($thread && !defined $initial_reply_to && $prompting ) {
788
789
$initial_reply_to = ask(
789
- " Message-ID to be used as In-Reply-To for the first email? " ,
790
+ " Message-ID to be used as In-Reply-To for the first email (if any)? " ,
791
+ default => " " ,
790
792
valid_re => qr /\@ .*\. / , confirm_only => 1);
791
793
}
792
794
if (defined $initial_reply_to ) {
You can’t perform that action at this time.
0 commit comments