37 lines
589 B
Nix
37 lines
589 B
Nix
# A map of user to a list of email aliases (better for users with multiple nicknames)
|
|
|
|
{
|
|
"niten@fudo.link" = [
|
|
"ertian@fudo.org"
|
|
"peter@fudo.org"
|
|
"peter@fudo.link"
|
|
"pselby@fudo.org"
|
|
"yiliu@fudo.org"
|
|
|
|
"peter@selby.ca"
|
|
];
|
|
|
|
"xiaoxuan@fudo.org" = [
|
|
"xixi@fudo.org"
|
|
"claire@fudo.org"
|
|
|
|
"xixi@selby.ca"
|
|
"claire@selby.ca"
|
|
];
|
|
|
|
"reaper@fudo.org" = [
|
|
"cricket@fudo.org"
|
|
"jstewart@fudo.org"
|
|
"jonathan@fudo.org"
|
|
"reaper@fudo.link"
|
|
];
|
|
|
|
"swaff@fudo.org" = [
|
|
"mark@fudo.org"
|
|
];
|
|
|
|
"ken@selby.ca" = [
|
|
"kselby@selby.ca"
|
|
];
|
|
}
|