email: badly obfuscate addresses
This commit is contained in:
parent
b9f0063993
commit
cb4c54ce38
|
@ -13,6 +13,7 @@
|
|||
deploy = import ./deploy.nix { inherit inputs lib; };
|
||||
addLocalHostname = callLibs ./add-local-hostname.nix;
|
||||
recursiveMerge = callLibs ./recursive-merge.nix;
|
||||
mkEmailAddress = account: domain: account + "@" + domain;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
flake,
|
||||
...
|
||||
}:
|
||||
with lib; let
|
||||
|
@ -15,7 +16,7 @@ with lib; let
|
|||
realName = psCfg.user.fullName;
|
||||
signature = {
|
||||
showSignature = "append";
|
||||
text = builtins.readFile (./.config/neomutt + "/${address}.signature");
|
||||
text = builtins.readFile (./.config/neomutt + "/${builtins.replaceStrings ["@"] ["_"] address}.signature");
|
||||
};
|
||||
|
||||
folders = {
|
||||
|
@ -84,9 +85,9 @@ in {
|
|||
accounts.email = {
|
||||
maildirBasePath = "/home/${psCfg.user.name}/Mail";
|
||||
|
||||
accounts = lib.lists.foldr (item: set: (set // { "${item.address}" = generateMailAccount item; })) {} [
|
||||
accounts = with flake.self.lib; lib.lists.foldr (item: set: (set // { "${item.address}" = generateMailAccount item; })) {} [
|
||||
{
|
||||
address = "hello@benjaminbaedorf.eu";
|
||||
address = mkEmailAddress "hello" "benjaminbaedorf.eu";
|
||||
host = "mail.hosting.de";
|
||||
config.primary = true;
|
||||
}
|
||||
|
@ -95,32 +96,32 @@ in {
|
|||
host = "mail.b12f.io";
|
||||
}
|
||||
{
|
||||
address = "benjamin.baedorf@rwth-aachen.de";
|
||||
address = mkEmailAddress "benjamin.baedorf" "rwth-aachen.de";
|
||||
host = "mail.rwth-aachen.de";
|
||||
config.userName = "bb564306@rwth-aachen.de";
|
||||
config.userName = mkEmailAddress "bb564306" "rwth-aachen.de";
|
||||
}
|
||||
{
|
||||
address = "byb@miom.space";
|
||||
address = mkEmailAddress "byb" "miom.space";
|
||||
host = "mail.hosting.de";
|
||||
}
|
||||
{
|
||||
address = "admins@pub.solar";
|
||||
address = mkEmailAddress "admins" "pub.solar";
|
||||
host = "mail.greenbaum.zone";
|
||||
}
|
||||
{
|
||||
address = "crew@pub.solar";
|
||||
address = mkEmailAddress "crew" "pub.solar";
|
||||
host = "mail.greenbaum.zone";
|
||||
}
|
||||
# {
|
||||
# address = mkEmailAddress "benjamin.yule.baedorf" "verkstedt.com";
|
||||
# flavor = "gmail";
|
||||
# config = {
|
||||
# smtp.host = "smtp.gmail.com";
|
||||
# imap.host = "imap.gmail.com";
|
||||
# };
|
||||
# }
|
||||
{
|
||||
address = "benjamin.yule.baedorf@verkstedt.com";
|
||||
flavor = "gmail";
|
||||
config = {
|
||||
smtp.host = "smtp.gmail.com";
|
||||
imap.host = "imap.gmail.com";
|
||||
};
|
||||
}
|
||||
{
|
||||
address = "benjamin-yule.baedorf@ext.ehealthexperts.de";
|
||||
address = mkEmailAddress "benjamin-yule.baedorf" "ext.ehealthexperts.de";
|
||||
config = {
|
||||
smtp.host = "smtp.mailbox.org";
|
||||
imap.host = "imap.mailbox.org";
|
||||
|
|
Loading…
Reference in a new issue