use opensmtpd-next to prevent a cve
modules/config/mail.scm
21 | 21 | ||
22 | 22 | (define-module (config mail) | |
23 | 23 | #:use-module (data dns) | |
24 | + | #:use-module (gnu packages mail) | |
24 | 25 | #:use-module (gnu services) | |
25 | 26 | #:use-module (gnu services mail) | |
26 | 27 | #:use-module (guix gexp) | |
… | |||
106 | 107 | (define (lepiller-smtp-service interface domain) | |
107 | 108 | (service opensmtpd-service-type | |
108 | 109 | (opensmtpd-configuration | |
110 | + | (package opensmtpd-next) | |
109 | 111 | (config-file (opensmtpd-conf interface domain))))) | |
110 | 112 | ||
111 | 113 | (define (lepiller-dkim-service domain) |