aboutsummaryrefslogtreecommitdiff
path: root/tests/modules/accounts
diff options
context:
space:
mode:
authorAndrew Fontaine <andrew@afontaine.ca>2020-07-20 08:54:18 -0400
committerRobert Helgesson <robert@rycee.net>2020-08-13 21:36:31 +0200
commitbaea46c5acbb4a5be9b109d8ce06d2aec197353f (patch)
tree1b210b26606902e764e09d920282d986c7e38414 /tests/modules/accounts
parentfceef469c2ec99232d847f1d9d6b32665d915bbb (diff)
git: set SSL if useStartTls is false
The git-send-email [0] script uses StartTLS if `smtpEncryption` is set to `tls`, which can break services that don't support StartTLS. [0]: https://github.com/git/git/blob/bd42bbe1a46c0fe486fc33e82969275e27e4dc19/git-send-email.perl#L1533 PR #1395
Diffstat (limited to 'tests/modules/accounts')
-rw-r--r--tests/modules/accounts/email-test-accounts.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/modules/accounts/email-test-accounts.nix b/tests/modules/accounts/email-test-accounts.nix
index 9c9c90cf8fe..9a4e0b8e72f 100644
--- a/tests/modules/accounts/email-test-accounts.nix
+++ b/tests/modules/accounts/email-test-accounts.nix
@@ -21,6 +21,7 @@
passwordCommand = "password-command 2";
imap.host = "imap.example.org";
smtp.host = "smtp.example.org";
+ smtp.tls.useStartTls = true;
};
};
};