Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated configs to include new emails #101

Merged
merged 3 commits into from Apr 4, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
21 changes: 11 additions & 10 deletions services/postfix/aliases.nix
Expand Up @@ -26,7 +26,7 @@
"uucp" = "root";
"xten" = "root";
"postfix" = "root";
"abuse" = "rb-admins,chair,sec";
"abuse" = "redbrick-admins,chair,sec";
"security" = "root";
"ftp" = "root";
"ftp-bugs" = "ftp";
Expand All @@ -43,18 +43,18 @@
"mailman-admin" = "mailman";

# Where root mail goes. VERY IMPORTANT!
"root" = "rb-admins";
"root" = "redbrick-admins";

#----------------#
# Administrators #
#----------------#

# Who wants to get system reports, cron job output etc.
"system-reports" = "rb-admins";
"system-reports" = "redbrick-admins";
"audit_warn" = "system-reports";

# Offical way to contact admins for requests.
"admin-request" = "rb-admins, ticket";
"admin-request" = "redbrick-admins, ticket";
"elected-admin" = "elected-admins";

# Where mail addressed to generic 'admins' goes.
Expand All @@ -64,11 +64,12 @@
# DCU admin list.
#
# <plop>: Thu May 28 11:07:05 BST 1998
"dcu-admin-list" = "rb-admins, sysops@dcu.ie, mcgorman@compapp.dcu.ie";
"dcu-admin-list" = "sysops@dcu.ie, mcgorman@compapp.dcu.ie";

# Admin Mailing lists
"rb-admins" = "rb-admins@lists.${tld}";
"elected-admins" = "elected-admins@lists.${tld}";
"rb-admins" = "redbrick-admins@lists.${tld}";
"redbrick-admins" = "redbrick-admins@lists.${tld}";
"elected-admins" = "elected-admins-2021@lists.${tld}";
"admin-discuss" = "admin-discuss@lists.${tld}";
"trainee-admins" = "trainee-admins@lists.${tld}";

Expand All @@ -79,7 +80,7 @@
# webmaster is a mailman list
"httpd" = "webmaster";
"www" = "webmaster";
"webmaster" = "webmaster@lists.${tld}";
"webmaster" = "webmaster-2021@lists.${tld}";

#---------------------#
# Committee & Society #
Expand All @@ -89,14 +90,14 @@
"founders" = "drjolt, wibble, sandman, fergus, swipe, hyper";

# Committee is a mailing list (handled by mailman)
"committee" = "committee@lists.${tld}";
"committee" = "committee-2021@lists.${tld}";

# HELP! requests.
"help" = "helpdesk";
"support" = "helpdesk";
"help-request" = "helpdesk";
"helpdesk-request" = "helpdesk";
"helpdesk" = "helpdesk@lists.${tld}";
"helpdesk" = "helpdesk-2021@lists.${tld}";

# Chairperson alias.
"chairperson" = "chair";
Expand Down