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.
master
宋文武 2016-11-19 19:12:33 +08:00
parent cfcef2c2ac
commit ae1e2133b9
No known key found for this signature in database
GPG Key ID: 26525665AE727D37
1 changed files with 6 additions and 4 deletions

View File

@ -1625,10 +1625,12 @@ transfer protocols.")
`(("bison" ,bison)
("groff" ,groff)))
(arguments
`(#:configure-flags (list "--with-table-db" "--localstatedir=/var"
"--with-user-smtpd=smtpd" "--with-user-queue=smtpq"
"--with-group-queue=smtpq"
"--with-path-socket=/var/run")
`(#:configure-flags
(list "--with-table-db" "--localstatedir=/var"
"--with-user-smtpd=smtpd" "--with-user-queue=smtpq"
"--with-group-queue=smtpq"
"--with-path-socket=/var/run"
"--with-path-CAfile=/etc/ssl/certs/ca-certificates.crt")
#:phases
(modify-phases %standard-phases
;; OpenSMTPD provides a single utility smtpctl to control the daemon and