From 793713dc3f227cf3b3a22bf45f6da682fa9165ed Mon Sep 17 00:00:00 2001 From: divoplade Date: Tue, 10 Nov 2020 14:21:17 +0100 Subject: 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 --- gnu/packages/mail.scm | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'gnu') diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 6e3ee4c46a..f85713433e 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -39,6 +39,7 @@ ;;; Copyright © 2020 Alexandru-Sergiu Marton ;;; Copyright © 2020 Oleg Pykhalov ;;; Copyright © 2020 B. Wilson +;;; Copyright © 2020 divoplade ;;; ;;; 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") -- cgit v1.2.3