diff options
author | Ben Morrison <ben@gbmor.dev> | 2020-05-29 01:30:38 -0400 |
---|---|---|
committer | Ben Morrison <ben@gbmor.dev> | 2020-05-29 01:32:38 -0400 |
commit | 2b98bc65d19bfc97561df9ba2db3839e5bf53a5f (patch) | |
tree | 9d49b1de821400eddcc0fef2e98ee99ff0a0837d /.config/git | |
parent | 70c34c4e076522639eebc980c4ee84e17ada0da3 (diff) | |
download | dogfiles-2b98bc65d19bfc97561df9ba2db3839e5bf53a5f.tar.gz |
changed smtp config for git send-email
Diffstat (limited to '.config/git')
-rw-r--r-- | .config/git/config | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/.config/git/config b/.config/git/config index 28c9815..0a5c940 100644 --- a/.config/git/config +++ b/.config/git/config @@ -1,8 +1,8 @@ [sendemail] - smtpencryption = tls - smtpserver = smtp.fastmail.com - smtpuser = ben@gbmor.dev - smtpserverport = 465 + smtpEncryption = tls + smtpServer = smtp.fastmail.com + smtpUser = ben@gbmor.dev + smtpServerPort = 587 annotate = yes [user] name = "Ben Morrison" @@ -15,3 +15,5 @@ protocol = ssh [sequence] editor = interactive-rebase-tool +[credential] + helper = cache --timeout 3600 |