thrall: Add archive@failco.de email account

This commit is contained in:
Alexander Kobjolke 2023-04-11 00:51:44 +02:00
parent d51551aa4e
commit a257e533c4
3 changed files with 8 additions and 1 deletions

View file

@ -36,6 +36,7 @@ in {
age.secrets = {
mailPass.file = ../../secrets/mailPass.age;
paperless-mail.file = ../../secrets/paperless-mail.age;
wireguard-thrall.file = ../../secrets/wireguard-thrall.age;
};
@ -312,6 +313,10 @@ in {
catchAll = [ "jakalx.net" ];
};
"archive@failco.de" = {
hashedPasswordFile = config.age.secrets.paperless-mail.path;
};
};
certificateScheme = 3;

BIN
secrets/paperless-mail.age Normal file

Binary file not shown.

View file

@ -1,10 +1,12 @@
let
thrall = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJHNRSYszckbCwKoX/cci8D40DGM/SG/NJ/u/uB361re";
alex = "age13uv5phqjuvd90rr3aa7mg3xsmcmyx8cfz9v52w2a782qecssja9sw9nt8a";
systems = [ thrall ];
users = [];
users = [ alex ];
in
{
"mailPass.age".publicKeys = users ++ systems;
"paperless-mail.age".publicKeys = users ++ systems;
"wireguard-thrall.age".publicKeys = [thrall];
}