mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 20:49:29 -05:00
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>
This commit is contained in:
parent
8e344e3677
commit
793713dc3f
1 changed files with 8 additions and 1 deletions
|
@ -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 @@ (define-public exim
|
|||
(("(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")
|
||||
|
|
Loading…
Reference in a new issue