diff options
author | EuAndreh <eu@euandre.org> | 2023-03-15 14:59:24 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-03-15 15:06:43 -0300 |
commit | c55e1af4b4e8e7983207ef7f7383c82517bddb36 (patch) | |
tree | 65bc32540fabc18b2e513d3576a65011bb6bdd78 | |
parent | system.scm: Add daily cronjob for system checks (diff) | |
download | toph-c55e1af4b4e8e7983207ef7f7383c82517bddb36.tar.gz toph-c55e1af4b4e8e7983207ef7f7383c82517bddb36.tar.xz |
system.scm: Remove unused Postfix extra config
- `alias_database` is already being performed the
`mail-aliases-service-type`;
- `canonical_maps` is unused AFAICT.
Notes
See CI logs with:
git notes --ref=refs/notes/ci-logs show c55e1af4b4e8e7983207ef7f7383c82517bddb36
git notes --ref=refs/notes/ci-data show c55e1af4b4e8e7983207ef7f7383c82517bddb36
Exit status: 0
Duration: 19
-rw-r--r-- | src/infrastructure/guix/system.scm | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/infrastructure/guix/system.scm b/src/infrastructure/guix/system.scm index d744624..83617f9 100644 --- a/src/infrastructure/guix/system.scm +++ b/src/infrastructure/guix/system.scm @@ -470,11 +470,7 @@ (mail-in-home? #t))) (service queue:postfix-service-type (queue:postfix-configuration - (mail-in-home? #t) - (main.cf-extra #"- - canonical_maps = inline:{ andreh=eu@euandre.org } - alias_database = static:eu@euandre.org - "#))) + (mail-in-home? #t))) (service mail-aliases-service-type '(("root" "andreh") ("eu" "andreh") |