From a225edd9cbe2a14e8461bc64bb78ab3bf8fbefb1 Mon Sep 17 00:00:00 2001 From: Amin Bandali Date: Thu, 23 Jan 2020 17:48:42 -0500 Subject: [PATCH] guix: add local dovecot mail server to chaman note: the dovecot/auth process runs as a non-root `dovecot' user, which needs to be able to read the passwd file. therefore, the file itself needs to have the read bit set accordingly, and its parent directories need the executable bit. --- .config/guix/system/chaman.scm | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/.config/guix/system/chaman.scm b/.config/guix/system/chaman.scm index 6a359fb..e17d465 100644 --- a/.config/guix/system/chaman.scm +++ b/.config/guix/system/chaman.scm @@ -1,5 +1,5 @@ (use-modules (gnu)) -(use-service-modules desktop networking ssh xorg) +(use-service-modules desktop mail networking ssh xorg) (operating-system (host-name "chaman") @@ -53,4 +53,22 @@ (set-xorg-configuration (xorg-configuration (keyboard-layout keyboard-layout))) + (dovecot-service + #:config + (dovecot-configuration + ;; (log-path "/dev/stderr") + (protocols (list (protocol-configuration + (name "imap")))) + (ssl? "no") + (listen '("127.0.0.1")) + (disable-plaintext-auth? #f) + (auth-mechanisms '("plain")) + (postmaster-address "mab@gnu.local") + (mail-location "maildir:/home/mab/mail/%d/%n/mail") + (userdbs (list (userdb-configuration + (driver "static") + (args (list "uid=mab" "gid=users" "home=/home/mab/mail/%d/%n"))))) + (passdbs (list (passdb-configuration + (driver "passwd-file") + (args (list "/data/dovecot-passwd"))))))) %desktop-services))) -- 2.20.1