34 lines
598 B
Nix
34 lines
598 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"
|
|
"forum@selby.ca"
|
|
|
|
"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" ];
|
|
}
|