gnu: opensmtpd: Correct CA certificates file path.
* gnu/packages/mail.scm (opensmtpd)[arguments]: Pass '--with-path-CAfile=/etc/ssl/certs/ca-certificates.crt' to #:configure-flags.
This commit is contained in:
parent
cfcef2c2ac
commit
ae1e2133b9
|
@ -1625,10 +1625,12 @@ transfer protocols.")
|
||||||
`(("bison" ,bison)
|
`(("bison" ,bison)
|
||||||
("groff" ,groff)))
|
("groff" ,groff)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags (list "--with-table-db" "--localstatedir=/var"
|
`(#:configure-flags
|
||||||
"--with-user-smtpd=smtpd" "--with-user-queue=smtpq"
|
(list "--with-table-db" "--localstatedir=/var"
|
||||||
"--with-group-queue=smtpq"
|
"--with-user-smtpd=smtpd" "--with-user-queue=smtpq"
|
||||||
"--with-path-socket=/var/run")
|
"--with-group-queue=smtpq"
|
||||||
|
"--with-path-socket=/var/run"
|
||||||
|
"--with-path-CAfile=/etc/ssl/certs/ca-certificates.crt")
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
;; OpenSMTPD provides a single utility smtpctl to control the daemon and
|
;; OpenSMTPD provides a single utility smtpctl to control the daemon and
|
||||||
|
|
Loading…
Reference in New Issue