diff options
| author | 2026-05-13 13:43:24 +0100 | |
|---|---|---|
| committer | 2026-05-13 13:43:24 +0100 | |
| commit | 215c027b2546aafab79f824eacded9c3f2c5cf09 (patch) | |
| tree | 780fadf7ef216ae04a9f7160781680d2173012bb | |
| parent | 3b69f8e3c6c1494da1ab85c65476efc90fa13dfb (diff) | |
| download | dotfiles-215c027b2546aafab79f824eacded9c3f2c5cf09.tar.gz dotfiles-215c027b2546aafab79f824eacded9c3f2c5cf09.tar.bz2 dotfiles-215c027b2546aafab79f824eacded9c3f2c5cf09.zip | |
fix(git): allow self-signed cert for ProtonMail Bridge SMTP
The Bridge presents a self-signed cert on its 127.0.0.1:1025 STARTTLS
listener, so git send-email's default cert verification fails with
SSL_verify_cert. Setting smtpSslCertPath to empty disables chain
verification for this single, loopback-only endpoint.
Per https://git-send-email.io/#step-2 (Proton Bridge note).
| -rw-r--r-- | dot_config/git/config | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/dot_config/git/config b/dot_config/git/config index ed0fabd..33687e7 100644 --- a/dot_config/git/config +++ b/dot_config/git/config @@ -138,6 +138,7 @@ smtpServerPort = 1025 smtpEncryption = tls smtpDomain = localhost + smtpSslCertPath = confirm = auto suppresscc = self chainReplyTo = false |
