[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: exim: Enable authenticators.
From: |
guix-commits |
Subject: |
branch master updated: gnu: exim: Enable authenticators. |
Date: |
Thu, 10 Dec 2020 09:37:26 -0500 |
This is an automated email from the git hooks/post-receive script.
arunisaac pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 793713d gnu: exim: Enable authenticators.
793713d is described below
commit 793713dc3f227cf3b3a22bf45f6da682fa9165ed
Author: divoplade <d@divoplade.fr>
AuthorDate: Tue Nov 10 14:21:17 2020 +0100
gnu: exim: Enable authenticators.
* gnu/packages/mail.scm (exim)[arguments]: Enable cram_md5, dovecot,
external,
plaintext, spa and tls authenticators in configure phase.
Signed-off-by: Arun Isaac <arunisaac@systemreboot.net>
---
gnu/packages/mail.scm | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index 6e3ee4c..f857134 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -39,6 +39,7 @@
;;; Copyright © 2020 Alexandru-Sergiu Marton <brown121407@posteo.ro>
;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
;;; Copyright © 2020 B. Wilson <elaexuotee@wilsonb.com>
+;;; Copyright © 2020 divoplade <d@divoplade.fr>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1700,7 +1701,13 @@ delivery.")
(("(ZCAT_COMMAND=).*" all var)
(string-append var gzip "/bin/zcat\n"))
(("# (USE_GNUTLS(|_PC)=.*)" all line)
- (string-append line "\n")))
+ (string-append line "\n"))
+ (("# (AUTH_CRAM_MD5=yes)" all line) line)
+ (("# (AUTH_DOVECOT=yes)" all line) line)
+ (("# (AUTH_EXTERNAL=yes)" all line) line)
+ (("# (AUTH_PLAINTEXT=yes)" all line) line)
+ (("# (AUTH_SPA=yes)" all line) line)
+ (("# (AUTH_TLS=yes)" all line) line))
;; This file has hard-coded relative file names for tools
despite
;; the zcat configuration above.
(substitute* '("src/exigrep.src")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: exim: Enable authenticators.,
guix-commits <=