user/b12f: don't use real name for all email addresses
This commit is contained in:
parent
9439ed4c44
commit
6f3fce1d9f
|
@ -14,7 +14,7 @@ with lib; let
|
||||||
|
|
||||||
generateMailAccount = args@{ address, ... }: rec {
|
generateMailAccount = args@{ address, ... }: rec {
|
||||||
inherit address;
|
inherit address;
|
||||||
realName = psCfg.user.fullName;
|
realName = if (args ? "fullName") then args.fullName else psCfg.user.fullName;
|
||||||
signature = {
|
signature = {
|
||||||
showSignature = "append";
|
showSignature = "append";
|
||||||
text = if (args ? "emptysignature") then "" else builtins.readFile (./.config/neomutt + "/${builtins.replaceStrings ["@"] ["_"] address}.signature");
|
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";
|
address = mkEmailAddress "mail" "mezza.biz";
|
||||||
host = "mail.mezza.biz";
|
host = "mail.mezza.biz";
|
||||||
emptysignature = true;
|
emptysignature = true;
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
|
fullname = "hwd"+ "zz";
|
||||||
address = mkEmailAddress "mail" "h" + "w" + "dz" + "z.net";
|
address = mkEmailAddress "mail" "h" + "w" + "dz" + "z.net";
|
||||||
host = "mail.h" + "w" + "dz" + "z.net";
|
host = "mail.h" + "w" + "dz" + "z.net";
|
||||||
emptysignature = true;
|
emptysignature = true;
|
||||||
|
|
Loading…
Reference in a new issue