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 {
759759}
760760
761761if (!@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 => " " ,
763764 valid_re => qr /\@ .*\. / , confirm_only => 1);
764765 push @initial_to , parse_address_line($to ) if defined $to ; # sanitized/validated later
765766 $prompting ++;
@@ -786,7 +787,8 @@ sub expand_one_alias {
786787
787788if ($thread && !defined $initial_reply_to && $prompting ) {
788789 $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 => " " ,
790792 valid_re => qr /\@ .*\. / , confirm_only => 1);
791793}
792794if (defined $initial_reply_to ) {
You can’t perform that action at this time.
0 commit comments