Use hashed passwordfile just to be safe

This commit is contained in:
Zuckerberg 2023-04-09 23:00:10 -06:00
parent 1065cc4b59
commit 3412d5caf9
4 changed files with 3 additions and 1 deletions

View File

@ -43,7 +43,7 @@ in
"robot@neet.dev" "robot@neet.dev"
]; ];
sendOnly = true; sendOnly = true;
hashedPassword = "$2b$05$hkmwXGJSKuG/1.SmLecWSuzlq1F5pjp2ScoipQoVLR0ssSN5MgRs."; hashedPasswordFile = "/run/agenix/hashed-robots-email-pw";
}; };
}; };
rejectRecipients = [ rejectRecipients = [
@ -55,6 +55,7 @@ in
certificateScheme = 3; # use let's encrypt for certs certificateScheme = 3; # use let's encrypt for certs
}; };
age.secrets.email-pw.file = ../../secrets/email-pw.age; age.secrets.email-pw.file = ../../secrets/email-pw.age;
age.secrets.hashed-robots-email-pw.file = ../../secrets/hashed-robots-email-pw.age;
# sendmail to use xxx@domain instead of xxx@mail.domain # sendmail to use xxx@domain instead of xxx@mail.domain
services.postfix.origin = "$mydomain"; services.postfix.origin = "$mydomain";

Binary file not shown.

Binary file not shown.

View File

@ -15,6 +15,7 @@ in
# email # email
"email-pw.age".publicKeys = all; "email-pw.age".publicKeys = all;
"sasl_relay_passwd.age".publicKeys = all; "sasl_relay_passwd.age".publicKeys = all;
"hashed-robots-email-pw.age".publicKeys = all;
"robots-email-pw.age".publicKeys = all; "robots-email-pw.age".publicKeys = all;
# vpn # vpn