When the batch size is neither configured nor given on the command line, but the relogin delay is given, then the user is not using the the feature as intended. But as the user gave a relogin delay, there is clearly the intention to delay sending out emails. Assume a batch size of 1 instead of silently ignoring the given relogin delay. Signed-off-by: Stefan Beller <sbeller@xxxxxxxxxx> --- git-send-email.perl | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/git-send-email.perl b/git-send-email.perl index 340b5c8482..5672e05b98 100755 --- a/git-send-email.perl +++ b/git-send-email.perl @@ -379,6 +379,12 @@ unless ($rc) { die __("Cannot run git format-patch from outside a repository\n") if $format_patch and not $repo; +if (defined $relogin_delay) { + if (not defined $batch_size) { + $batch_size = 1; + } +} + # Now, let's fill any that aren't set in with defaults: sub read_config { -- 2.15.1.433.g936d1b9894.dirty