user/b12f: don't use real name for all email addresses

This commit is contained in:
b12f 2024-08-18 18:53:31 +02:00
parent 9439ed4c44
commit 6f3fce1d9f
Signed by: b12f
GPG key ID: 729956E1124F8F26

View file

@ -14,7 +14,7 @@ with lib; let
generateMailAccount = args@{ address, ... }: rec {
inherit address;
realName = psCfg.user.fullName;
realName = if (args ? "fullName") then args.fullName else psCfg.user.fullName;
signature = {
showSignature = "append";
text = if (args ? "emptysignature") then "" else builtins.readFile (./.config/neomutt + "/${builtins.replaceStrings ["@"] ["_"] address}.signature");
@ -133,11 +133,13 @@ in {
};
}
{
fullName = "mezza";
address = mkEmailAddress "mail" "mezza.biz";
host = "mail.mezza.biz";
emptysignature = true;
}
{
fullname = "hwd"+ "zz";
address = mkEmailAddress "mail" "h" + "w" + "dz" + "z.net";
host = "mail.h" + "w" + "dz" + "z.net";
emptysignature = true;