diff options
author | Christopher Baines <mail@cbaines.net> | 2019-04-04 17:36:49 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2019-05-31 20:22:20 +0100 |
commit | f6b0e1f8ff6a6459d7d39238ced165f4caa988fe (patch) | |
tree | 332669aefb9896461c6ead1b2bdf606c33b74271 /gnu/local.mk | |
parent | 9bc1de31348858278067a45c5965328677ee74d8 (diff) | |
download | guix-f6b0e1f8ff6a6459d7d39238ced165f4caa988fe.tar.gz |
services: Add getmail.
Getmail is a mail retriever written in Python, this commit adds a service-type to run getmail. I'm looking at this, as it's a convinient way of getting mailing list messages in to Patchwork. I initially tried putting this in the (gnu services mail) module, but due to also trying to use the define-configuration pattern, it conflicted with the dovecot service. * gnu/services/getmail.scm: New file. * gnu/local.mk: Add it. * gnu/tests/mail.scm (%getmail-os, %test-getmail): New variables. (run-getmail-test): New procedure.
Diffstat (limited to 'gnu/local.mk')
-rw-r--r-- | gnu/local.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/local.mk b/gnu/local.mk index 55fa90f926..9b9c6e00ec 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -516,6 +516,7 @@ GNU_SYSTEM_MODULES = \ %D%/services/docker.scm \ %D%/services/authentication.scm \ %D%/services/games.scm \ + %D%/services/getmail.scm \ %D%/services/kerberos.scm \ %D%/services/lirc.scm \ %D%/services/virtualization.scm \ |