summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2020-11-27 18:45:32 -0500
committerBen Sima <ben@bsima.me>2020-11-27 18:45:32 -0500
commit330845b0f7cfc2a1b3ba051964242984a3e5568e (patch)
treedc5097d043ddac9600170de96a33ce5a2b7567e2
parent2a64d39eb1a2d8cd87bfad162b778d24be7fb4fc (diff)
Change git sendemail config to use my sendmail script
-rw-r--r--linux.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/linux.nix b/linux.nix
index d066365..a6e3a52 100644
--- a/linux.nix
+++ b/linux.nix
@@ -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";
};
};
};