These configuration variables specify the paths to commands so we should support tilde-expansion for files inside a user's home directory. Signed-off-by: John Keeping <john@xxxxxxxxxxxxx> --- git-send-email.perl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/git-send-email.perl b/git-send-email.perl index 719c715..8e4c0e1 100755 --- a/git-send-email.perl +++ b/git-send-email.perl @@ -242,9 +242,7 @@ my %config_settings = ( "smtpdomain" => \$smtp_domain, "smtpauth" => \$smtp_auth, "to" => \@initial_to, - "tocmd" => \$to_cmd, "cc" => \@initial_cc, - "cccmd" => \$cc_cmd, "aliasfiletype" => \$aliasfiletype, "bcc" => \@bcclist, "suppresscc" => \@suppress_cc, @@ -259,6 +257,8 @@ my %config_settings = ( my %config_path_settings = ( "aliasesfile" => \@alias_files, "smtpsslcertpath" => \$smtp_ssl_cert_path, + "tocmd" => \$to_cmd, + "cccmd" => \$cc_cmd, ); # Handle Uncouth Termination -- 2.6.3.462.gbe2c914 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html