diff options
author | Wojtek Kosior <koszko@koszko.org> | 2023-12-19 20:51:02 +0100 |
---|---|---|
committer | W. Kosior <koszko@koszko.org> | 2024-09-04 21:02:05 +0200 |
commit | 60fdb47322e452f6dc5d9ddbd79c11d308ec8fb1 (patch) | |
tree | 44a443423b5dcbc6f9ba2a9a006890a166a2e25e | |
parent | 4f9ccf41a6236e64018b73de5c8172ca1ba4461c (diff) | |
download | guix-60fdb47322e452f6dc5d9ddbd79c11d308ec8fb1.tar.gz guix-60fdb47322e452f6dc5d9ddbd79c11d308ec8fb1.zip |
gnu: exim: Enable Maildir delivery format.
* gnu/packages/mail.scm (exim)[arguments]<#:phases>['configure]: Set
`SUPPORT_MAILDIR` config option to "yes".
Change-Id: Ibb2b0bcd5b4a790eedfdc12f794a43625cb88250
-rw-r--r-- | gnu/packages/mail.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 3fe593a01c..258e69341e 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -2023,6 +2023,8 @@ delivery.") (("(ZCAT_COMMAND=).*" all var) (string-append var (search-input-file inputs "bin/zcat") "\n")) + (("# (SUPPORT_MAILDIR=yes)" all line) + line) (("# (USE_GNUTLS(|_PC)=.*)" all line) (string-append line "\n")) (("# (AUTH_CRAM_MD5=yes)" all line) line) |