diff options
author | Ben Sima <ben@bsima.me> | 2020-11-27 18:45:32 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-11-27 18:45:32 -0500 |
commit | 330845b0f7cfc2a1b3ba051964242984a3e5568e (patch) | |
tree | dc5097d043ddac9600170de96a33ce5a2b7567e2 /linux.nix | |
parent | 2a64d39eb1a2d8cd87bfad162b778d24be7fb4fc (diff) |
Change git sendemail config to use my sendmail script
Diffstat (limited to 'linux.nix')
-rw-r--r-- | linux.nix | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -394,11 +394,12 @@ in push.default = "simple"; commit.template = builtins.readFile ./lib/git-commit-template; sendemail = { - smtpuser = "ben@bsima.me"; - smtpserverport = 587; - smtpserver = "mail.bsima.me"; + #smtpuser = "ben@bsima.me"; + #smtpserverport = 587; + smtpserver = "${homedir}/bin/sendmail"; chainreplyto = false; composeencoding = "UTF-8"; + annotate = "yes"; }; }; }; |