diff options
author | EuAndreh <eu@euandre.org> | 2022-11-28 17:13:00 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-11-28 17:13:00 -0300 |
commit | 8733be257fc29fe91a1f30d1c664542dc0b9ce16 (patch) | |
tree | 27bf6e10a4bb1c132f576652716e1769ea11f131 | |
parent | src/infrastructure/guix/system.scm: Use alias_database with "static:" is not ... (diff) | |
download | toph-8733be257fc29fe91a1f30d1c664542dc0b9ce16.tar.gz toph-8733be257fc29fe91a1f30d1c664542dc0b9ce16.tar.xz |
src/infrastructure/guix/system.scm: Fix email loop with virtual_alias_database
-rw-r--r-- | src/infrastructure/guix/system.scm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/infrastructure/guix/system.scm b/src/infrastructure/guix/system.scm index 47dde4a..41a62a0 100644 --- a/src/infrastructure/guix/system.scm +++ b/src/infrastructure/guix/system.scm @@ -1047,8 +1047,8 @@ myhostname = ~a mydestination = $myhostname, $mydomain, localhost.$mydomain, localhost - # alias_maps = hash:/etc/aliases - alias_maps = hash:/etc/aliases, static:andreh + alias_maps = hash:/etc/aliases + # alias_maps = hash:/etc/aliases, static:andreh home_mailbox = Mail/Inbox/ @@ -1916,14 +1916,15 @@ (format #f #"- canonical_maps = inline:{ ~a=~a } - # alias_database = static:~a + virtual_alias_database = static:~a "# whoami public-me public-me)))) (service mail-aliases-service-type `(("root" ,whoami) - (,me ,whoami))) + (,me ,whoami) + ("mailing-list" ,whoami))) (simple-service 'extra-etc-file etc-service-type `(("rc" ,rc.sh) ("gitconfig" ,gitconfig))) |