nixos/tests: resolve postfix cert option breakages
This commit is contained in:
parent
3ad72cc092
commit
cd60ac44ee
@ -28,8 +28,10 @@ in
|
|||||||
enableSubmission = true;
|
enableSubmission = true;
|
||||||
enableSubmissions = true;
|
enableSubmissions = true;
|
||||||
tlsTrustedAuthorities = "${certs.ca.cert}";
|
tlsTrustedAuthorities = "${certs.ca.cert}";
|
||||||
sslCert = "${certs.${domain}.cert}";
|
config.smtpd_tls_chain_files = [
|
||||||
sslKey = "${certs.${domain}.key}";
|
"${certs.${domain}.key}"
|
||||||
|
"${certs.${domain}.cert}"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
services.dovecot2 = {
|
services.dovecot2 = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -12,8 +12,10 @@ import ./make-test-python.nix {
|
|||||||
enable = true;
|
enable = true;
|
||||||
enableSubmission = true;
|
enableSubmission = true;
|
||||||
tlsTrustedAuthorities = "${certs.ca.cert}";
|
tlsTrustedAuthorities = "${certs.ca.cert}";
|
||||||
sslCert = "${certs.${domain}.cert}";
|
config.smtpd_tls_chain_files = [
|
||||||
sslKey = "${certs.${domain}.key}";
|
"${certs.${domain}.key}"
|
||||||
|
"${certs.${domain}.cert}"
|
||||||
|
];
|
||||||
inherit domain;
|
inherit domain;
|
||||||
destination = [ domain ];
|
destination = [ domain ];
|
||||||
localRecipients = [
|
localRecipients = [
|
||||||
|
Loading…
x
Reference in New Issue
Block a user