feat: add bitwarden send mail to mailserver

Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
This commit is contained in:
Lander Van den Bulcke 2025-10-21 10:56:51 +02:00
parent 9d5d5f447a
commit bf3dc8f03e
Signed by: lander
GPG key ID: 0142722B4B0C536F
2 changed files with 17 additions and 3 deletions

View file

@ -15,7 +15,10 @@ in
mailserver = {
enable = true;
fqdn = "mail.escapeangle.com";
domains = [ "escapeangle.com" ];
domains = [
"escapeangle.com"
"kinkystar.com"
];
loginAccounts = {
"lander@escapeangle.com" = {
@ -37,6 +40,11 @@ in
"forgejo@escapeangle.com" = {
hashedPasswordFile = config.sops.secrets.mail-password-forgejo.path;
};
"bitwarden@kinkystar.com" = {
hashedPasswordFile = config.sops.secrets.mail-password-kinkystar-bitwarden.path;
sendOnly = true;
};
};
extraVirtualAliases = {
@ -76,6 +84,11 @@ in
owner = "root";
group = "root";
};
mail-password-kinkystar-bitwarden = {
owner = "root";
group = "root";
};
};
};