X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=git-send-email.perl;h=e793935b4f2980aa1e333f7e8424b293b4b59399;hb=d7107ca65f79c2d95bc327bee44c09073b4de631;hp=cccbf4517aa46d4d217a1ce25105f7c413301d2d;hpb=86e081aea408a4ff34001d6f221cc42e46ebbaa0;p=git.git diff --git a/git-send-email.perl b/git-send-email.perl index cccbf4517..e793935b4 100755 --- a/git-send-email.perl +++ b/git-send-email.perl @@ -210,6 +210,7 @@ my %config_settings = ( "envelopesender" => \$envelope_sender, "multiedit" => \$multiedit, "confirm" => \$confirm, + "from" => \$sender, ); # Handle Uncouth Termination @@ -409,7 +410,7 @@ my %parse_alias = ( mailrc => sub { my $fh = shift; while (<$fh>) { if (/^alias\s+(\S+)\s+(.*)$/) { # spaces delimit multiple addresses - $aliases{$1} = [ split(/\s+/, $2) ]; + $aliases{$1} = [ quotewords('\s+', 0, $2) ]; }}}, pine => sub { my $fh = shift; my $f='\t[^\t]*'; for (my $x = ''; defined($x); $x = $_) {