summaryrefslogtreecommitdiff
path: root/os/kay/modules/mail.nix
diff options
context:
space:
mode:
authorsinanmohd <sinan@sinanmohd.com>2025-02-05 12:18:08 +0530
committersinanmohd <sinan@sinanmohd.com>2025-02-05 12:18:08 +0530
commit57013396294aaae82c2b152a9c344c73e04d51ed (patch)
treeee4d399e68c246a3f0c14057f3ca221f212ce5e1 /os/kay/modules/mail.nix
parent1b869e20a214935ec5b195af16d1445f2f5d88b7 (diff)
kay/mail: add account for auto
Diffstat (limited to 'os/kay/modules/mail.nix')
-rw-r--r--os/kay/modules/mail.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/os/kay/modules/mail.nix b/os/kay/modules/mail.nix
index 22f9c2d..a418a86 100644
--- a/os/kay/modules/mail.nix
+++ b/os/kay/modules/mail.nix
@@ -4,9 +4,13 @@
username = config.global.userdata.name;
email = [
"${username}@${domain}"
- "official@${domain}"
+ # used by github automation
+ # https://github.com/nocodb/nocodb/blob/32826d4b24e9285b898bb3547fdf550f81c930bb/nix/bumper/bumper.sh#L5
+ "auto@${domain}"
+ # used by mail.sinanmohd.com
"postmaster@${domain}"
+ # used by ns1.sinanmohd.com
"hostmaster@${domain}"
];