aboutsummaryrefslogtreecommitdiff
path: root/systems/eldiron/dns.nix
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2023-10-13 00:43:56 +0200
committerIsmaël Bouya <ismael.bouya@normalesup.org>2023-10-13 01:10:12 +0200
commitc4511c38a49c60394b91ec9d4499cdbf41f4e60c (patch)
treee43bc1ab2f5562a871aaa51d19391aadc5dde717 /systems/eldiron/dns.nix
parent1cf1f9162bd4556858a0190eee5bfd7ba0f7bb4c (diff)
downloadNix-c4511c38a49c60394b91ec9d4499cdbf41f4e60c.tar.gz
Nix-c4511c38a49c60394b91ec9d4499cdbf41f4e60c.tar.zst
Nix-c4511c38a49c60394b91ec9d4499cdbf41f4e60c.zip
Change dkim key for a 2048b one
Diffstat (limited to 'systems/eldiron/dns.nix')
-rw-r--r--systems/eldiron/dns.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/systems/eldiron/dns.nix b/systems/eldiron/dns.nix
index 857b233..b076f62 100644
--- a/systems/eldiron/dns.nix
+++ b/systems/eldiron/dns.nix
@@ -50,7 +50,11 @@ in
50 }; 50 };
51 }; 51 };
52 mailSend = { 52 mailSend = {
53 # DKIM 53 # DKIM 2048b
54 subdomains._domainkey.subdomains.eldiron2.TXT = [
55 (toKV config.myEnv.mail.dkim.eldiron2.public)
56 ];
57 # DKIM 1024b
54 subdomains._domainkey.subdomains.eldiron.TXT = [ 58 subdomains._domainkey.subdomains.eldiron.TXT = [
55 (toKV config.myEnv.mail.dkim.eldiron.public) 59 (toKV config.myEnv.mail.dkim.eldiron.public)
56 ]; 60 ];