]> git.ipfire.org Git - thirdparty/git.git/blobdiff - git-send-email.perl
diff --quiet
[thirdparty/git.git] / git-send-email.perl
index a71a192e4d752b7d79493321df5f82fbdd682dc7..6989c0260fcafe29397c89cfcc61a8ef9a49d58e 100755 (executable)
@@ -149,6 +149,16 @@ if ($@) {
        $term = new FakeTerm "$@: going non-interactive";
 }
 
+my $def_chain = $repo->config_boolean('sendemail.chainreplyto');
+if ($def_chain and $def_chain eq 'false') {
+    $chain_reply_to = 0;
+}
+
+@bcclist = $repo->config('sendemail.bcc');
+if (!@bcclist or !$bcclist[0]) {
+    @bcclist = ();
+}
+
 # Begin by accumulating all the variables (defined above), that we will end up
 # needing, first, from the command line: